diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52096b56c..d0599a879 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -178,7 +178,9 @@ jobs: - build steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 + with: + submodules: 'recursive' - name: Setup Node uses: actions/setup-node@v2 @@ -203,11 +205,11 @@ jobs: cache-node_modules-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}- - name: Install NPM Dependencies - run: yarn install --prefer-offline --frozen-lockfile --ignore-engines --registry https://registry.npmjs.org --network-timeout 300000 + # NOTE: Do NOT use `--frozen-lockfile` here! The lockfile needs to be updated in order to pull the submodules into the monorepo + run: yarn install --prefer-offline --ignore-engines --registry https://registry.npmjs.org --network-timeout 300000 env: CI: true - # Turbo seems to fail on Windows, so run a custom script directly. - name: Test run: yarn test:smoke diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 89d40f6eb..1e182b752 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -61,32 +61,3 @@ jobs: body: > This PR is auto-generated by a nightly GitHub action. It should automatically be merged if tests pass. - - smoke-sync: - if: github.repository_owner == 'withastro' - runs-on: ubuntu-latest - steps: - - name: Check out code using Git - uses: actions/checkout@v2 - - name: Set Node version to 16 - uses: actions/setup-node@v2 - with: - node-version: 16 - cache: 'yarn' - - name: Install dependencies - run: yarn install --frozen-lockfile --ignore-engines --ignore-scripts - - name: Sync smoke tests - run: node scripts/smoke/sync.js - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Create Pull Request - id: createpr - uses: peter-evans/create-pull-request@v3 - with: - branch: ci/smoke-sync - token: ${{ secrets.GITHUB_TOKEN }} - commit-message: '[ci] update smoke tests (remote)' - title: '[ci] update smoke tests (remote)' - body: > - This PR is auto-generated by a nightly GitHub action. - It should automatically be merged if tests pass. \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..28a12af2d --- /dev/null +++ b/.gitmodules @@ -0,0 +1,8 @@ +[submodule "smoke/docs"] + path = smoke/docs + url = git@github.com:withastro/docs.git + branch = main +[submodule "smoke/astro.build"] + path = smoke/astro.build + url = git@github.com:withastro/astro.build.git + branch = main diff --git a/scripts/smoke/sync.js b/scripts/smoke/sync.js deleted file mode 100644 index 6fba2c271..000000000 --- a/scripts/smoke/sync.js +++ /dev/null @@ -1,97 +0,0 @@ -/** @file Runs all smoke tests and may add extra smoke-test dependencies to `yarn.lock`. */ - -// @ts-check - -import Zip from 'adm-zip'; -import rimraf from 'rimraf'; -import { execa } from 'execa'; -import { polyfill } from '@astropub/webapi'; -import { fileURLToPath } from 'node:url'; -import { promises as fs } from 'node:fs'; - -polyfill(globalThis, { exclude: 'window document' }); - -/* Configuration -/* -------------------------------------------------------------------------- */ - -/** URL directory containing this current script. */ -// const scriptDir = new URL('./', import.meta.url); - -/** URL directory containing the entire project. */ -const rootDir = new URL('../../', import.meta.url); - -/** URL directory containing the example subdirectories. */ -const exampleDir = new URL('examples/', rootDir); -const smokeDir = new URL('smoke/', rootDir); - -/** URL directory containing the Astro package. */ -const astroDir = new URL('packages/astro/', rootDir); - -/** GitHub configuration for the external "docs" Astro project. */ -const docGithubConfig = { org: 'withastro', name: 'docs', branch: 'main' }; - -/** GitHub configuration for the external "astro.build" Astro project. */ -const wwwGithubConfig = { org: 'withastro', name: 'astro.build', branch: 'main' }; - -/* Application -/* -------------------------------------------------------------------------- */ - -/** Runs all smoke tests. */ -async function run() { - await downloadGithubZip(docGithubConfig); - await downloadGithubZip(wwwGithubConfig); - await execa('yarn', [], { cwd: fileURLToPath(rootDir), stdout: 'inherit', stderr: 'inherit' }); -} - -/* Functionality -/* -------------------------------------------------------------------------- */ - -/** Returns the URL to the ZIP of the given GitHub project. */ -const getGithubZipURL = (/** @type {GithubOpts} */ opts) => `https://github.com/${opts.org}/${opts.name}/archive/refs/heads/${opts.branch}.zip`; - -/** Returns the awaited ZIP Buffer from the given GitHub project. */ -const fetchGithubZip = (/** @type {GithubOpts} */ opts) => - fetch(getGithubZipURL(opts)) - .then((response) => response.arrayBuffer()) - .then((arrayBuffer) => Buffer.from(arrayBuffer)); - -/** Downloads a ZIP from the given GitHub project. */ -const downloadGithubZip = async (/** @type {GithubOpts} */ opts) => { - /** Expected directory when the zip is downloaded. */ - const githubDir = new URL(`${opts.name}-${opts.branch}`, smokeDir); - /** Whether the expected directory is already available */ - rimraf.sync(fileURLToPath(githubDir)); - console.log('🤖', 'Downloading', `${opts.org}/${opts.name}#${opts.branch}`); - const buffer = await fetchGithubZip(opts); - console.log('🤖', 'Extracting', `${opts.org}/${opts.name}#${opts.branch}`); - new Zip(buffer).extractAllTo(fileURLToPath(smokeDir), true); - console.log('🤖', 'Preparing', `${opts.org}/${opts.name}#${opts.branch}`); - const astroPackage = await readDirectoryPackage(astroDir); - const githubPackage = await readDirectoryPackage(githubDir); - if ('astro' in Object(githubPackage.dependencies)) { - githubPackage.dependencies['astro'] = astroPackage.version; - } - if ('astro' in Object(githubPackage.devDependencies)) { - githubPackage.devDependencies['astro'] = astroPackage.version; - } - if ('astro' in Object(githubPackage.peerDependencies)) { - githubPackage.peerDependencies['astro'] = astroPackage.version; - } - await writeDirectoryPackage(githubDir, githubPackage); - rimraf.sync(fileURLToPath(new URL(`yarn.lock`, githubDir))); - rimraf.sync(fileURLToPath(new URL(`package-lock.json`, githubDir))); -}; - -/** Returns the parsed package.json of the given directory. */ -const readDirectoryPackage = async (/** @type {URL} */ dir) => JSON.parse(await fs.readFile(new URL('package.json', dir + '/'), 'utf-8')); - -/** Returns upon completion of writing a package.json to the given directory. */ -const writeDirectoryPackage = async (/** @type {URL} */ dir, /** @type {any} */ data) => - await fs.writeFile(new URL('package.json', dir + '/'), JSON.stringify(data, null, ' ') + '\n'); - -/* Execution -/* -------------------------------------------------------------------------- */ - -run(); - -/** @typedef {{ org: string, name: string, branch: string }} GithubOpts */ diff --git a/smoke/astro.build b/smoke/astro.build new file mode 160000 index 000000000..d3d0b54b7 --- /dev/null +++ b/smoke/astro.build @@ -0,0 +1 @@ +Subproject commit d3d0b54b7196aa80db4a810f127ce154082434c5 diff --git a/smoke/astro.build-main/.gitignore b/smoke/astro.build-main/.gitignore deleted file mode 100644 index 15054dbc4..000000000 --- a/smoke/astro.build-main/.gitignore +++ /dev/null @@ -1,130 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* -.pnpm-debug.log* - -# Diagnostic reports (https://nodejs.org/api/report.html) -report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage -*.lcov - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# Snowpack dependency directory (https://snowpack.dev/) -web_modules/ - -# TypeScript cache -*.tsbuildinfo - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Optional stylelint cache -.stylelintcache - -# Microbundle cache -.rpt2_cache/ -.rts2_cache_cjs/ -.rts2_cache_es/ -.rts2_cache_umd/ - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variable files -.env -.env.development.local -.env.test.local -.env.production.local -.env.local - -# parcel-bundler cache (https://parceljs.org/) -.cache -.parcel-cache - -# Next.js build output -.next -out - -# Nuxt.js build / generate output -.nuxt -dist - -# Gatsby files -.cache/ -# Comment in the public line in if your project uses Gatsby and not Next.js -# https://nextjs.org/blog/next-9-1#public-directory-support -# public - -# vuepress build output -.vuepress/dist - -# vuepress v2.x temp and cache directory -.temp -.cache - -# Serverless directories -.serverless/ - -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ - -# TernJS port file -.tern-port - -# Stores VSCode versions used for testing VSCode extensions -.vscode-test - -# yarn v2 -.yarn/cache -.yarn/unplugged -.yarn/build-state.yml -.yarn/install-state.gz -.pnp.* - -# macOS-specific files -.DS_Store diff --git a/smoke/astro.build-main/README.md b/smoke/astro.build-main/README.md deleted file mode 100644 index 0ec71cfef..000000000 --- a/smoke/astro.build-main/README.md +++ /dev/null @@ -1,5 +0,0 @@ -[![Netlify Status](https://api.netlify.com/api/v1/badges/3442658e-265e-48ac-b3bc-e270853129c8/deploy-status)](https://app.netlify.com/sites/astro-build/deploys) - -# [astro.build](https://astro.build) - -The source code for [astro.build](https://astro.build), built with [Astro](https://github.com/withastro/astro). diff --git a/smoke/astro.build-main/astro.config.ts b/smoke/astro.build-main/astro.config.ts deleted file mode 100644 index 88954292a..000000000 --- a/smoke/astro.build-main/astro.config.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { AstroUserConfig } from "astro"; - -const config: AstroUserConfig = { - buildOptions: { - site: "https://astro.build", - sitemap: true, - }, - renderers: [], - markdownOptions: { - render: [ - "@astrojs/markdown-remark", - { - remarkPlugins: [ - "remark-smartypants", - ["remark-autolink-headings", { behavior: "wrap" }], - ], - rehypePlugins: [ - "rehype-slug", - ["rehype-autolink-headings", { behavior: "wrap" }], - ], - syntaxHighlight: 'shiki', - }, - ], - }, - vite: { - ssr: { - noExternal: ['smartypants'], - external: ["svgo"], - }, - }, -}; - -export default config; diff --git a/smoke/astro.build-main/package.json b/smoke/astro.build-main/package.json deleted file mode 100644 index dd6f3c6fa..000000000 --- a/smoke/astro.build-main/package.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "name": "astro.build", - "version": "0.0.1", - "private": true, - "scripts": { - "start": "astro dev --experimental-static-build", - "dev": "astro dev --experimental-static-build", - "debug": "DEBUG=* astro dev --experimental-static-build", - "build": "astro build --experimental-static-build", - "preview": "astro preview", - "update-contributors": "node ./update-contributors.mjs" - }, - "devDependencies": { - "@tailwindcss/aspect-ratio": "^0.4.0", - "@tailwindcss/typography": "^0.5.2", - "astro": "0.23.3", - "astro-icon": "^0.6.0", - "autoprefixer": "^10.4.2", - "postcss": "^8.4.7", - "tailwindcss": "^3.0.23" - }, - "volta": { - "node": "14.18.3" - }, - "dependencies": { - "date-fns": "^2.28.0", - "quicklink": "^2.2.0", - "rehype-autolink-headings": "^6.1.1", - "remark-autolink-headings": "^7.0.1", - "remark-smartypants": "^2.0.0", - "smartypants": "^0.1.6" - } -} diff --git a/smoke/astro.build-main/pnpm-lock.yaml b/smoke/astro.build-main/pnpm-lock.yaml deleted file mode 100644 index 158a9a5c5..000000000 --- a/smoke/astro.build-main/pnpm-lock.yaml +++ /dev/null @@ -1,4109 +0,0 @@ -lockfileVersion: 5.3 - -specifiers: - '@tailwindcss/aspect-ratio': ^0.4.0 - '@tailwindcss/typography': ^0.5.2 - astro: ^0.23.2 - astro-icon: ^0.6.0 - autoprefixer: ^10.4.2 - date-fns: ^2.28.0 - postcss: ^8.4.7 - quicklink: ^2.2.0 - rehype-autolink-headings: ^6.1.1 - remark-autolink-headings: ^7.0.1 - remark-smartypants: ^2.0.0 - smartypants: ^0.1.6 - tailwindcss: ^3.0.23 - -dependencies: - date-fns: 2.28.0 - quicklink: 2.2.0 - rehype-autolink-headings: 6.1.1 - remark-autolink-headings: 7.0.1 - remark-smartypants: 2.0.0 - smartypants: 0.1.6 - -devDependencies: - '@tailwindcss/aspect-ratio': 0.4.0_tailwindcss@3.0.23 - '@tailwindcss/typography': 0.5.2_tailwindcss@3.0.23 - astro: 0.23.2 - astro-icon: 0.6.0 - autoprefixer: 10.4.2_postcss@8.4.7 - postcss: 8.4.7 - tailwindcss: 3.0.23_autoprefixer@10.4.2 - -packages: - - /@ampproject/remapping/2.1.1: - resolution: {integrity: sha512-Aolwjd7HSC2PyY0fDj/wA/EimQT4HfEnFYNp5s9CQlrdhyvWTtvZ5YzrUPu6R6/1jKiUlxu8bUhkdSnKHNAHMA==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/trace-mapping': 0.3.4 - dev: true - - /@astrojs/compiler/0.11.4: - resolution: {integrity: sha512-T598FTCgBFjjPLPClvn+lc2SFGAJkjaF+lbxvHNjzmUpOYdz7YyH1apd3XAZvDp5r5WBBhicB6693GhQRpf3oQ==} - dependencies: - typescript: 4.5.5 - dev: true - - /@astrojs/language-server/0.8.8: - resolution: {integrity: sha512-XgBSVpqXEqGTdst+CnM03/nXYw9PYNAfTl27BaJuUhEtqA/iDlyM7wLnQMsJzwWVmoLqp0bCumHkb62NtfeDNA==} - hasBin: true - dependencies: - lodash: 4.17.21 - source-map: 0.7.3 - ts-morph: 12.2.0 - typescript: 4.5.5 - vscode-css-languageservice: 5.1.13 - vscode-emmet-helper: 2.1.2 - vscode-html-languageservice: 3.2.0 - vscode-languageserver: 6.1.1 - vscode-languageserver-protocol: 3.16.0 - vscode-languageserver-textdocument: 1.0.4 - vscode-languageserver-types: 3.16.0 - vscode-uri: 3.0.3 - dev: true - - /@astrojs/markdown-remark/0.6.2: - resolution: {integrity: sha512-hC2WNACapgW5P/18NWUndFYFa4CNtIGYU3xuvLiDgyZNp8nCyt7CJkc1lBC+xh2JFaV/sIQEyB24KyCICMiJyw==} - dependencies: - '@astrojs/prism': 0.4.0 - assert: 2.0.0 - github-slugger: 1.4.0 - gray-matter: 4.0.3 - mdast-util-mdx-expression: 1.2.0 - mdast-util-mdx-jsx: 1.2.0 - micromark-extension-mdx-expression: 1.0.3 - micromark-extension-mdx-jsx: 1.0.3 - prismjs: 1.26.0 - rehype-raw: 6.1.1 - rehype-slug: 5.0.1 - rehype-stringify: 9.0.3 - remark-gfm: 3.0.1 - remark-parse: 10.0.1 - remark-rehype: 10.1.0 - remark-smartypants: 2.0.0 - shiki: 0.10.1 - unified: 10.1.1 - unist-util-map: 3.0.0 - unist-util-visit: 4.1.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@astrojs/prism/0.4.0: - resolution: {integrity: sha512-dbB9Acm9Z/GDqhxwPv7W/DlZAScWNZGzFz8klTqDo9kaWD6O3qsZpXn641GuGeXdNWkqTmkinu37ZJHSxaDB7A==} - engines: {node: ^14.15.0 || >=16.0.0} - dev: true - - /@astrojs/renderer-preact/0.5.0_@babel+core@7.17.2: - resolution: {integrity: sha512-83De5FdGzCt7lqsHWx1Oc+pLgSM6G1xkdlZyV2pU0pyuV/NaTek9qaGNAmh96G28lufeyWKw1m1dVx8UGCSBnw==} - engines: {node: ^14.15.0 || >=16.0.0} - dependencies: - '@babel/plugin-transform-react-jsx': 7.16.7_@babel+core@7.17.2 - preact: 10.6.6 - preact-render-to-string: 5.1.19_preact@10.6.6 - transitivePeerDependencies: - - '@babel/core' - dev: true - - /@astrojs/renderer-react/0.5.0_@babel+core@7.17.2: - resolution: {integrity: sha512-9Ij1TjJbRuPTK7mwOylDdKW6rDUk1RaBFD6rcZkrHHrA0M6b6a6HQzjXCFjJMeZIDg10N1aqtIJWM6Fptwhz1g==} - engines: {node: ^14.15.0 || >=16.0.0} - dependencies: - '@babel/plugin-transform-react-jsx': 7.16.7_@babel+core@7.17.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - transitivePeerDependencies: - - '@babel/core' - dev: true - - /@astrojs/renderer-svelte/0.4.0_d1d7cc61da95379b61d16c41373818dd: - resolution: {integrity: sha512-YP6e6qPMEx5Pr6tCiD+GTyT7Bl+aA1biTX9Yg8Sd7bjXHOiqfMH28d8Bo0CXHiqUXli/CTp6pRtR0WN44a4gUg==} - engines: {node: ^14.15.0 || >=16.0.0} - dependencies: - '@sveltejs/vite-plugin-svelte': 1.0.0-next.38_svelte@3.46.4+vite@2.8.5 - postcss-load-config: 3.1.3 - svelte: 3.46.4 - svelte-preprocess: 4.10.3_cf58026e99187ea91aea9f9903474152 - transitivePeerDependencies: - - '@babel/core' - - coffeescript - - diff-match-patch - - less - - node-sass - - postcss - - pug - - sass - - stylus - - sugarss - - supports-color - - ts-node - - typescript - - vite - dev: true - - /@astrojs/renderer-vue/0.4.0_vite@2.8.5: - resolution: {integrity: sha512-jeD+KJZcIGIyZDMkA2uKkA+vRGC/+bRV4o9+q+yFJA+npLHuGt9EdSTAqvEJyBMvZ+O2JG2wgAl8S7nFy1S7nw==} - engines: {node: ^14.15.0 || >=16.0.0} - dependencies: - '@vitejs/plugin-vue': 2.2.4_vite@2.8.5+vue@3.2.31 - vue: 3.2.31 - transitivePeerDependencies: - - vite - dev: true - - /@astropub/webapi/0.10.14: - resolution: {integrity: sha512-/o0XdOZLSD3PcZEMm/gRGx5XTFmMzJOCgbBYw//cmHWwpLn6H+9xWBe68r9ToUQ1Ns4GVkfwZlyKVMBNTTXn/g==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - dev: true - - /@babel/code-frame/7.16.7: - resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.16.10 - dev: true - - /@babel/compat-data/7.17.0: - resolution: {integrity: sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/core/7.17.2: - resolution: {integrity: sha512-R3VH5G42VSDolRHyUO4V2cfag8WHcZyxdq5Z/m8Xyb92lW/Erm/6kM+XtRFGf3Mulre3mveni2NHfEUws8wSvw==} - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.1.1 - '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.0 - '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.2 - '@babel/helper-module-transforms': 7.16.7 - '@babel/helpers': 7.17.2 - '@babel/parser': 7.17.0 - '@babel/template': 7.16.7 - '@babel/traverse': 7.17.0 - '@babel/types': 7.17.0 - convert-source-map: 1.8.0 - debug: 4.3.3 - gensync: 1.0.0-beta.2 - json5: 2.2.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/generator/7.17.0: - resolution: {integrity: sha512-I3Omiv6FGOC29dtlZhkfXO6pgkmukJSlT26QjVvS1DGZe/NzSVCPG41X0tS21oZkJYlovfj9qDWgKP+Cn4bXxw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.17.0 - jsesc: 2.5.2 - source-map: 0.5.7 - dev: true - - /@babel/helper-annotate-as-pure/7.16.7: - resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.17.0 - dev: true - - /@babel/helper-compilation-targets/7.16.7_@babel+core@7.17.2: - resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.17.0 - '@babel/core': 7.17.2 - '@babel/helper-validator-option': 7.16.7 - browserslist: 4.19.1 - semver: 6.3.0 - dev: true - - /@babel/helper-environment-visitor/7.16.7: - resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.17.0 - dev: true - - /@babel/helper-function-name/7.16.7: - resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-get-function-arity': 7.16.7 - '@babel/template': 7.16.7 - '@babel/types': 7.17.0 - dev: true - - /@babel/helper-get-function-arity/7.16.7: - resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.17.0 - dev: true - - /@babel/helper-hoist-variables/7.16.7: - resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.17.0 - dev: true - - /@babel/helper-module-imports/7.16.7: - resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.17.0 - dev: true - - /@babel/helper-module-transforms/7.16.7: - resolution: {integrity: sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.16.7 - '@babel/helper-module-imports': 7.16.7 - '@babel/helper-simple-access': 7.16.7 - '@babel/helper-split-export-declaration': 7.16.7 - '@babel/helper-validator-identifier': 7.16.7 - '@babel/template': 7.16.7 - '@babel/traverse': 7.17.0 - '@babel/types': 7.17.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-plugin-utils/7.16.7: - resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-simple-access/7.16.7: - resolution: {integrity: sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.17.0 - dev: true - - /@babel/helper-split-export-declaration/7.16.7: - resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.17.0 - dev: true - - /@babel/helper-validator-identifier/7.16.7: - resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-validator-option/7.16.7: - resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helpers/7.17.2: - resolution: {integrity: sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.16.7 - '@babel/traverse': 7.17.0 - '@babel/types': 7.17.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/highlight/7.16.10: - resolution: {integrity: sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.16.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - dev: true - - /@babel/parser/7.17.0: - resolution: {integrity: sha512-VKXSCQx5D8S04ej+Dqsr1CzYvvWgf20jIw2D+YhQCrIlr2UZGaDds23Y0xg75/skOxpLCRpUZvk/1EAVkGoDOw==} - engines: {node: '>=6.0.0'} - hasBin: true - dev: true - - /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.2: - resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.2 - '@babel/helper-plugin-utils': 7.16.7 - dev: true - - /@babel/plugin-transform-react-jsx/7.16.7_@babel+core@7.17.2: - resolution: {integrity: sha512-8D16ye66fxiE8m890w0BpPpngG9o9OVBBy0gH2E+2AR7qMR2ZpTYJEqLxAsoroenMId0p/wMW+Blc0meDgu0Ag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.2 - '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.2 - '@babel/types': 7.17.0 - dev: true - - /@babel/template/7.16.7: - resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.16.7 - '@babel/parser': 7.17.0 - '@babel/types': 7.17.0 - dev: true - - /@babel/traverse/7.17.0: - resolution: {integrity: sha512-fpFIXvqD6kC7c7PUNnZ0Z8cQXlarCLtCUpt2S1Dx7PjoRtCFffvOkHHSom+m5HIxMZn5bIBVb71lhabcmjEsqg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.0 - '@babel/helper-environment-visitor': 7.16.7 - '@babel/helper-function-name': 7.16.7 - '@babel/helper-hoist-variables': 7.16.7 - '@babel/helper-split-export-declaration': 7.16.7 - '@babel/parser': 7.17.0 - '@babel/types': 7.17.0 - debug: 4.3.3 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/types/7.17.0: - resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.16.7 - to-fast-properties: 2.0.0 - dev: true - - /@emmetio/abbreviation/2.2.3: - resolution: {integrity: sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA==} - dependencies: - '@emmetio/scanner': 1.0.0 - dev: true - - /@emmetio/css-abbreviation/2.1.4: - resolution: {integrity: sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw==} - dependencies: - '@emmetio/scanner': 1.0.0 - dev: true - - /@emmetio/scanner/1.0.0: - resolution: {integrity: sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA==} - dev: true - - /@jridgewell/resolve-uri/3.0.5: - resolution: {integrity: sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==} - engines: {node: '>=6.0.0'} - dev: true - - /@jridgewell/sourcemap-codec/1.4.11: - resolution: {integrity: sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==} - dev: true - - /@jridgewell/trace-mapping/0.3.4: - resolution: {integrity: sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==} - dependencies: - '@jridgewell/resolve-uri': 3.0.5 - '@jridgewell/sourcemap-codec': 1.4.11 - dev: true - - /@ljharb/has-package-exports-patterns/0.0.1: - resolution: {integrity: sha512-J4HxcjHI8EzVwXj2HKfZrwnWv4wmOhGxSHyxDQLhiL4ibwRoIkYBqsacZUXFUWQzJtW6QC+FKSNy8HqKjkEqaQ==} - dev: true - - /@nodelib/fs.scandir/2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - dev: true - - /@nodelib/fs.stat/2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - dev: true - - /@nodelib/fs.walk/1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.13.0 - dev: true - - /@proload/core/0.2.2: - resolution: {integrity: sha512-HYQEblYXIpW77kvGyW4penEl9D9e9MouPhTqVaDz9+QVFliYjsq18inTfnfTa81s3oraPVtTk60tqCWOf2fKGQ==} - dependencies: - deepmerge: 4.2.2 - escalade: 3.1.1 - dev: true - - /@proload/plugin-tsm/0.1.1_@proload+core@0.2.2: - resolution: {integrity: sha512-qfGegg6I3YBCZDjYR9xb41MTc2EfL0sQQmw49Z/yi9OstIpUa/67MBy4AuNhoyG9FuOXia9gPoeBk5pGnBOGtA==} - peerDependencies: - '@proload/core': ^0.2.1 - dependencies: - '@proload/core': 0.2.2 - tsm: 2.2.1 - dev: true - - /@rollup/pluginutils/4.1.2: - resolution: {integrity: sha512-ROn4qvkxP9SyPeHaf7uQC/GPFY6L/OWy9+bd9AwcjOAWQwxRscoEyAUD8qCY5o5iL4jqQwoLk2kaTKJPb/HwzQ==} - engines: {node: '>= 8.0.0'} - dependencies: - estree-walker: 2.0.2 - picomatch: 2.3.1 - dev: true - - /@sveltejs/vite-plugin-svelte/1.0.0-next.38_svelte@3.46.4+vite@2.8.5: - resolution: {integrity: sha512-epYAVZvfpiDZwB4Whe5AALk3zF5odKFf8Vx4q2tth+QuXmr0GLZ13ri02zINS6pHRCx+GjtOqCEEwMaPAfPcgQ==} - engines: {node: ^14.13.1 || >= 16} - peerDependencies: - diff-match-patch: ^1.0.5 - svelte: ^3.44.0 - vite: ^2.7.0 - peerDependenciesMeta: - diff-match-patch: - optional: true - dependencies: - '@rollup/pluginutils': 4.1.2 - debug: 4.3.3 - kleur: 4.1.4 - magic-string: 0.25.7 - svelte: 3.46.4 - svelte-hmr: 0.14.9_svelte@3.46.4 - vite: 2.8.5 - transitivePeerDependencies: - - supports-color - dev: true - - /@tailwindcss/aspect-ratio/0.4.0_tailwindcss@3.0.23: - resolution: {integrity: sha512-WJu0I4PpqNPuutpaA9zDUq2JXR+lorZ7PbLcKNLmb6GL9/HLfC7w3CRsMhJF4BbYd/lkY6CfXOvkYpuGnZfkpQ==} - peerDependencies: - tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1' - dependencies: - tailwindcss: 3.0.23_autoprefixer@10.4.2 - dev: true - - /@tailwindcss/typography/0.5.2_tailwindcss@3.0.23: - resolution: {integrity: sha512-coq8DBABRPFcVhVIk6IbKyyHUt7YTEC/C992tatFB+yEx5WGBQrCgsSFjxHUr8AWXphWckadVJbominEduYBqw==} - peerDependencies: - tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1 || insiders' - dependencies: - lodash.castarray: 4.4.0 - lodash.isplainobject: 4.0.6 - lodash.merge: 4.6.2 - tailwindcss: 3.0.23_autoprefixer@10.4.2 - dev: true - - /@trysound/sax/0.2.0: - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} - dev: true - - /@ts-morph/common/0.11.1: - resolution: {integrity: sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==} - dependencies: - fast-glob: 3.2.11 - minimatch: 3.1.1 - mkdirp: 1.0.4 - path-browserify: 1.0.1 - dev: true - - /@types/acorn/4.0.6: - resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} - dependencies: - '@types/estree': 0.0.51 - dev: true - - /@types/babel__core/7.1.18: - resolution: {integrity: sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==} - dependencies: - '@babel/parser': 7.17.0 - '@babel/types': 7.17.0 - '@types/babel__generator': 7.6.4 - '@types/babel__template': 7.4.1 - '@types/babel__traverse': 7.14.2 - dev: true - - /@types/babel__generator/7.6.4: - resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} - dependencies: - '@babel/types': 7.17.0 - dev: true - - /@types/babel__template/7.4.1: - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} - dependencies: - '@babel/parser': 7.17.0 - '@babel/types': 7.17.0 - dev: true - - /@types/babel__traverse/7.14.2: - resolution: {integrity: sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==} - dependencies: - '@babel/types': 7.17.0 - dev: true - - /@types/debug/4.1.7: - resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==} - dependencies: - '@types/ms': 0.7.31 - dev: true - - /@types/estree-jsx/0.0.1: - resolution: {integrity: sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A==} - dependencies: - '@types/estree': 0.0.51 - dev: true - - /@types/estree/0.0.50: - resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==} - dev: true - - /@types/estree/0.0.51: - resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - dev: true - - /@types/hast/2.3.4: - resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==} - dependencies: - '@types/unist': 2.0.6 - - /@types/json5/0.0.30: - resolution: {integrity: sha512-sqm9g7mHlPY/43fcSNrCYfOeX9zkTTK+euO5E6+CVijSMm5tTjkVdwdqRkY3ljjIAf8679vps5jKUoJBCLsMDA==} - dev: true - - /@types/mdast/3.0.10: - resolution: {integrity: sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==} - dependencies: - '@types/unist': 2.0.6 - - /@types/mdurl/1.0.2: - resolution: {integrity: sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==} - dev: true - - /@types/ms/0.7.31: - resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==} - dev: true - - /@types/nlcst/1.0.0: - resolution: {integrity: sha512-3TGCfOcy8R8mMQ4CNSNOe3PG66HttvjcLzCoOpvXvDtfWOTi+uT/rxeOKm/qEwbM4SNe1O/PjdiBK2YcTjU4OQ==} - dependencies: - '@types/unist': 2.0.6 - - /@types/node/17.0.17: - resolution: {integrity: sha512-e8PUNQy1HgJGV3iU/Bp2+D/DXh3PYeyli8LgIwsQcs1Ar1LoaWHSIT6Rw+H2rNJmiq6SNWiDytfx8+gYj7wDHw==} - dev: true - - /@types/parse-json/4.0.0: - resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} - dev: true - - /@types/parse5/6.0.3: - resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} - dev: true - - /@types/pug/2.0.6: - resolution: {integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==} - dev: true - - /@types/resolve/1.20.1: - resolution: {integrity: sha512-Ku5+GPFa12S3W26Uwtw+xyrtIpaZsGYHH6zxNbZlstmlvMYSZRzOwzwsXbxlVUbHyUucctSyuFtu6bNxwYomIw==} - dev: true - - /@types/sass/1.43.1: - resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} - dependencies: - '@types/node': 17.0.17 - dev: true - - /@types/unist/2.0.6: - resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==} - - /@types/yargs-parser/20.2.1: - resolution: {integrity: sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==} - dev: true - - /@vitejs/plugin-vue/2.2.4_vite@2.8.5+vue@3.2.31: - resolution: {integrity: sha512-ev9AOlp0ljCaDkFZF3JwC/pD2N4Hh+r5srl5JHM6BKg5+99jiiK0rE/XaRs3pVm1wzyKkjUy/StBSoXX5fFzcw==} - engines: {node: '>=12.0.0'} - peerDependencies: - vite: ^2.5.10 - vue: ^3.2.25 - dependencies: - vite: 2.8.5 - vue: 3.2.31 - dev: true - - /@vue/compiler-core/3.2.31: - resolution: {integrity: sha512-aKno00qoA4o+V/kR6i/pE+aP+esng5siNAVQ422TkBNM6qA4veXiZbSe8OTXHXquEi/f6Akc+nLfB4JGfe4/WQ==} - dependencies: - '@babel/parser': 7.17.0 - '@vue/shared': 3.2.31 - estree-walker: 2.0.2 - source-map: 0.6.1 - dev: true - - /@vue/compiler-dom/3.2.31: - resolution: {integrity: sha512-60zIlFfzIDf3u91cqfqy9KhCKIJgPeqxgveH2L+87RcGU/alT6BRrk5JtUso0OibH3O7NXuNOQ0cDc9beT0wrg==} - dependencies: - '@vue/compiler-core': 3.2.31 - '@vue/shared': 3.2.31 - dev: true - - /@vue/compiler-sfc/3.2.31: - resolution: {integrity: sha512-748adc9msSPGzXgibHiO6T7RWgfnDcVQD+VVwYgSsyyY8Ans64tALHZANrKtOzvkwznV/F4H7OAod/jIlp/dkQ==} - dependencies: - '@babel/parser': 7.17.0 - '@vue/compiler-core': 3.2.31 - '@vue/compiler-dom': 3.2.31 - '@vue/compiler-ssr': 3.2.31 - '@vue/reactivity-transform': 3.2.31 - '@vue/shared': 3.2.31 - estree-walker: 2.0.2 - magic-string: 0.25.7 - postcss: 8.4.7 - source-map: 0.6.1 - dev: true - - /@vue/compiler-ssr/3.2.31: - resolution: {integrity: sha512-mjN0rqig+A8TVDnsGPYJM5dpbjlXeHUm2oZHZwGyMYiGT/F4fhJf/cXy8QpjnLQK4Y9Et4GWzHn9PS8AHUnSkw==} - dependencies: - '@vue/compiler-dom': 3.2.31 - '@vue/shared': 3.2.31 - dev: true - - /@vue/reactivity-transform/3.2.31: - resolution: {integrity: sha512-uS4l4z/W7wXdI+Va5pgVxBJ345wyGFKvpPYtdSgvfJfX/x2Ymm6ophQlXXB6acqGHtXuBqNyyO3zVp9b1r0MOA==} - dependencies: - '@babel/parser': 7.17.0 - '@vue/compiler-core': 3.2.31 - '@vue/shared': 3.2.31 - estree-walker: 2.0.2 - magic-string: 0.25.7 - dev: true - - /@vue/reactivity/3.2.31: - resolution: {integrity: sha512-HVr0l211gbhpEKYr2hYe7hRsV91uIVGFYNHj73njbARVGHQvIojkImKMaZNDdoDZOIkMsBc9a1sMqR+WZwfSCw==} - dependencies: - '@vue/shared': 3.2.31 - dev: true - - /@vue/runtime-core/3.2.31: - resolution: {integrity: sha512-Kcog5XmSY7VHFEMuk4+Gap8gUssYMZ2+w+cmGI6OpZWYOEIcbE0TPzzPHi+8XTzAgx1w/ZxDFcXhZeXN5eKWsA==} - dependencies: - '@vue/reactivity': 3.2.31 - '@vue/shared': 3.2.31 - dev: true - - /@vue/runtime-dom/3.2.31: - resolution: {integrity: sha512-N+o0sICVLScUjfLG7u9u5XCjvmsexAiPt17GNnaWHJUfsKed5e85/A3SWgKxzlxx2SW/Hw7RQxzxbXez9PtY3g==} - dependencies: - '@vue/runtime-core': 3.2.31 - '@vue/shared': 3.2.31 - csstype: 2.6.19 - dev: true - - /@vue/server-renderer/3.2.31_vue@3.2.31: - resolution: {integrity: sha512-8CN3Zj2HyR2LQQBHZ61HexF5NReqngLT3oahyiVRfSSvak+oAvVmu8iNLSu6XR77Ili2AOpnAt1y8ywjjqtmkg==} - peerDependencies: - vue: 3.2.31 - dependencies: - '@vue/compiler-ssr': 3.2.31 - '@vue/shared': 3.2.31 - vue: 3.2.31 - dev: true - - /@vue/shared/3.2.31: - resolution: {integrity: sha512-ymN2pj6zEjiKJZbrf98UM2pfDd6F2H7ksKw7NDt/ZZ1fh5Ei39X5tABugtT03ZRlWd9imccoK0hE8hpjpU7irQ==} - dev: true - - /@web/parse5-utils/1.3.0: - resolution: {integrity: sha512-Pgkx3ECc8EgXSlS5EyrgzSOoUbM6P8OKS471HLAyvOBcP1NCBn0to4RN/OaKASGq8qa3j+lPX9H14uA5AHEnQg==} - engines: {node: '>=10.0.0'} - dependencies: - '@types/parse5': 6.0.3 - parse5: 6.0.1 - dev: true - - /acorn-node/1.8.2: - resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} - dependencies: - acorn: 7.4.1 - acorn-walk: 7.2.0 - xtend: 4.0.2 - dev: true - - /acorn-walk/7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: '>=0.4.0'} - dev: true - - /acorn/7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - - /ansi-regex/6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} - dev: true - - /ansi-styles/3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - dependencies: - color-convert: 1.9.3 - dev: true - - /ansi-styles/4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} - dependencies: - color-convert: 2.0.1 - dev: true - - /anymatch/3.1.2: - resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} - engines: {node: '>= 8'} - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 - dev: true - - /arg/5.0.1: - resolution: {integrity: sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==} - dev: true - - /argparse/1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} - dependencies: - sprintf-js: 1.0.3 - dev: true - - /array-iterate/1.1.4: - resolution: {integrity: sha512-sNRaPGh9nnmdC8Zf+pT3UqP8rnWj5Hf9wiFGsX3wUQ2yVSIhO2ShFwCoceIPpB41QF6i2OEmrHmCo36xronCVA==} - - /assert/2.0.0: - resolution: {integrity: sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==} - dependencies: - es6-object-assign: 1.1.0 - is-nan: 1.3.2 - object-is: 1.1.5 - util: 0.12.4 - dev: true - - /astro-icon/0.6.0: - resolution: {integrity: sha512-1Ch1S+9d73DVl2erbyGRAXa8KYqXIRzJ681/nLgkSrdrBBkb9RgUV1Wrj0Tese2ukyfxFHFAYo/GdQHrWdcsDg==} - dependencies: - node-fetch: 3.2.0 - resolve-pkg: 2.0.0 - svgo: 2.8.0 - dev: true - - /astro/0.23.2: - resolution: {integrity: sha512-NoVZxRXDW/PLSsEQLdsiBub+AeVq8EAzc2Lg+XdHegvoeQnGsYrvrzLIxbztRHZIeOuY+lbgf8MlwgVnOrQY4g==} - engines: {node: ^14.15.0 || >=16.0.0, npm: '>=6.14.0'} - hasBin: true - dependencies: - '@astrojs/compiler': 0.11.4 - '@astrojs/language-server': 0.8.8 - '@astrojs/markdown-remark': 0.6.2 - '@astrojs/prism': 0.4.0 - '@astrojs/renderer-preact': 0.5.0_@babel+core@7.17.2 - '@astrojs/renderer-react': 0.5.0_@babel+core@7.17.2 - '@astrojs/renderer-svelte': 0.4.0_d1d7cc61da95379b61d16c41373818dd - '@astrojs/renderer-vue': 0.4.0_vite@2.8.5 - '@astropub/webapi': 0.10.14 - '@babel/core': 7.17.2 - '@babel/traverse': 7.17.0 - '@proload/core': 0.2.2 - '@proload/plugin-tsm': 0.1.1_@proload+core@0.2.2 - '@types/babel__core': 7.1.18 - '@types/debug': 4.1.7 - '@types/yargs-parser': 20.2.1 - '@web/parse5-utils': 1.3.0 - ci-info: 3.3.0 - common-ancestor-path: 1.0.1 - eol: 0.9.1 - es-module-lexer: 0.9.3 - esbuild: 0.13.7 - estree-walker: 3.0.1 - fast-glob: 3.2.11 - fast-xml-parser: 4.0.2 - html-entities: 2.3.2 - htmlparser2: 7.2.0 - kleur: 4.1.4 - magic-string: 0.25.7 - micromorph: 0.0.2 - mime: 3.0.0 - parse5: 6.0.1 - path-to-regexp: 6.2.0 - postcss: 8.4.7 - prismjs: 1.26.0 - rehype-slug: 5.0.1 - resolve: 1.22.0 - rollup: 2.67.2 - semver: 7.3.5 - send: 0.17.2 - serialize-javascript: 6.0.0 - shiki: 0.10.1 - shorthash: 0.0.2 - slash: 4.0.0 - sourcemap-codec: 1.4.8 - srcset-parse: 1.1.0 - string-width: 5.1.0 - strip-ansi: 7.0.1 - supports-esm: 1.0.0 - tsconfig-resolver: 3.0.1 - vite: 2.8.5 - yargs-parser: 21.0.0 - zod: 3.11.6 - transitivePeerDependencies: - - coffeescript - - diff-match-patch - - less - - node-sass - - pug - - sass - - stylus - - sugarss - - supports-color - - ts-node - - typescript - dev: true - - /autoprefixer/10.4.2_postcss@8.4.7: - resolution: {integrity: sha512-9fOPpHKuDW1w/0EKfRmVnxTDt8166MAnLI3mgZ1JCnhNtYWxcJ6Ud5CO/AVOZi/AvFa8DY9RTy3h3+tFBlrrdQ==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 - dependencies: - browserslist: 4.19.1 - caniuse-lite: 1.0.30001312 - fraction.js: 4.1.3 - normalize-range: 0.1.2 - picocolors: 1.0.0 - postcss: 8.4.7 - postcss-value-parser: 4.2.0 - dev: true - - /available-typed-arrays/1.0.5: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} - engines: {node: '>= 0.4'} - dev: true - - /bail/2.0.2: - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} - - /balanced-match/1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - dev: true - - /binary-extensions/2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} - dev: true - - /boolbase/1.0.0: - resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=} - dev: true - - /brace-expansion/1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 - dev: true - - /braces/3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} - dependencies: - fill-range: 7.0.1 - dev: true - - /browserslist/4.19.1: - resolution: {integrity: sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - dependencies: - caniuse-lite: 1.0.30001312 - electron-to-chromium: 1.4.68 - escalade: 3.1.1 - node-releases: 2.0.2 - picocolors: 1.0.0 - dev: true - - /buffer-crc32/0.2.13: - resolution: {integrity: sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=} - dev: true - - /call-bind/1.0.2: - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} - dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.1.1 - dev: true - - /callsites/3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - dev: true - - /camelcase-css/2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} - dev: true - - /caniuse-lite/1.0.30001312: - resolution: {integrity: sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==} - dev: true - - /ccount/2.0.1: - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} - dev: true - - /chalk/2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 - dev: true - - /chalk/4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - dev: true - - /character-entities-html4/2.1.0: - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} - dev: true - - /character-entities-legacy/3.0.0: - resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} - dev: true - - /character-entities/2.0.1: - resolution: {integrity: sha512-OzmutCf2Kmc+6DrFrrPS8/tDh2+DpnrfzdICHWhcVC9eOd0N1PXmQEE1a8iM4IziIAG+8tmTq3K+oo0ubH6RRQ==} - dev: true - - /character-reference-invalid/2.0.1: - resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} - dev: true - - /chokidar/3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} - dependencies: - anymatch: 3.1.2 - braces: 3.0.2 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /ci-info/3.3.0: - resolution: {integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==} - dev: true - - /code-block-writer/10.1.1: - resolution: {integrity: sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==} - dev: true - - /color-convert/1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - dependencies: - color-name: 1.1.3 - dev: true - - /color-convert/2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} - dependencies: - color-name: 1.1.4 - dev: true - - /color-name/1.1.3: - resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} - dev: true - - /color-name/1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - dev: true - - /comma-separated-tokens/2.0.2: - resolution: {integrity: sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==} - dev: true - - /commander/7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} - dev: true - - /common-ancestor-path/1.0.1: - resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} - dev: true - - /concat-map/0.0.1: - resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} - dev: true - - /convert-source-map/1.8.0: - resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} - dependencies: - safe-buffer: 5.1.2 - dev: true - - /cosmiconfig/7.0.1: - resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} - engines: {node: '>=10'} - dependencies: - '@types/parse-json': 4.0.0 - import-fresh: 3.3.0 - parse-json: 5.2.0 - path-type: 4.0.0 - yaml: 1.10.2 - dev: true - - /css-select/4.2.1: - resolution: {integrity: sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==} - dependencies: - boolbase: 1.0.0 - css-what: 5.1.0 - domhandler: 4.3.0 - domutils: 2.8.0 - nth-check: 2.0.1 - dev: true - - /css-tree/1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} - dependencies: - mdn-data: 2.0.14 - source-map: 0.6.1 - dev: true - - /css-what/5.1.0: - resolution: {integrity: sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==} - engines: {node: '>= 6'} - dev: true - - /cssesc/3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - dev: true - - /csso/4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} - dependencies: - css-tree: 1.1.3 - dev: true - - /csstype/2.6.19: - resolution: {integrity: sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==} - dev: true - - /data-uri-to-buffer/4.0.0: - resolution: {integrity: sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==} - engines: {node: '>= 12'} - dev: true - - /date-fns/2.28.0: - resolution: {integrity: sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==} - engines: {node: '>=0.11'} - dev: false - - /debug/2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - dependencies: - ms: 2.0.0 - dev: true - - /debug/4.3.3: - resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - dev: true - - /decode-named-character-reference/1.0.1: - resolution: {integrity: sha512-YV/0HQHreRwKb7uBopyIkLG17jG6Sv2qUchk9qSoVJ2f+flwRsPNBO0hAnjt6mTNYUT+vw9Gy2ihXg4sUWPi2w==} - dependencies: - character-entities: 2.0.1 - dev: true - - /deepmerge/4.2.2: - resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} - engines: {node: '>=0.10.0'} - dev: true - - /define-properties/1.1.3: - resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==} - engines: {node: '>= 0.4'} - dependencies: - object-keys: 1.1.1 - dev: true - - /defined/1.0.0: - resolution: {integrity: sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=} - dev: true - - /depd/1.1.2: - resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=} - engines: {node: '>= 0.6'} - dev: true - - /dequal/2.0.2: - resolution: {integrity: sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==} - engines: {node: '>=6'} - dev: true - - /destroy/1.0.4: - resolution: {integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=} - dev: true - - /detect-indent/6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} - dev: true - - /detective/5.2.0: - resolution: {integrity: sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==} - engines: {node: '>=0.8.0'} - hasBin: true - dependencies: - acorn-node: 1.8.2 - defined: 1.0.0 - minimist: 1.2.5 - dev: true - - /didyoumean/1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} - dev: true - - /diff/5.0.0: - resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==} - engines: {node: '>=0.3.1'} - dev: true - - /dlv/1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} - dev: true - - /dom-serializer/1.3.2: - resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==} - dependencies: - domelementtype: 2.2.0 - domhandler: 4.3.0 - entities: 2.2.0 - dev: true - - /domelementtype/2.2.0: - resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==} - dev: true - - /domhandler/4.3.0: - resolution: {integrity: sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==} - engines: {node: '>= 4'} - dependencies: - domelementtype: 2.2.0 - dev: true - - /domutils/2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} - dependencies: - dom-serializer: 1.3.2 - domelementtype: 2.2.0 - domhandler: 4.3.0 - dev: true - - /eastasianwidth/0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - dev: true - - /ee-first/1.1.1: - resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} - dev: true - - /electron-to-chromium/1.4.68: - resolution: {integrity: sha512-cId+QwWrV8R1UawO6b9BR1hnkJ4EJPCPAr4h315vliHUtVUJDk39Sg1PMNnaWKfj5x+93ssjeJ9LKL6r8LaMiA==} - dev: true - - /emmet/2.3.6: - resolution: {integrity: sha512-pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A==} - dependencies: - '@emmetio/abbreviation': 2.2.3 - '@emmetio/css-abbreviation': 2.1.4 - dev: true - - /emoji-regex/9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - dev: true - - /encodeurl/1.0.2: - resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=} - engines: {node: '>= 0.8'} - dev: true - - /entities/2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - dev: true - - /entities/3.0.1: - resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} - engines: {node: '>=0.12'} - dev: true - - /eol/0.9.1: - resolution: {integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==} - dev: true - - /error-ex/1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - dependencies: - is-arrayish: 0.2.1 - dev: true - - /es-abstract/1.19.1: - resolution: {integrity: sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - es-to-primitive: 1.2.1 - function-bind: 1.1.1 - get-intrinsic: 1.1.1 - get-symbol-description: 1.0.0 - has: 1.0.3 - has-symbols: 1.0.2 - internal-slot: 1.0.3 - is-callable: 1.2.4 - is-negative-zero: 2.0.2 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.1 - is-string: 1.0.7 - is-weakref: 1.0.2 - object-inspect: 1.12.0 - object-keys: 1.1.1 - object.assign: 4.1.2 - string.prototype.trimend: 1.0.4 - string.prototype.trimstart: 1.0.4 - unbox-primitive: 1.0.1 - dev: true - - /es-module-lexer/0.9.3: - resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} - dev: true - - /es-to-primitive/1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} - dependencies: - is-callable: 1.2.4 - is-date-object: 1.0.5 - is-symbol: 1.0.4 - dev: true - - /es6-object-assign/1.1.0: - resolution: {integrity: sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw=} - dev: true - - /es6-promise/3.3.1: - resolution: {integrity: sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM=} - dev: true - - /esbuild-android-arm64/0.13.7: - resolution: {integrity: sha512-yqCTKzmm3jiUXgi0yeKhvwZCZTqClUXwwMRAntcM9u/xvXhmpw0V0Z4qDEpnkmF2NCMzmJRH+DAAQ5whuf3CYA==} - cpu: [arm64] - os: [android] - dev: true - optional: true - - /esbuild-android-arm64/0.14.21: - resolution: {integrity: sha512-Bqgld1TY0wZv8TqiQmVxQFgYzz8ZmyzT7clXBDZFkOOdRybzsnj8AZuK1pwcLVA7Ya6XncHgJqIao7NFd3s0RQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - dev: true - optional: true - - /esbuild-darwin-64/0.13.7: - resolution: {integrity: sha512-MvsgMUWzq5FxoeJLSavw3rgQbaC55A8QTI1U2/8MWamtAeDKyzWQnglcsF0/TkjGLaKEqS0ZLo8akJ8q34BCtw==} - cpu: [x64] - os: [darwin] - dev: true - optional: true - - /esbuild-darwin-64/0.14.21: - resolution: {integrity: sha512-j+Eg+e13djzyYINVvAbOo2/zvZ2DivuJJTaBrJnJHSD7kUNuGHRkHoSfFjbI80KHkn091w350wdmXDNSgRjfYQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - dev: true - optional: true - - /esbuild-darwin-arm64/0.13.7: - resolution: {integrity: sha512-tuP+dpIzXj17UC17VkHFDAH5nB7MajJK7sF8Fz4iVo8cml8YXj3MeNtjjLmx9YFvPs4XW3hFw1eqZJ06h2ssIA==} - cpu: [arm64] - os: [darwin] - dev: true - optional: true - - /esbuild-darwin-arm64/0.14.21: - resolution: {integrity: sha512-nDNTKWDPI0RuoPj5BhcSB2z5EmZJJAyRtZLIjyXSqSpAyoB8eyAKXl4lB8U2P78Fnh4Lh1le/fmpewXE04JhBQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - dev: true - optional: true - - /esbuild-freebsd-64/0.13.7: - resolution: {integrity: sha512-p07TrpkCJJyAXXCXFm2IpAvyASUTcuT0OF43riEsgjuRJmtaNBOUENecr2B2k/zd9wkGz6UyxxtnFntaBttkDg==} - cpu: [x64] - os: [freebsd] - dev: true - optional: true - - /esbuild-freebsd-64/0.14.21: - resolution: {integrity: sha512-zIurkCHXhxELiDZtLGiexi8t8onQc2LtuE+S7457H/pP0g0MLRKMrsn/IN4LDkNe6lvBjuoZZi2OfelOHn831g==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - dev: true - optional: true - - /esbuild-freebsd-arm64/0.13.7: - resolution: {integrity: sha512-MCtfBRkE1GwAnjVoWPYoZ+S/+zanzWxAJVER1/8jmWobCXJG0w+YM2IXQ2fN4T9U96RusFWQDMJVoACnqhIAzg==} - cpu: [arm64] - os: [freebsd] - dev: true - optional: true - - /esbuild-freebsd-arm64/0.14.21: - resolution: {integrity: sha512-wdxMmkJfbwcN+q85MpeUEamVZ40FNsBa9mPq8tAszDn8TRT2HoJvVRADPIIBa9SWWwlDChIMjkDKAnS3KS/sPA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - dev: true - optional: true - - /esbuild-linux-32/0.13.7: - resolution: {integrity: sha512-HM4d16XbqToo93LPrgzkiLgX3Xgr9Mw67tEM8vjhHDx18JnaZqPdIsl5ZfCqRGHlLUq+GdFKl6+dH7WlsiWMCA==} - cpu: [ia32] - os: [linux] - dev: true - optional: true - - /esbuild-linux-32/0.14.21: - resolution: {integrity: sha512-fmxvyzOPPh2xiEHojpCeIQP6pXcoKsWbz3ryDDIKLOsk4xp3GbpHIEAWP0xTeuhEbendmvBDVKbAVv3PnODXLg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - dev: true - optional: true - - /esbuild-linux-64/0.13.7: - resolution: {integrity: sha512-krgiIEyqcS0kfTjptGEQzdYwiEmmqpmiZHlKqZILVuU5BaIVWCBMmVx20HH9waJw1yT0Ao4fZTZ9kg8s/pKAYA==} - cpu: [x64] - os: [linux] - dev: true - optional: true - - /esbuild-linux-64/0.14.21: - resolution: {integrity: sha512-edZyNOv1ql+kpmlzdqzzDjRQYls+tSyi4QFi+PdBhATJFUqHsnNELWA9vMSzAaInPOEaVUTA5Ml28XFChcy4DA==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - dev: true - optional: true - - /esbuild-linux-arm/0.13.7: - resolution: {integrity: sha512-GOAt1brGG14mmQx2sRD3wHi3rih94OzhmDRVyo7JvlSmWOfEczPf7zL7YfmgjuktvvuLTERtTJzaih7nyCwPOg==} - cpu: [arm] - os: [linux] - dev: true - optional: true - - /esbuild-linux-arm/0.14.21: - resolution: {integrity: sha512-aSU5pUueK6afqmLQsbU+QcFBT62L+4G9hHMJDHWfxgid6hzhSmfRH9U/f+ymvxsSTr/HFRU4y7ox8ZyhlVl98w==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - dev: true - optional: true - - /esbuild-linux-arm64/0.13.7: - resolution: {integrity: sha512-aM2BUTdbtzEUOuLqDusGCuWQRqc0JazgbA/6+Q9xhUgNLHGUMAsu4C5G0qPnJCTlWGZX+bcQYma6wFVEp9ibBg==} - cpu: [arm64] - os: [linux] - dev: true - optional: true - - /esbuild-linux-arm64/0.14.21: - resolution: {integrity: sha512-t5qxRkq4zdQC0zXpzSB2bTtfLgOvR0C6BXYaRE/6/k8/4SrkZcTZBeNu+xGvwCU4b5dU9ST9pwIWkK6T1grS8g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - dev: true - optional: true - - /esbuild-linux-mips64le/0.13.7: - resolution: {integrity: sha512-+UJq6cxpc2ldaQFdpEDrBhqhluXsqCNlWiHccIjq25r+3YbFg0c/RJEypoVU7tjhGXUGWyWWQ7SLkzHYpf+Nsg==} - cpu: [mips64el] - os: [linux] - dev: true - optional: true - - /esbuild-linux-mips64le/0.14.21: - resolution: {integrity: sha512-jLZLQGCNlUsmIHtGqNvBs3zN+7a4D9ckf0JZ+jQTwHdZJ1SgV9mAjbB980OFo66LoY+WeM7t3WEnq3FjI1zw4A==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - dev: true - optional: true - - /esbuild-linux-ppc64le/0.13.7: - resolution: {integrity: sha512-6zwpliO4ZZtodDYM1JJEmSMpkd07I8bnNOKoHe7TOs9VhylXJooHh5ObSbSvk3FxCBs+jL5bxb24p10/Cg4RGw==} - cpu: [ppc64] - os: [linux] - dev: true - optional: true - - /esbuild-linux-ppc64le/0.14.21: - resolution: {integrity: sha512-4TWxpK391en2UBUw6GSrukToTDu6lL9vkm3Ll40HrI08WG3qcnJu7bl8e1+GzelDsiw1QmfAY/nNvJ6iaHRpCQ==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - dev: true - optional: true - - /esbuild-linux-riscv64/0.14.21: - resolution: {integrity: sha512-fElngqOaOfTsF+u+oetDLHsPG74vB2ZaGZUqmGefAJn3a5z9Z2pNa4WpVbbKgHpaAAy5tWM1m1sbGohj6Ki6+Q==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - dev: true - optional: true - - /esbuild-linux-s390x/0.14.21: - resolution: {integrity: sha512-brleZ6R5fYv0qQ7ZBwenQmP6i9TdvJCB092c/3D3pTLQHBGHJb5zWgKxOeS7bdHzmLy6a6W7GbFk6QKpjyD6QA==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - dev: true - optional: true - - /esbuild-netbsd-64/0.13.7: - resolution: {integrity: sha512-CfTHeTfJWlwjgfpApXYvECytLD6BzTWovLE0+28KT7bjU5fM4ieDYzRvjWjFAOB2X6DWpaoQnJAlhJirQBW0EQ==} - cpu: [x64] - os: [netbsd] - dev: true - optional: true - - /esbuild-netbsd-64/0.14.21: - resolution: {integrity: sha512-nCEgsLCQ8RoFWVV8pVI+kX66ICwbPP/M9vEa0NJGIEB/Vs5sVGMqkf67oln90XNSkbc0bPBDuo4G6FxlF7PN8g==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - dev: true - optional: true - - /esbuild-openbsd-64/0.13.7: - resolution: {integrity: sha512-qfW+f0MQfl72zVwgbV00I1kAP2zty+N031cNnQINcBmzHOSbEbaBQbUM0kawq+wdfgS/Xmppgf7nD1H8GWAvow==} - cpu: [x64] - os: [openbsd] - dev: true - optional: true - - /esbuild-openbsd-64/0.14.21: - resolution: {integrity: sha512-h9zLMyVD0T73MDTVYIb/qUTokwI6EJH9O6wESuTNq6+XpMSr6C5aYZ4fvFKdNELW+Xsod+yDS2hV2JTUAbFrLA==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - dev: true - optional: true - - /esbuild-sunos-64/0.13.7: - resolution: {integrity: sha512-fVRM9mV0wAYLt92IqzudxACMLJZRQFx1oJsNeU4fPFmUxIkYE4C7G7z9vqI2eu9bpDo1fA+3+5djo/T/28Mckg==} - cpu: [x64] - os: [sunos] - dev: true - optional: true - - /esbuild-sunos-64/0.14.21: - resolution: {integrity: sha512-Kl+7Cot32qd9oqpLdB1tEGXEkjBlijrIxMJ0+vlDFaqsODutif25on0IZlFxEBtL2Gosd4p5WCV1U7UskNQfXA==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - dev: true - optional: true - - /esbuild-windows-32/0.13.7: - resolution: {integrity: sha512-v3csjeQtlHHWS1q/tE9rTRCSSU/fGvJVh1l7gkS93ysAaIMeC0j9Q0h2PxFpQ6yxuwftuDYfQdnkVGcqjkKM8A==} - cpu: [ia32] - os: [win32] - dev: true - optional: true - - /esbuild-windows-32/0.14.21: - resolution: {integrity: sha512-V7vnTq67xPBUCk/9UtlolmQ798Ecjdr1ZoI1vcSgw7M82aSSt0eZdP6bh5KAFZU8pxDcx3qoHyWQfHYr11f22A==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - dev: true - optional: true - - /esbuild-windows-64/0.13.7: - resolution: {integrity: sha512-vk+yv/vYpHZP0vxSaxaA4EMaicuxy4E435EXkbsgk5UgpcQgSP0CVlIeaqtgfSM3IwGnpbagOirRVqqZqxyMDQ==} - cpu: [x64] - os: [win32] - dev: true - optional: true - - /esbuild-windows-64/0.14.21: - resolution: {integrity: sha512-kDgHjKOHwjfJDCyRGELzVxiP/RBJBTA+wyspf78MTTJQkyPuxH2vChReNdWc+dU2S4gIZFHMdP1Qrl/k22ZmaA==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - dev: true - optional: true - - /esbuild-windows-arm64/0.13.7: - resolution: {integrity: sha512-0Fp+IeG5qWLCK+U6d8L9/SnXkI6f3JMtauSQ8HHzw3Fl0pZ+VImUAUWZ3g2fhthNqp+t8dB3n238CJD6XBn15w==} - cpu: [arm64] - os: [win32] - dev: true - optional: true - - /esbuild-windows-arm64/0.14.21: - resolution: {integrity: sha512-8Sbo0zpzgwWrwjQYLmHF78f7E2xg5Ve63bjB2ng3V2aManilnnTGaliq2snYg+NOX60+hEvJHRdVnuIAHW0lVw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - dev: true - optional: true - - /esbuild/0.13.7: - resolution: {integrity: sha512-Ok3w+Pc9SNdNVEEJUUx9OvNZHwFyoKS0N+ceytfUB3wh/HxhRkOEc9dO8KR9AjfpFI82/Wg258GRDs1/8SFgKQ==} - hasBin: true - requiresBuild: true - optionalDependencies: - esbuild-android-arm64: 0.13.7 - esbuild-darwin-64: 0.13.7 - esbuild-darwin-arm64: 0.13.7 - esbuild-freebsd-64: 0.13.7 - esbuild-freebsd-arm64: 0.13.7 - esbuild-linux-32: 0.13.7 - esbuild-linux-64: 0.13.7 - esbuild-linux-arm: 0.13.7 - esbuild-linux-arm64: 0.13.7 - esbuild-linux-mips64le: 0.13.7 - esbuild-linux-ppc64le: 0.13.7 - esbuild-netbsd-64: 0.13.7 - esbuild-openbsd-64: 0.13.7 - esbuild-sunos-64: 0.13.7 - esbuild-windows-32: 0.13.7 - esbuild-windows-64: 0.13.7 - esbuild-windows-arm64: 0.13.7 - dev: true - - /esbuild/0.14.21: - resolution: {integrity: sha512-7WEoNMBJdLN993dr9h0CpFHPRc3yFZD+EAVY9lg6syJJ12gc5fHq8d75QRExuhnMkT2DaRiIKFThRvDWP+fO+A==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - esbuild-android-arm64: 0.14.21 - esbuild-darwin-64: 0.14.21 - esbuild-darwin-arm64: 0.14.21 - esbuild-freebsd-64: 0.14.21 - esbuild-freebsd-arm64: 0.14.21 - esbuild-linux-32: 0.14.21 - esbuild-linux-64: 0.14.21 - esbuild-linux-arm: 0.14.21 - esbuild-linux-arm64: 0.14.21 - esbuild-linux-mips64le: 0.14.21 - esbuild-linux-ppc64le: 0.14.21 - esbuild-linux-riscv64: 0.14.21 - esbuild-linux-s390x: 0.14.21 - esbuild-netbsd-64: 0.14.21 - esbuild-openbsd-64: 0.14.21 - esbuild-sunos-64: 0.14.21 - esbuild-windows-32: 0.14.21 - esbuild-windows-64: 0.14.21 - esbuild-windows-arm64: 0.14.21 - dev: true - - /escalade/3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} - dev: true - - /escape-html/1.0.3: - resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=} - dev: true - - /escape-string-regexp/1.0.5: - resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} - engines: {node: '>=0.8.0'} - dev: true - - /escape-string-regexp/5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} - dev: true - - /esprima/4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true - dev: true - - /estree-util-is-identifier-name/2.0.0: - resolution: {integrity: sha512-aXXZFVMnBBDRP81vS4YtAYJ0hUkgEsXea7lNKWCOeaAquGb1Jm2rcONPB5fpzwgbNxulTvrWuKnp9UElUGAKeQ==} - dev: true - - /estree-util-visit/1.1.0: - resolution: {integrity: sha512-3lXJ4Us9j8TUif9cWcQy81t9p5OLasnDuuhrFiqb+XstmKC1d1LmrQWYsY49/9URcfHE64mPypDBaNK9NwWDPQ==} - dependencies: - '@types/estree-jsx': 0.0.1 - '@types/unist': 2.0.6 - dev: true - - /estree-walker/2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - dev: true - - /estree-walker/3.0.1: - resolution: {integrity: sha512-woY0RUD87WzMBUiZLx8NsYr23N5BKsOMZHhu2hoNRVh6NXGfoiT1KOL8G3UHlJAnEDGmfa5ubNA/AacfG+Kb0g==} - dev: true - - /etag/1.8.1: - resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=} - engines: {node: '>= 0.6'} - dev: true - - /extend-shallow/2.0.1: - resolution: {integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=} - engines: {node: '>=0.10.0'} - dependencies: - is-extendable: 0.1.1 - dev: true - - /extend/3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - - /fast-glob/3.2.11: - resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} - engines: {node: '>=8.6.0'} - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.4 - dev: true - - /fast-xml-parser/4.0.2: - resolution: {integrity: sha512-3GOSbMTZxxrPPQ+aURM7Wia10bi71HBbiG/3mOEEkRSAkRtg4m7UhMSnB2rzOhBeRHyJUWsllOfyNnjTT1b85w==} - hasBin: true - dependencies: - strnum: 1.0.5 - dev: true - - /fastq/1.13.0: - resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} - dependencies: - reusify: 1.0.4 - dev: true - - /fetch-blob/3.1.4: - resolution: {integrity: sha512-Eq5Xv5+VlSrYWEqKrusxY1C3Hm/hjeAsCGVG3ft7pZahlUAChpGZT/Ms1WmSLnEAisEXszjzu/s+ce6HZB2VHA==} - engines: {node: ^12.20 || >= 14.13} - dependencies: - node-domexception: 1.0.0 - web-streams-polyfill: 3.2.0 - dev: true - - /fill-range/7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} - dependencies: - to-regex-range: 5.0.1 - dev: true - - /foreach/2.0.5: - resolution: {integrity: sha1-C+4AUBiusmDQo6865ljdATbsG5k=} - dev: true - - /formdata-polyfill/4.0.10: - resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} - engines: {node: '>=12.20.0'} - dependencies: - fetch-blob: 3.1.4 - dev: true - - /fraction.js/4.1.3: - resolution: {integrity: sha512-pUHWWt6vHzZZiQJcM6S/0PXfS+g6FM4BF5rj9wZyreivhQPdsh5PpE25VtSNxq80wHS5RfY51Ii+8Z0Zl/pmzg==} - dev: true - - /fresh/0.5.2: - resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} - engines: {node: '>= 0.6'} - dev: true - - /fs.realpath/1.0.0: - resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} - dev: true - - /fsevents/2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - dev: true - optional: true - - /function-bind/1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} - dev: true - - /gensync/1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - dev: true - - /get-intrinsic/1.1.1: - resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==} - dependencies: - function-bind: 1.1.1 - has: 1.0.3 - has-symbols: 1.0.2 - dev: true - - /get-symbol-description/1.0.0: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.1.1 - dev: true - - /github-slugger/1.4.0: - resolution: {integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==} - dev: true - - /glob-parent/5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - dependencies: - is-glob: 4.0.3 - dev: true - - /glob-parent/6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} - dependencies: - is-glob: 4.0.3 - dev: true - - /glob/7.2.0: - resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.1 - once: 1.4.0 - path-is-absolute: 1.0.1 - dev: true - - /globals/11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} - dev: true - - /graceful-fs/4.2.9: - resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==} - dev: true - - /gray-matter/4.0.3: - resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} - engines: {node: '>=6.0'} - dependencies: - js-yaml: 3.14.1 - kind-of: 6.0.3 - section-matter: 1.0.0 - strip-bom-string: 1.0.0 - dev: true - - /has-bigints/1.0.1: - resolution: {integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==} - dev: true - - /has-flag/3.0.0: - resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} - engines: {node: '>=4'} - dev: true - - /has-flag/4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - dev: true - - /has-package-exports/1.2.3: - resolution: {integrity: sha512-lkLLwrNNaRsmwj+TylZJh1o3YlzLfgrl9fZKOAMj4MHjbvt7wy1J0icE6jD36dzkA0aQGoNuqY0hVN2uuPfPBA==} - dependencies: - '@ljharb/has-package-exports-patterns': 0.0.1 - dev: true - - /has-symbols/1.0.2: - resolution: {integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==} - engines: {node: '>= 0.4'} - dev: true - - /has-tostringtag/1.0.0: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} - engines: {node: '>= 0.4'} - dependencies: - has-symbols: 1.0.2 - dev: true - - /has/1.0.3: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} - engines: {node: '>= 0.4.0'} - dependencies: - function-bind: 1.1.1 - dev: true - - /hast-to-hyperscript/10.0.1: - resolution: {integrity: sha512-dhIVGoKCQVewFi+vz3Vt567E4ejMppS1haBRL6TEmeLeJVB1i/FJIIg/e6s1Bwn0g5qtYojHEKvyGA+OZuyifw==} - dependencies: - '@types/unist': 2.0.6 - comma-separated-tokens: 2.0.2 - property-information: 6.1.1 - space-separated-tokens: 2.0.1 - style-to-object: 0.3.0 - unist-util-is: 5.1.1 - web-namespaces: 2.0.1 - dev: true - - /hast-util-from-parse5/7.1.0: - resolution: {integrity: sha512-m8yhANIAccpU4K6+121KpPP55sSl9/samzQSQGpb0mTExcNh2WlvjtMwSWFhg6uqD4Rr6Nfa8N6TMypQM51rzQ==} - dependencies: - '@types/hast': 2.3.4 - '@types/parse5': 6.0.3 - '@types/unist': 2.0.6 - hastscript: 7.0.2 - property-information: 6.1.1 - vfile: 5.3.0 - vfile-location: 4.0.1 - web-namespaces: 2.0.1 - dev: true - - /hast-util-has-property/2.0.0: - resolution: {integrity: sha512-4Qf++8o5v14us4Muv3HRj+Er6wTNGA/N9uCaZMty4JWvyFKLdhULrv4KE1b65AthsSO9TXSZnjuxS8ecIyhb0w==} - - /hast-util-heading-rank/2.1.0: - resolution: {integrity: sha512-w+Rw20Q/iWp2Bcnr6uTrYU6/ftZLbHKhvc8nM26VIWpDqDMlku2iXUVTeOlsdoih/UKQhY7PHQ+vZ0Aqq8bxtQ==} - dependencies: - '@types/hast': 2.3.4 - - /hast-util-is-element/2.1.2: - resolution: {integrity: sha512-thjnlGAnwP8ef/GSO1Q8BfVk2gundnc2peGQqEg2kUt/IqesiGg/5mSwN2fE7nLzy61pg88NG6xV+UrGOrx9EA==} - dependencies: - '@types/hast': 2.3.4 - '@types/unist': 2.0.6 - - /hast-util-parse-selector/3.1.0: - resolution: {integrity: sha512-AyjlI2pTAZEOeu7GeBPZhROx0RHBnydkQIXlhnFzDi0qfXTmGUWoCYZtomHbrdrheV4VFUlPcfJ6LMF5T6sQzg==} - dependencies: - '@types/hast': 2.3.4 - dev: true - - /hast-util-raw/7.2.1: - resolution: {integrity: sha512-wgtppqXVdXzkDXDFclLLdAyVUJSKMYYi6LWIAbA8oFqEdwksYIcPGM3RkKV1Dfn5GElvxhaOCs0jmCOMayxd3A==} - dependencies: - '@types/hast': 2.3.4 - '@types/parse5': 6.0.3 - hast-util-from-parse5: 7.1.0 - hast-util-to-parse5: 7.0.0 - html-void-elements: 2.0.1 - parse5: 6.0.1 - unist-util-position: 4.0.1 - unist-util-visit: 4.1.0 - vfile: 5.3.0 - web-namespaces: 2.0.1 - zwitch: 2.0.2 - dev: true - - /hast-util-to-html/8.0.3: - resolution: {integrity: sha512-/D/E5ymdPYhHpPkuTHOUkSatxr4w1ZKrZsG0Zv/3C2SRVT0JFJG53VS45AMrBtYk0wp5A7ksEhiC8QaOZM95+A==} - dependencies: - '@types/hast': 2.3.4 - ccount: 2.0.1 - comma-separated-tokens: 2.0.2 - hast-util-is-element: 2.1.2 - hast-util-whitespace: 2.0.0 - html-void-elements: 2.0.1 - property-information: 6.1.1 - space-separated-tokens: 2.0.1 - stringify-entities: 4.0.2 - unist-util-is: 5.1.1 - dev: true - - /hast-util-to-parse5/7.0.0: - resolution: {integrity: sha512-YHiS6aTaZ3N0Q3nxaY/Tj98D6kM8QX5Q8xqgg8G45zR7PvWnPGPP0vcKCgb/moIydEJ/QWczVrX0JODCVeoV7A==} - dependencies: - '@types/hast': 2.3.4 - '@types/parse5': 6.0.3 - hast-to-hyperscript: 10.0.1 - property-information: 6.1.1 - web-namespaces: 2.0.1 - zwitch: 2.0.2 - dev: true - - /hast-util-to-string/2.0.0: - resolution: {integrity: sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A==} - dependencies: - '@types/hast': 2.3.4 - dev: true - - /hast-util-whitespace/2.0.0: - resolution: {integrity: sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg==} - dev: true - - /hastscript/7.0.2: - resolution: {integrity: sha512-uA8ooUY4ipaBvKcMuPehTAB/YfFLSSzCwFSwT6ltJbocFUKH/GDHLN+tflq7lSRf9H86uOuxOFkh1KgIy3Gg2g==} - dependencies: - '@types/hast': 2.3.4 - comma-separated-tokens: 2.0.2 - hast-util-parse-selector: 3.1.0 - property-information: 6.1.1 - space-separated-tokens: 2.0.1 - dev: true - - /html-entities/2.3.2: - resolution: {integrity: sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==} - dev: true - - /html-void-elements/2.0.1: - resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==} - dev: true - - /htmlparser2/7.2.0: - resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} - dependencies: - domelementtype: 2.2.0 - domhandler: 4.3.0 - domutils: 2.8.0 - entities: 3.0.1 - dev: true - - /http-errors/1.8.1: - resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==} - engines: {node: '>= 0.6'} - dependencies: - depd: 1.1.2 - inherits: 2.0.4 - setprototypeof: 1.2.0 - statuses: 1.5.0 - toidentifier: 1.0.1 - dev: true - - /import-fresh/3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} - dependencies: - parent-module: 1.0.1 - resolve-from: 4.0.0 - dev: true - - /inflight/1.0.6: - resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} - dependencies: - once: 1.4.0 - wrappy: 1.0.2 - dev: true - - /inherits/2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - dev: true - - /inline-style-parser/0.1.1: - resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} - dev: true - - /internal-slot/1.0.3: - resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} - engines: {node: '>= 0.4'} - dependencies: - get-intrinsic: 1.1.1 - has: 1.0.3 - side-channel: 1.0.4 - dev: true - - /is-alphabetical/2.0.1: - resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} - dev: true - - /is-alphanumerical/2.0.1: - resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} - dependencies: - is-alphabetical: 2.0.1 - is-decimal: 2.0.1 - dev: true - - /is-arguments/1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 - dev: true - - /is-arrayish/0.2.1: - resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} - dev: true - - /is-bigint/1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} - dependencies: - has-bigints: 1.0.1 - dev: true - - /is-binary-path/2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} - dependencies: - binary-extensions: 2.2.0 - dev: true - - /is-boolean-object/1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 - dev: true - - /is-buffer/2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} - - /is-callable/1.2.4: - resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} - engines: {node: '>= 0.4'} - dev: true - - /is-core-module/2.8.1: - resolution: {integrity: sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==} - dependencies: - has: 1.0.3 - dev: true - - /is-date-object/1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} - dependencies: - has-tostringtag: 1.0.0 - dev: true - - /is-decimal/2.0.1: - resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} - dev: true - - /is-extendable/0.1.1: - resolution: {integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=} - engines: {node: '>=0.10.0'} - dev: true - - /is-extglob/2.1.1: - resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} - engines: {node: '>=0.10.0'} - dev: true - - /is-generator-function/1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} - dependencies: - has-tostringtag: 1.0.0 - dev: true - - /is-glob/4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} - dependencies: - is-extglob: 2.1.1 - dev: true - - /is-hexadecimal/2.0.1: - resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} - dev: true - - /is-nan/1.3.2: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - dev: true - - /is-negative-zero/2.0.2: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} - engines: {node: '>= 0.4'} - dev: true - - /is-number-object/1.0.6: - resolution: {integrity: sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==} - engines: {node: '>= 0.4'} - dependencies: - has-tostringtag: 1.0.0 - dev: true - - /is-number/7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - dev: true - - /is-plain-obj/4.0.0: - resolution: {integrity: sha512-NXRbBtUdBioI73y/HmOhogw/U5msYPC9DAtGkJXeFcFWSFZw0mCUsPxk/snTuJHzNKA8kLBK4rH97RMB1BfCXw==} - engines: {node: '>=12'} - - /is-regex/1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 - dev: true - - /is-shared-array-buffer/1.0.1: - resolution: {integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==} - dev: true - - /is-string/1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} - dependencies: - has-tostringtag: 1.0.0 - dev: true - - /is-symbol/1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} - dependencies: - has-symbols: 1.0.2 - dev: true - - /is-typed-array/1.1.8: - resolution: {integrity: sha512-HqH41TNZq2fgtGT8WHVFVJhBVGuY3AnP3Q36K8JKXUxSxRgk/d+7NjmwG2vo2mYmXK8UYZKu0qH8bVP5gEisjA==} - engines: {node: '>= 0.4'} - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-abstract: 1.19.1 - foreach: 2.0.5 - has-tostringtag: 1.0.0 - dev: true - - /is-weakref/1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} - dependencies: - call-bind: 1.0.2 - dev: true - - /js-tokens/4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - dev: true - - /js-yaml/3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true - dependencies: - argparse: 1.0.10 - esprima: 4.0.1 - dev: true - - /jsesc/2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - dev: true - - /json-parse-even-better-errors/2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - dev: true - - /json5/2.2.0: - resolution: {integrity: sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==} - engines: {node: '>=6'} - hasBin: true - dependencies: - minimist: 1.2.5 - dev: true - - /jsonc-parser/2.3.1: - resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==} - dev: true - - /jsonc-parser/3.0.0: - resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} - dev: true - - /kind-of/6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - dev: true - - /kleur/4.1.4: - resolution: {integrity: sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==} - engines: {node: '>=6'} - dev: true - - /lilconfig/2.0.4: - resolution: {integrity: sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==} - engines: {node: '>=10'} - dev: true - - /lines-and-columns/1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - dev: true - - /lodash.castarray/4.4.0: - resolution: {integrity: sha1-wCUTUV4wna3dTCTGDP3c9ZdtkRU=} - dev: true - - /lodash.isplainobject/4.0.6: - resolution: {integrity: sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=} - dev: true - - /lodash.merge/4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - dev: true - - /lodash/4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - dev: true - - /longest-streak/3.0.1: - resolution: {integrity: sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==} - dev: true - - /loose-envify/1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true - dependencies: - js-tokens: 4.0.0 - dev: true - - /lru-cache/6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} - dependencies: - yallist: 4.0.0 - dev: true - - /magic-string/0.25.7: - resolution: {integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==} - dependencies: - sourcemap-codec: 1.4.8 - dev: true - - /markdown-table/3.0.2: - resolution: {integrity: sha512-y8j3a5/DkJCmS5x4dMCQL+OR0+2EAq3DOtio1COSHsmW2BGXnNCK3v12hJt1LrUz5iZH5g0LmuYOjDdI+czghA==} - dev: true - - /mdast-util-definitions/5.1.0: - resolution: {integrity: sha512-5hcR7FL2EuZ4q6lLMUK5w4lHT2H3vqL9quPvYZ/Ku5iifrirfMHiGdhxdXMUbUkDmz5I+TYMd7nbaxUhbQkfpQ==} - dependencies: - '@types/mdast': 3.0.10 - '@types/unist': 2.0.6 - unist-util-visit: 3.1.0 - dev: true - - /mdast-util-find-and-replace/2.1.0: - resolution: {integrity: sha512-1w1jbqAd13oU78QPBf5223+xB+37ecNtQ1JElq2feWols5oEYAl+SgNDnOZipe7NfLemoEt362yUS15/wip4mw==} - dependencies: - escape-string-regexp: 5.0.0 - unist-util-is: 5.1.1 - unist-util-visit-parents: 4.1.1 - dev: true - - /mdast-util-from-markdown/1.2.0: - resolution: {integrity: sha512-iZJyyvKD1+K7QX1b5jXdE7Sc5dtoTry1vzV28UZZe8Z1xVnB/czKntJ7ZAkG0tANqRnBF6p3p7GpU1y19DTf2Q==} - dependencies: - '@types/mdast': 3.0.10 - '@types/unist': 2.0.6 - decode-named-character-reference: 1.0.1 - mdast-util-to-string: 3.1.0 - micromark: 3.0.10 - micromark-util-decode-numeric-character-reference: 1.0.0 - micromark-util-decode-string: 1.0.2 - micromark-util-normalize-identifier: 1.0.0 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - unist-util-stringify-position: 3.0.0 - uvu: 0.5.3 - transitivePeerDependencies: - - supports-color - dev: true - - /mdast-util-gfm-autolink-literal/1.0.2: - resolution: {integrity: sha512-FzopkOd4xTTBeGXhXSBU0OCDDh5lUj2rd+HQqG92Ld+jL4lpUfgX2AT2OHAVP9aEeDKp7G92fuooSZcYJA3cRg==} - dependencies: - '@types/mdast': 3.0.10 - ccount: 2.0.1 - mdast-util-find-and-replace: 2.1.0 - micromark-util-character: 1.1.0 - dev: true - - /mdast-util-gfm-footnote/1.0.1: - resolution: {integrity: sha512-p+PrYlkw9DeCRkTVw1duWqPRHX6Ywh2BNKJQcZbCwAuP/59B0Lk9kakuAd7KbQprVO4GzdW8eS5++A9PUSqIyw==} - dependencies: - '@types/mdast': 3.0.10 - mdast-util-to-markdown: 1.3.0 - micromark-util-normalize-identifier: 1.0.0 - dev: true - - /mdast-util-gfm-strikethrough/1.0.1: - resolution: {integrity: sha512-zKJbEPe+JP6EUv0mZ0tQUyLQOC+FADt0bARldONot/nefuISkaZFlmVK4tU6JgfyZGrky02m/I6PmehgAgZgqg==} - dependencies: - '@types/mdast': 3.0.10 - mdast-util-to-markdown: 1.3.0 - dev: true - - /mdast-util-gfm-table/1.0.3: - resolution: {integrity: sha512-B/tgpJjND1qIZM2WZst+NYnb0notPE6m0J+YOe3NOHXyEmvK38ytxaOsgz4BvrRPQQcNbRrTzSHMPnBkj1fCjg==} - dependencies: - markdown-table: 3.0.2 - mdast-util-to-markdown: 1.3.0 - dev: true - - /mdast-util-gfm-task-list-item/1.0.1: - resolution: {integrity: sha512-KZ4KLmPdABXOsfnM6JHUIjxEvcx2ulk656Z/4Balw071/5qgnhz+H1uGtf2zIGnrnvDC8xR4Fj9uKbjAFGNIeA==} - dependencies: - '@types/mdast': 3.0.10 - mdast-util-to-markdown: 1.3.0 - dev: true - - /mdast-util-gfm/2.0.0: - resolution: {integrity: sha512-wMwejlTN3EQADPFuvxe8lmGsay3+f6gSJKdAHR6KBJzpcxvsjJSILB9K6u6G7eQLC7iOTyVIHYGui9uBc9r1Tg==} - dependencies: - mdast-util-gfm-autolink-literal: 1.0.2 - mdast-util-gfm-footnote: 1.0.1 - mdast-util-gfm-strikethrough: 1.0.1 - mdast-util-gfm-table: 1.0.3 - mdast-util-gfm-task-list-item: 1.0.1 - dev: true - - /mdast-util-mdx-expression/1.2.0: - resolution: {integrity: sha512-wb36oi09XxqO9RVqgfD+xo8a7xaNgS+01+k3v0GKW0X0bYbeBmUZz22Z/IJ8SuphVlG+DNgNo9VoEaUJ3PKfJQ==} - dependencies: - '@types/estree-jsx': 0.0.1 - '@types/hast': 2.3.4 - '@types/mdast': 3.0.10 - mdast-util-from-markdown: 1.2.0 - mdast-util-to-markdown: 1.3.0 - transitivePeerDependencies: - - supports-color - dev: true - - /mdast-util-mdx-jsx/1.2.0: - resolution: {integrity: sha512-5+ot/kfxYd3ChgEMwsMUO71oAfYjyRI3pADEK4I7xTmWLGQ8Y7ghm1CG36zUoUvDPxMlIYwQV/9DYHAUWdG4dA==} - dependencies: - '@types/estree-jsx': 0.0.1 - '@types/mdast': 3.0.10 - mdast-util-to-markdown: 1.3.0 - parse-entities: 4.0.0 - stringify-entities: 4.0.2 - unist-util-remove-position: 4.0.1 - unist-util-stringify-position: 3.0.0 - vfile-message: 3.1.0 - dev: true - - /mdast-util-to-hast/12.1.1: - resolution: {integrity: sha512-qE09zD6ylVP14jV4mjLIhDBOrpFdShHZcEsYvvKGABlr9mGbV7mTlRWdoFxL/EYSTNDiC9GZXy7y8Shgb9Dtzw==} - dependencies: - '@types/hast': 2.3.4 - '@types/mdast': 3.0.10 - '@types/mdurl': 1.0.2 - mdast-util-definitions: 5.1.0 - mdurl: 1.0.1 - micromark-util-sanitize-uri: 1.0.0 - unist-builder: 3.0.0 - unist-util-generated: 2.0.0 - unist-util-position: 4.0.1 - unist-util-visit: 4.1.0 - dev: true - - /mdast-util-to-markdown/1.3.0: - resolution: {integrity: sha512-6tUSs4r+KK4JGTTiQ7FfHmVOaDrLQJPmpjD6wPMlHGUVXoG9Vjc3jIeP+uyBWRf8clwB2blM+W7+KrlMYQnftA==} - dependencies: - '@types/mdast': 3.0.10 - '@types/unist': 2.0.6 - longest-streak: 3.0.1 - mdast-util-to-string: 3.1.0 - micromark-util-decode-string: 1.0.2 - unist-util-visit: 4.1.0 - zwitch: 2.0.2 - dev: true - - /mdast-util-to-string/3.1.0: - resolution: {integrity: sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA==} - dev: true - - /mdn-data/2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} - dev: true - - /mdurl/1.0.1: - resolution: {integrity: sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=} - dev: true - - /merge2/1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - dev: true - - /micromark-core-commonmark/1.0.6: - resolution: {integrity: sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==} - dependencies: - decode-named-character-reference: 1.0.1 - micromark-factory-destination: 1.0.0 - micromark-factory-label: 1.0.2 - micromark-factory-space: 1.0.0 - micromark-factory-title: 1.0.2 - micromark-factory-whitespace: 1.0.0 - micromark-util-character: 1.1.0 - micromark-util-chunked: 1.0.0 - micromark-util-classify-character: 1.0.0 - micromark-util-html-tag-name: 1.0.0 - micromark-util-normalize-identifier: 1.0.0 - micromark-util-resolve-all: 1.0.0 - micromark-util-subtokenize: 1.0.2 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - uvu: 0.5.3 - dev: true - - /micromark-extension-gfm-autolink-literal/1.0.3: - resolution: {integrity: sha512-i3dmvU0htawfWED8aHMMAzAVp/F0Z+0bPh3YrbTPPL1v4YAlCZpy5rBO5p0LPYiZo0zFVkoYh7vDU7yQSiCMjg==} - dependencies: - micromark-util-character: 1.1.0 - micromark-util-sanitize-uri: 1.0.0 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - uvu: 0.5.3 - dev: true - - /micromark-extension-gfm-footnote/1.0.3: - resolution: {integrity: sha512-bn62pC5y39rIo2g1RqZk1NhF7T7cJLuJlbevunQz41U0iPVCdVOFASe5/L1kke+DFKSgfCRhv24+o42cZ1+ADw==} - dependencies: - micromark-core-commonmark: 1.0.6 - micromark-factory-space: 1.0.0 - micromark-util-character: 1.1.0 - micromark-util-normalize-identifier: 1.0.0 - micromark-util-sanitize-uri: 1.0.0 - micromark-util-symbol: 1.0.1 - uvu: 0.5.3 - dev: true - - /micromark-extension-gfm-strikethrough/1.0.4: - resolution: {integrity: sha512-/vjHU/lalmjZCT5xt7CcHVJGq8sYRm80z24qAKXzaHzem/xsDYb2yLL+NNVbYvmpLx3O7SYPuGL5pzusL9CLIQ==} - dependencies: - micromark-util-chunked: 1.0.0 - micromark-util-classify-character: 1.0.0 - micromark-util-resolve-all: 1.0.0 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - uvu: 0.5.3 - dev: true - - /micromark-extension-gfm-table/1.0.5: - resolution: {integrity: sha512-xAZ8J1X9W9K3JTJTUL7G6wSKhp2ZYHrFk5qJgY/4B33scJzE2kpfRL6oiw/veJTbt7jiM/1rngLlOKPWr1G+vg==} - dependencies: - micromark-factory-space: 1.0.0 - micromark-util-character: 1.1.0 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - uvu: 0.5.3 - dev: true - - /micromark-extension-gfm-tagfilter/1.0.1: - resolution: {integrity: sha512-Ty6psLAcAjboRa/UKUbbUcwjVAv5plxmpUTy2XC/3nJFL37eHej8jrHrRzkqcpipJliuBH30DTs7+3wqNcQUVA==} - dependencies: - micromark-util-types: 1.0.2 - dev: true - - /micromark-extension-gfm-task-list-item/1.0.3: - resolution: {integrity: sha512-PpysK2S1Q/5VXi72IIapbi/jliaiOFzv7THH4amwXeYXLq3l1uo8/2Be0Ac1rEwK20MQEsGH2ltAZLNY2KI/0Q==} - dependencies: - micromark-factory-space: 1.0.0 - micromark-util-character: 1.1.0 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - uvu: 0.5.3 - dev: true - - /micromark-extension-gfm/2.0.1: - resolution: {integrity: sha512-p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA==} - dependencies: - micromark-extension-gfm-autolink-literal: 1.0.3 - micromark-extension-gfm-footnote: 1.0.3 - micromark-extension-gfm-strikethrough: 1.0.4 - micromark-extension-gfm-table: 1.0.5 - micromark-extension-gfm-tagfilter: 1.0.1 - micromark-extension-gfm-task-list-item: 1.0.3 - micromark-util-combine-extensions: 1.0.0 - micromark-util-types: 1.0.2 - dev: true - - /micromark-extension-mdx-expression/1.0.3: - resolution: {integrity: sha512-TjYtjEMszWze51NJCZmhv7MEBcgYRgb3tJeMAJ+HQCAaZHHRBaDCccqQzGizR/H4ODefP44wRTgOn2vE5I6nZA==} - dependencies: - micromark-factory-mdx-expression: 1.0.6 - micromark-factory-space: 1.0.0 - micromark-util-character: 1.1.0 - micromark-util-events-to-acorn: 1.0.4 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - uvu: 0.5.3 - dev: true - - /micromark-extension-mdx-jsx/1.0.3: - resolution: {integrity: sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==} - dependencies: - '@types/acorn': 4.0.6 - estree-util-is-identifier-name: 2.0.0 - micromark-factory-mdx-expression: 1.0.6 - micromark-factory-space: 1.0.0 - micromark-util-character: 1.1.0 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - uvu: 0.5.3 - vfile-message: 3.1.0 - dev: true - - /micromark-factory-destination/1.0.0: - resolution: {integrity: sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==} - dependencies: - micromark-util-character: 1.1.0 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - dev: true - - /micromark-factory-label/1.0.2: - resolution: {integrity: sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==} - dependencies: - micromark-util-character: 1.1.0 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - uvu: 0.5.3 - dev: true - - /micromark-factory-mdx-expression/1.0.6: - resolution: {integrity: sha512-WRQIc78FV7KrCfjsEf/sETopbYjElh3xAmNpLkd1ODPqxEngP42eVRGbiPEQWpRV27LzqW+XVTvQAMIIRLPnNA==} - dependencies: - micromark-factory-space: 1.0.0 - micromark-util-character: 1.1.0 - micromark-util-events-to-acorn: 1.0.4 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - unist-util-position-from-estree: 1.1.1 - uvu: 0.5.3 - vfile-message: 3.1.0 - dev: true - - /micromark-factory-space/1.0.0: - resolution: {integrity: sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==} - dependencies: - micromark-util-character: 1.1.0 - micromark-util-types: 1.0.2 - dev: true - - /micromark-factory-title/1.0.2: - resolution: {integrity: sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==} - dependencies: - micromark-factory-space: 1.0.0 - micromark-util-character: 1.1.0 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - uvu: 0.5.3 - dev: true - - /micromark-factory-whitespace/1.0.0: - resolution: {integrity: sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==} - dependencies: - micromark-factory-space: 1.0.0 - micromark-util-character: 1.1.0 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - dev: true - - /micromark-util-character/1.1.0: - resolution: {integrity: sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==} - dependencies: - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - dev: true - - /micromark-util-chunked/1.0.0: - resolution: {integrity: sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==} - dependencies: - micromark-util-symbol: 1.0.1 - dev: true - - /micromark-util-classify-character/1.0.0: - resolution: {integrity: sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==} - dependencies: - micromark-util-character: 1.1.0 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - dev: true - - /micromark-util-combine-extensions/1.0.0: - resolution: {integrity: sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==} - dependencies: - micromark-util-chunked: 1.0.0 - micromark-util-types: 1.0.2 - dev: true - - /micromark-util-decode-numeric-character-reference/1.0.0: - resolution: {integrity: sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==} - dependencies: - micromark-util-symbol: 1.0.1 - dev: true - - /micromark-util-decode-string/1.0.2: - resolution: {integrity: sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==} - dependencies: - decode-named-character-reference: 1.0.1 - micromark-util-character: 1.1.0 - micromark-util-decode-numeric-character-reference: 1.0.0 - micromark-util-symbol: 1.0.1 - dev: true - - /micromark-util-encode/1.0.1: - resolution: {integrity: sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==} - dev: true - - /micromark-util-events-to-acorn/1.0.4: - resolution: {integrity: sha512-dpo8ecREK5s/KMph7jJ46RLM6g7N21CMc9LAJQbDLdbQnTpijigkSJPTIfLXZ+h5wdXlcsQ+b6ufAE9v76AdgA==} - dependencies: - '@types/acorn': 4.0.6 - '@types/estree': 0.0.50 - estree-util-visit: 1.1.0 - micromark-util-types: 1.0.2 - uvu: 0.5.3 - vfile-message: 3.1.0 - dev: true - - /micromark-util-html-tag-name/1.0.0: - resolution: {integrity: sha512-NenEKIshW2ZI/ERv9HtFNsrn3llSPZtY337LID/24WeLqMzeZhBEE6BQ0vS2ZBjshm5n40chKtJ3qjAbVV8S0g==} - dev: true - - /micromark-util-normalize-identifier/1.0.0: - resolution: {integrity: sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==} - dependencies: - micromark-util-symbol: 1.0.1 - dev: true - - /micromark-util-resolve-all/1.0.0: - resolution: {integrity: sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==} - dependencies: - micromark-util-types: 1.0.2 - dev: true - - /micromark-util-sanitize-uri/1.0.0: - resolution: {integrity: sha512-cCxvBKlmac4rxCGx6ejlIviRaMKZc0fWm5HdCHEeDWRSkn44l6NdYVRyU+0nT1XC72EQJMZV8IPHF+jTr56lAg==} - dependencies: - micromark-util-character: 1.1.0 - micromark-util-encode: 1.0.1 - micromark-util-symbol: 1.0.1 - dev: true - - /micromark-util-subtokenize/1.0.2: - resolution: {integrity: sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==} - dependencies: - micromark-util-chunked: 1.0.0 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - uvu: 0.5.3 - dev: true - - /micromark-util-symbol/1.0.1: - resolution: {integrity: sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==} - dev: true - - /micromark-util-types/1.0.2: - resolution: {integrity: sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==} - dev: true - - /micromark/3.0.10: - resolution: {integrity: sha512-ryTDy6UUunOXy2HPjelppgJ2sNfcPz1pLlMdA6Rz9jPzhLikWXv/irpWV/I2jd68Uhmny7hHxAlAhk4+vWggpg==} - dependencies: - '@types/debug': 4.1.7 - debug: 4.3.3 - decode-named-character-reference: 1.0.1 - micromark-core-commonmark: 1.0.6 - micromark-factory-space: 1.0.0 - micromark-util-character: 1.1.0 - micromark-util-chunked: 1.0.0 - micromark-util-combine-extensions: 1.0.0 - micromark-util-decode-numeric-character-reference: 1.0.0 - micromark-util-encode: 1.0.1 - micromark-util-normalize-identifier: 1.0.0 - micromark-util-resolve-all: 1.0.0 - micromark-util-sanitize-uri: 1.0.0 - micromark-util-subtokenize: 1.0.2 - micromark-util-symbol: 1.0.1 - micromark-util-types: 1.0.2 - uvu: 0.5.3 - transitivePeerDependencies: - - supports-color - dev: true - - /micromatch/4.0.4: - resolution: {integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==} - engines: {node: '>=8.6'} - dependencies: - braces: 3.0.2 - picomatch: 2.3.1 - dev: true - - /micromorph/0.0.2: - resolution: {integrity: sha512-hfy/OA8rtwI/vPRm4L6a3/u6uDvqsPmTok7pPmtfv2a7YfaTVfxd9HX2Kdn/SZ8rGMKkKVJ9A0WcBnzs0bjLXw==} - dev: true - - /mime/1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true - dev: true - - /mime/3.0.0: - resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} - engines: {node: '>=10.0.0'} - hasBin: true - dev: true - - /min-indent/1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} - dev: true - - /minimatch/3.1.1: - resolution: {integrity: sha512-reLxBcKUPNBnc/sVtAbxgRVFSegoGeLaSjmphNhcwcolhYLRgtJscn5mRl6YRZNQv40Y7P6JM2YhSIsbL9OB5A==} - dependencies: - brace-expansion: 1.1.11 - dev: true - - /minimist/1.2.5: - resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==} - dev: true - - /mkdirp/0.5.5: - resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==} - hasBin: true - dependencies: - minimist: 1.2.5 - dev: true - - /mkdirp/1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true - dev: true - - /mri/1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} - dev: true - - /ms/2.0.0: - resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=} - dev: true - - /ms/2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - dev: true - - /ms/2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - dev: true - - /nanoid/3.3.1: - resolution: {integrity: sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - dev: true - - /nlcst-to-string/2.0.4: - resolution: {integrity: sha512-3x3jwTd6UPG7vi5k4GEzvxJ5rDA7hVUIRNHPblKuMVP9Z3xmlsd9cgLcpAMkc5uPOBna82EeshROFhsPkbnTZg==} - - /nlcst-to-string/3.1.0: - resolution: {integrity: sha512-Y8HQWKw/zrHTCnu2zcFBN1dV6vN0NUG7s5fkEj380G8tF3R+vA2KG+tDl2QoHVQCTHGHVXwoni2RQkDSFQb1PA==} - dependencies: - '@types/nlcst': 1.0.0 - - /node-domexception/1.0.0: - resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} - engines: {node: '>=10.5.0'} - dev: true - - /node-fetch/3.2.0: - resolution: {integrity: sha512-8xeimMwMItMw8hRrOl3C9/xzU49HV/yE6ORew/l+dxWimO5A4Ra8ld2rerlJvc/O7et5Z1zrWsPX43v1QBjCxw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - data-uri-to-buffer: 4.0.0 - fetch-blob: 3.1.4 - formdata-polyfill: 4.0.10 - dev: true - - /node-releases/2.0.2: - resolution: {integrity: sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==} - dev: true - - /normalize-path/3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - dev: true - - /normalize-range/0.1.2: - resolution: {integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=} - engines: {node: '>=0.10.0'} - dev: true - - /nth-check/2.0.1: - resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==} - dependencies: - boolbase: 1.0.0 - dev: true - - /object-assign/4.1.1: - resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} - engines: {node: '>=0.10.0'} - dev: true - - /object-hash/2.2.0: - resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==} - engines: {node: '>= 6'} - dev: true - - /object-inspect/1.12.0: - resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==} - dev: true - - /object-is/1.1.5: - resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - dev: true - - /object-keys/1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} - dev: true - - /object.assign/4.1.2: - resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - has-symbols: 1.0.2 - object-keys: 1.1.1 - dev: true - - /on-finished/2.3.0: - resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=} - engines: {node: '>= 0.8'} - dependencies: - ee-first: 1.1.1 - dev: true - - /once/1.4.0: - resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} - dependencies: - wrappy: 1.0.2 - dev: true - - /parent-module/1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} - dependencies: - callsites: 3.1.0 - dev: true - - /parse-entities/4.0.0: - resolution: {integrity: sha512-5nk9Fn03x3rEhGaX1FU6IDwG/k+GxLXlFAkgrbM1asuAFl3BhdQWvASaIsmwWypRNcZKHPYnIuOSfIWEyEQnPQ==} - dependencies: - '@types/unist': 2.0.6 - character-entities: 2.0.1 - character-entities-legacy: 3.0.0 - character-reference-invalid: 2.0.1 - decode-named-character-reference: 1.0.1 - is-alphanumerical: 2.0.1 - is-decimal: 2.0.1 - is-hexadecimal: 2.0.1 - dev: true - - /parse-json/5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} - dependencies: - '@babel/code-frame': 7.16.7 - error-ex: 1.3.2 - json-parse-even-better-errors: 2.3.1 - lines-and-columns: 1.2.4 - dev: true - - /parse-latin/5.0.0: - resolution: {integrity: sha512-Ht+4/+AUySMS5HKGAiQpBmkFsHSoGrj6Y83flLCa5OIBdtsVkO3UD4OtboJ0O0vZiOznH02x8qlwg9KLUVXuNg==} - dependencies: - nlcst-to-string: 2.0.4 - unist-util-modify-children: 2.0.0 - unist-util-visit-children: 1.1.4 - - /parse5/6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} - dev: true - - /path-browserify/1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} - dev: true - - /path-is-absolute/1.0.1: - resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} - engines: {node: '>=0.10.0'} - dev: true - - /path-parse/1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - dev: true - - /path-to-regexp/6.2.0: - resolution: {integrity: sha512-f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg==} - dev: true - - /path-type/4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - dev: true - - /picocolors/1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - dev: true - - /picomatch/2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - dev: true - - /postcss-js/4.0.0_postcss@8.4.7: - resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} - engines: {node: ^12 || ^14 || >= 16} - peerDependencies: - postcss: ^8.3.3 - dependencies: - camelcase-css: 2.0.1 - postcss: 8.4.7 - dev: true - - /postcss-load-config/3.1.3: - resolution: {integrity: sha512-5EYgaM9auHGtO//ljHH+v/aC/TQ5LHXtL7bQajNAUBKUVKiYE8rYpFms7+V26D9FncaGe2zwCoPQsFKb5zF/Hw==} - engines: {node: '>= 10'} - peerDependencies: - ts-node: '>=9.0.0' - peerDependenciesMeta: - ts-node: - optional: true - dependencies: - lilconfig: 2.0.4 - yaml: 1.10.2 - dev: true - - /postcss-nested/5.0.6_postcss@8.4.7: - resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==} - engines: {node: '>=12.0'} - peerDependencies: - postcss: ^8.2.14 - dependencies: - postcss: 8.4.7 - postcss-selector-parser: 6.0.9 - dev: true - - /postcss-selector-parser/6.0.9: - resolution: {integrity: sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==} - engines: {node: '>=4'} - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - dev: true - - /postcss-value-parser/4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - dev: true - - /postcss/8.4.7: - resolution: {integrity: sha512-L9Ye3r6hkkCeOETQX6iOaWZgjp3LL6Lpqm6EtgbKrgqGGteRMNb9vzBfRL96YOSu8o7x3MfIH9Mo5cPJFGrW6A==} - engines: {node: ^10 || ^12 || >=14} - dependencies: - nanoid: 3.3.1 - picocolors: 1.0.0 - source-map-js: 1.0.2 - dev: true - - /preact-render-to-string/5.1.19_preact@10.6.6: - resolution: {integrity: sha512-bj8sn/oytIKO6RtOGSS/1+5CrQyRSC99eLUnEVbqUa6MzJX5dYh7wu9bmT0d6lm/Vea21k9KhCQwvr2sYN3rrQ==} - peerDependencies: - preact: '>=10' - dependencies: - preact: 10.6.6 - pretty-format: 3.8.0 - dev: true - - /preact/10.6.6: - resolution: {integrity: sha512-dgxpTFV2vs4vizwKohYKkk7g7rmp1wOOcfd4Tz3IB3Wi+ivZzsn/SpeKJhRENSE+n8sUfsAl4S3HiCVT923ABw==} - dev: true - - /pretty-format/3.8.0: - resolution: {integrity: sha1-v77VbV6ad2ZF9LH/eqGjrE+jw4U=} - dev: true - - /prismjs/1.26.0: - resolution: {integrity: sha512-HUoH9C5Z3jKkl3UunCyiD5jwk0+Hz0fIgQ2nbwU2Oo/ceuTAQAg+pPVnfdt2TJWRVLcxKh9iuoYDUSc8clb5UQ==} - engines: {node: '>=6'} - dev: true - - /property-information/6.1.1: - resolution: {integrity: sha512-hrzC564QIl0r0vy4l6MvRLhafmUowhO/O3KgVSoXIbbA2Sz4j8HGpJc6T2cubRVwMwpdiG/vKGfhT4IixmKN9w==} - dev: true - - /queue-microtask/1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - dev: true - - /quick-lru/5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - dev: true - - /quicklink/2.2.0: - resolution: {integrity: sha512-tfleXCZvxDppyZFqSDsbkS5aKemtA0ealvguxjp3tzXHMo+pzxrWtOh+6dnYK/mXzEYM1QiNhGttcS/W/T3JXA==} - peerDependencies: - react: ^16.8.0 - react-dom: ^16.8.0 - dependencies: - route-manifest: 1.0.0 - throttles: 1.0.1 - dev: false - - /randombytes/2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} - dependencies: - safe-buffer: 5.2.1 - dev: true - - /range-parser/1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} - dev: true - - /react-dom/17.0.2_react@17.0.2: - resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==} - peerDependencies: - react: 17.0.2 - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - react: 17.0.2 - scheduler: 0.20.2 - dev: true - - /react/17.0.2: - resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} - engines: {node: '>=0.10.0'} - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - dev: true - - /readdirp/3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} - dependencies: - picomatch: 2.3.1 - dev: true - - /regexparam/1.3.0: - resolution: {integrity: sha512-6IQpFBv6e5vz1QAqI+V4k8P2e/3gRrqfCJ9FI+O1FLQTO+Uz6RXZEZOPmTJ6hlGj7gkERzY5BRCv09whKP96/g==} - engines: {node: '>=6'} - dev: false - - /rehype-autolink-headings/6.1.1: - resolution: {integrity: sha512-NMYzZIsHM3sA14nC5rAFuUPIOfg+DFmf9EY1YMhaNlB7+3kK/ZlE6kqPfuxr1tsJ1XWkTrMtMoyHosU70d35mA==} - dependencies: - '@types/hast': 2.3.4 - extend: 3.0.2 - hast-util-has-property: 2.0.0 - hast-util-heading-rank: 2.1.0 - hast-util-is-element: 2.1.2 - unified: 10.1.1 - unist-util-visit: 4.1.0 - dev: false - - /rehype-raw/6.1.1: - resolution: {integrity: sha512-d6AKtisSRtDRX4aSPsJGTfnzrX2ZkHQLE5kiUuGOeEoLpbEulFF4hj0mLPbsa+7vmguDKOVVEQdHKDSwoaIDsQ==} - dependencies: - '@types/hast': 2.3.4 - hast-util-raw: 7.2.1 - unified: 10.1.1 - dev: true - - /rehype-slug/5.0.1: - resolution: {integrity: sha512-X5v3wV/meuOX9NFcGhJvUpEjIvQl2gDvjg3z40RVprYFt7q3th4qMmYLULiu3gXvbNX1ppx+oaa6JyY1W67pTA==} - dependencies: - '@types/hast': 2.3.4 - github-slugger: 1.4.0 - hast-util-has-property: 2.0.0 - hast-util-heading-rank: 2.1.0 - hast-util-to-string: 2.0.0 - unified: 10.1.1 - unist-util-visit: 4.1.0 - dev: true - - /rehype-stringify/9.0.3: - resolution: {integrity: sha512-kWiZ1bgyWlgOxpqD5HnxShKAdXtb2IUljn3hQAhySeak6IOQPPt6DeGnsIh4ixm7yKJWzm8TXFuC/lPfcWHJqw==} - dependencies: - '@types/hast': 2.3.4 - hast-util-to-html: 8.0.3 - unified: 10.1.1 - dev: true - - /remark-autolink-headings/7.0.1: - resolution: {integrity: sha512-a1BIwoJ0cSnX+sPp5u3AFULBFWHGYBt57Fo4a+7IlGiJOQxs8b7uYAE5Iu26Ocl7Y5cvinZy3FaGVruLCKg6vA==} - dependencies: - '@types/hast': 2.3.4 - '@types/mdast': 3.0.10 - extend: 3.0.2 - unified: 10.1.1 - unist-util-visit: 4.1.0 - dev: false - - /remark-gfm/3.0.1: - resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} - dependencies: - '@types/mdast': 3.0.10 - mdast-util-gfm: 2.0.0 - micromark-extension-gfm: 2.0.1 - unified: 10.1.1 - dev: true - - /remark-parse/10.0.1: - resolution: {integrity: sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==} - dependencies: - '@types/mdast': 3.0.10 - mdast-util-from-markdown: 1.2.0 - unified: 10.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /remark-rehype/10.1.0: - resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} - dependencies: - '@types/hast': 2.3.4 - '@types/mdast': 3.0.10 - mdast-util-to-hast: 12.1.1 - unified: 10.1.1 - dev: true - - /remark-smartypants/2.0.0: - resolution: {integrity: sha512-Rc0VDmr/yhnMQIz8n2ACYXlfw/P/XZev884QU1I5u+5DgJls32o97Vc1RbK3pfumLsJomS2yy8eT4Fxj/2MDVA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - retext: 8.1.0 - retext-smartypants: 5.1.0 - unist-util-visit: 4.1.0 - - /resolve-from/4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - dev: true - - /resolve-from/5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} - dev: true - - /resolve-pkg/2.0.0: - resolution: {integrity: sha512-+1lzwXehGCXSeryaISr6WujZzowloigEofRB+dj75y9RRa/obVcYgbHJd53tdYw8pvZj8GojXaaENws8Ktw/hQ==} - engines: {node: '>=8'} - dependencies: - resolve-from: 5.0.0 - dev: true - - /resolve/1.22.0: - resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==} - hasBin: true - dependencies: - is-core-module: 2.8.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - dev: true - - /retext-latin/3.1.0: - resolution: {integrity: sha512-5MrD1tuebzO8ppsja5eEu+ZbBeUNCjoEarn70tkXOS7Bdsdf6tNahsv2bY0Z8VooFF6cw7/6S+d3yI/TMlMVVQ==} - dependencies: - '@types/nlcst': 1.0.0 - parse-latin: 5.0.0 - unherit: 3.0.0 - unified: 10.1.1 - - /retext-smartypants/5.1.0: - resolution: {integrity: sha512-P+VS0YlE96T2MRAlFHaTUhPrq1Rls+1GCvIytBvbo7wcgmRxC9xHle0/whTYpRqWirV9WaUm5mXmh1dKnskGWQ==} - dependencies: - '@types/nlcst': 1.0.0 - nlcst-to-string: 3.1.0 - unified: 10.1.1 - unist-util-visit: 4.1.0 - - /retext-stringify/3.1.0: - resolution: {integrity: sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==} - dependencies: - '@types/nlcst': 1.0.0 - nlcst-to-string: 3.1.0 - unified: 10.1.1 - - /retext/8.1.0: - resolution: {integrity: sha512-N9/Kq7YTn6ZpzfiGW45WfEGJqFf1IM1q8OsRa1CGzIebCJBNCANDRmOrholiDRGKo/We7ofKR4SEvcGAWEMD3Q==} - dependencies: - '@types/nlcst': 1.0.0 - retext-latin: 3.1.0 - retext-stringify: 3.1.0 - unified: 10.1.1 - - /reusify/1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - dev: true - - /rimraf/2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - hasBin: true - dependencies: - glob: 7.2.0 - dev: true - - /rollup/2.67.2: - resolution: {integrity: sha512-hoEiBWwZtf1QdK3jZIq59L0FJj4Fiv4RplCO4pvCRC86qsoFurWB4hKQIjoRf3WvJmk5UZ9b0y5ton+62fC7Tw==} - engines: {node: '>=10.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /route-manifest/1.0.0: - resolution: {integrity: sha512-qn0xJr4nnF4caj0erOLLAHYiNyzqhzpUbgDQcEHrmBoG4sWCDLnIXLH7VccNSxe9cWgbP2Kw/OjME+eH3CeRSA==} - engines: {node: '>= 6'} - dependencies: - regexparam: 1.3.0 - dev: false - - /run-parallel/1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - dependencies: - queue-microtask: 1.2.3 - dev: true - - /sade/1.8.1: - resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} - engines: {node: '>=6'} - dependencies: - mri: 1.2.0 - dev: true - - /safe-buffer/5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} - dev: true - - /safe-buffer/5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - dev: true - - /sander/0.5.1: - resolution: {integrity: sha1-dB4kXiMfB8r7b98PEzrfohalAq0=} - dependencies: - es6-promise: 3.3.1 - graceful-fs: 4.2.9 - mkdirp: 0.5.5 - rimraf: 2.7.1 - dev: true - - /scheduler/0.20.2: - resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - dev: true - - /section-matter/1.0.0: - resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} - engines: {node: '>=4'} - dependencies: - extend-shallow: 2.0.1 - kind-of: 6.0.3 - dev: true - - /semver/6.3.0: - resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} - hasBin: true - dev: true - - /semver/7.3.5: - resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true - - /send/0.17.2: - resolution: {integrity: sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==} - engines: {node: '>= 0.8.0'} - dependencies: - debug: 2.6.9 - depd: 1.1.2 - destroy: 1.0.4 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 0.5.2 - http-errors: 1.8.1 - mime: 1.6.0 - ms: 2.1.3 - on-finished: 2.3.0 - range-parser: 1.2.1 - statuses: 1.5.0 - dev: true - - /serialize-javascript/6.0.0: - resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} - dependencies: - randombytes: 2.1.0 - dev: true - - /setprototypeof/1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - dev: true - - /shiki/0.10.1: - resolution: {integrity: sha512-VsY7QJVzU51j5o1+DguUd+6vmCmZ5v/6gYu4vyYAhzjuNQU6P/vmSy4uQaOhvje031qQMiW0d2BwgMH52vqMng==} - dependencies: - jsonc-parser: 3.0.0 - vscode-oniguruma: 1.6.1 - vscode-textmate: 5.2.0 - dev: true - - /shorthash/0.0.2: - resolution: {integrity: sha1-WbJo7sveWQOLMNogK8+93rLEpOs=} - dev: true - - /side-channel/1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.1.1 - object-inspect: 1.12.0 - dev: true - - /slash/4.0.0: - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} - engines: {node: '>=12'} - dev: true - - /smartypants/0.1.6: - resolution: {integrity: sha512-zGXh+Q6Y3OPTLM5x2HxAIkEAj4ZcePftmIOdIYozv2T+m03Sp5R4YppczKuo6IdnSMc99U+Wgvy8Mil0eeep7g==} - hasBin: true - dev: false - - /sorcery/0.10.0: - resolution: {integrity: sha1-iukK19fLBfxZ8asMY3hF1cFaUrc=} - hasBin: true - dependencies: - buffer-crc32: 0.2.13 - minimist: 1.2.5 - sander: 0.5.1 - sourcemap-codec: 1.4.8 - dev: true - - /source-map-js/1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} - dev: true - - /source-map/0.5.7: - resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=} - engines: {node: '>=0.10.0'} - dev: true - - /source-map/0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - dev: true - - /source-map/0.7.3: - resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==} - engines: {node: '>= 8'} - dev: true - - /sourcemap-codec/1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - dev: true - - /space-separated-tokens/2.0.1: - resolution: {integrity: sha512-ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw==} - dev: true - - /sprintf-js/1.0.3: - resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} - dev: true - - /srcset-parse/1.1.0: - resolution: {integrity: sha512-JWp4cG2eybkvKA1QUHGoNK6JDEYcOnSuhzNGjZuYUPqXreDl/VkkvP2sZW7Rmh+icuCttrR9ccb2WPIazyM/Cw==} - dev: true - - /stable/0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} - dev: true - - /statuses/1.5.0: - resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=} - engines: {node: '>= 0.6'} - dev: true - - /string-width/5.1.0: - resolution: {integrity: sha512-7x54QnN21P+XL/v8SuNKvfgsUre6PXpN7mc77N3HlZv+f1SBRGmjxtOud2Z6FZ8DmdkD/IdjCaf9XXbnqmTZGQ==} - engines: {node: '>=12'} - dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 - strip-ansi: 7.0.1 - dev: true - - /string.prototype.trimend/1.0.4: - resolution: {integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - dev: true - - /string.prototype.trimstart/1.0.4: - resolution: {integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - dev: true - - /stringify-entities/4.0.2: - resolution: {integrity: sha512-MTxTVcEkorNtBbNpoFJPEh0kKdM6+QbMjLbaxmvaPMmayOXdr/AIVIIJX7FReUVweRBFJfZepK4A4AKgwuFpMQ==} - dependencies: - character-entities-html4: 2.1.0 - character-entities-legacy: 3.0.0 - dev: true - - /strip-ansi/7.0.1: - resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} - engines: {node: '>=12'} - dependencies: - ansi-regex: 6.0.1 - dev: true - - /strip-bom-string/1.0.0: - resolution: {integrity: sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=} - engines: {node: '>=0.10.0'} - dev: true - - /strip-bom/4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} - dev: true - - /strip-indent/3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} - dependencies: - min-indent: 1.0.1 - dev: true - - /strnum/1.0.5: - resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} - dev: true - - /style-to-object/0.3.0: - resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} - dependencies: - inline-style-parser: 0.1.1 - dev: true - - /supports-color/5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - dependencies: - has-flag: 3.0.0 - dev: true - - /supports-color/7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - dependencies: - has-flag: 4.0.0 - dev: true - - /supports-esm/1.0.0: - resolution: {integrity: sha512-96Am8CDqUaC0I2+C/swJ0yEvM8ZnGn4unoers/LSdE4umhX7mELzqyLzx3HnZAluq5PXIsGMKqa7NkqaeHMPcg==} - dependencies: - has-package-exports: 1.2.3 - dev: true - - /supports-preserve-symlinks-flag/1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - dev: true - - /svelte-hmr/0.14.9_svelte@3.46.4: - resolution: {integrity: sha512-bKE9+4qb4sAnA+TKHiYurUl970rjA0XmlP9TEP7K/ncyWz3m81kA4HOgmlZK/7irGK7gzZlaPDI3cmf8fp/+tg==} - peerDependencies: - svelte: '>=3.19.0' - dependencies: - svelte: 3.46.4 - dev: true - - /svelte-preprocess/4.10.3_cf58026e99187ea91aea9f9903474152: - resolution: {integrity: sha512-ttw17lJfb/dx2ZJT9sesaXT5l7mPQ9Apx1H496Kli3Hkk7orIRGpOw6rCPkRNzr6ueVPqb4vzodS5x7sBFhKHw==} - engines: {node: '>= 9.11.2'} - requiresBuild: true - peerDependencies: - '@babel/core': ^7.10.2 - coffeescript: ^2.5.1 - less: ^3.11.3 || ^4.0.0 - node-sass: '*' - postcss: ^7 || ^8 - postcss-load-config: ^2.1.0 || ^3.0.0 - pug: ^3.0.0 - sass: ^1.26.8 - stylus: ^0.55.0 - sugarss: ^2.0.0 - svelte: ^3.23.0 - typescript: ^3.9.5 || ^4.0.0 - peerDependenciesMeta: - '@babel/core': - optional: true - coffeescript: - optional: true - less: - optional: true - node-sass: - optional: true - postcss: - optional: true - postcss-load-config: - optional: true - pug: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - typescript: - optional: true - dependencies: - '@babel/core': 7.17.2 - '@types/pug': 2.0.6 - '@types/sass': 1.43.1 - detect-indent: 6.1.0 - magic-string: 0.25.7 - postcss: 8.4.7 - postcss-load-config: 3.1.3 - sorcery: 0.10.0 - strip-indent: 3.0.0 - svelte: 3.46.4 - dev: true - - /svelte/3.46.4: - resolution: {integrity: sha512-qKJzw6DpA33CIa+C/rGp4AUdSfii0DOTCzj/2YpSKKayw5WGSS624Et9L1nU1k2OVRS9vaENQXp2CVZNU+xvIg==} - engines: {node: '>= 8'} - dev: true - - /svgo/2.8.0: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} - engines: {node: '>=10.13.0'} - hasBin: true - dependencies: - '@trysound/sax': 0.2.0 - commander: 7.2.0 - css-select: 4.2.1 - css-tree: 1.1.3 - csso: 4.2.0 - picocolors: 1.0.0 - stable: 0.1.8 - dev: true - - /tailwindcss/3.0.23_autoprefixer@10.4.2: - resolution: {integrity: sha512-+OZOV9ubyQ6oI2BXEhzw4HrqvgcARY38xv3zKcjnWtMIZstEsXdI9xftd1iB7+RbOnj2HOEzkA0OyB5BaSxPQA==} - engines: {node: '>=12.13.0'} - hasBin: true - peerDependencies: - autoprefixer: ^10.0.2 - dependencies: - arg: 5.0.1 - autoprefixer: 10.4.2_postcss@8.4.7 - chalk: 4.1.2 - chokidar: 3.5.3 - color-name: 1.1.4 - cosmiconfig: 7.0.1 - detective: 5.2.0 - didyoumean: 1.2.2 - dlv: 1.1.3 - fast-glob: 3.2.11 - glob-parent: 6.0.2 - is-glob: 4.0.3 - normalize-path: 3.0.0 - object-hash: 2.2.0 - postcss: 8.4.7 - postcss-js: 4.0.0_postcss@8.4.7 - postcss-load-config: 3.1.3 - postcss-nested: 5.0.6_postcss@8.4.7 - postcss-selector-parser: 6.0.9 - postcss-value-parser: 4.2.0 - quick-lru: 5.1.1 - resolve: 1.22.0 - transitivePeerDependencies: - - ts-node - dev: true - - /throttles/1.0.1: - resolution: {integrity: sha512-fab7Xg+zELr9KOv4fkaBoe/b3L0GMGLd0IBSCn16GoE/Qx6/OfCr1eGNyEcDU2pUA79qQfZ8kPQWlRuok4YwTw==} - engines: {node: '>=6'} - dev: false - - /to-fast-properties/2.0.0: - resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=} - engines: {node: '>=4'} - dev: true - - /to-regex-range/5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} - dependencies: - is-number: 7.0.0 - dev: true - - /toidentifier/1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} - dev: true - - /trough/2.0.2: - resolution: {integrity: sha512-FnHq5sTMxC0sk957wHDzRnemFnNBvt/gSY99HzK8F7UP5WAbvP70yX5bd7CjEQkN+TjdxwI7g7lJ6podqrG2/w==} - - /ts-morph/12.2.0: - resolution: {integrity: sha512-WHXLtFDcIRwoqaiu0elAoZ/AmI+SwwDafnPKjgJmdwJ2gRVO0jMKBt88rV2liT/c6MTsXyuWbGFiHe9MRddWJw==} - dependencies: - '@ts-morph/common': 0.11.1 - code-block-writer: 10.1.1 - dev: true - - /tsconfig-resolver/3.0.1: - resolution: {integrity: sha512-ZHqlstlQF449v8glscGRXzL6l2dZvASPCdXJRWG4gHEZlUVx2Jtmr+a2zeVG4LCsKhDXKRj5R3h0C/98UcVAQg==} - dependencies: - '@types/json5': 0.0.30 - '@types/resolve': 1.20.1 - json5: 2.2.0 - resolve: 1.22.0 - strip-bom: 4.0.0 - type-fest: 0.13.1 - dev: true - - /tsm/2.2.1: - resolution: {integrity: sha512-qvJB0baPnxQJolZru11mRgGTdNlx17WqgJnle7eht3Vhb+VUR4/zFA5hFl6NqRe7m8BD9w/6yu0B2XciRrdoJA==} - engines: {node: '>=12'} - hasBin: true - dependencies: - esbuild: 0.14.21 - dev: true - - /type-fest/0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} - dev: true - - /typescript/4.5.5: - resolution: {integrity: sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - - /unbox-primitive/1.0.1: - resolution: {integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==} - dependencies: - function-bind: 1.1.1 - has-bigints: 1.0.1 - has-symbols: 1.0.2 - which-boxed-primitive: 1.0.2 - dev: true - - /unherit/3.0.0: - resolution: {integrity: sha512-UmvIQZGEc9qdLIQ8mv8/61n6PiMgfbOoASPKHpCvII5srShCQSa6jSjBjlZOR4bxt2XnT6uo6csmPKRi+zQ0Jg==} - - /unified/10.1.1: - resolution: {integrity: sha512-v4ky1+6BN9X3pQrOdkFIPWAaeDsHPE1svRDxq7YpTc2plkIqFMwukfqM+l0ewpP9EfwARlt9pPFAeWYhHm8X9w==} - dependencies: - '@types/unist': 2.0.6 - bail: 2.0.2 - extend: 3.0.2 - is-buffer: 2.0.5 - is-plain-obj: 4.0.0 - trough: 2.0.2 - vfile: 5.3.0 - - /unist-builder/3.0.0: - resolution: {integrity: sha512-GFxmfEAa0vi9i5sd0R2kcrI9ks0r82NasRq5QHh2ysGngrc6GiqD5CDf1FjPenY4vApmFASBIIlk/jj5J5YbmQ==} - dependencies: - '@types/unist': 2.0.6 - dev: true - - /unist-util-generated/2.0.0: - resolution: {integrity: sha512-TiWE6DVtVe7Ye2QxOVW9kqybs6cZexNwTwSMVgkfjEReqy/xwGpAXb99OxktoWwmL+Z+Epb0Dn8/GNDYP1wnUw==} - dev: true - - /unist-util-is/5.1.1: - resolution: {integrity: sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==} - - /unist-util-map/3.0.0: - resolution: {integrity: sha512-kyPbOAlOPZpytdyquF1g6qYpAjkpMpSPtR7TAj4SOQWSJfQ/LN+IFI2oWBvkxzhsPKxiMKZcgpp5ihZLLvNl6g==} - dependencies: - '@types/unist': 2.0.6 - dev: true - - /unist-util-modify-children/2.0.0: - resolution: {integrity: sha512-HGrj7JQo9DwZt8XFsX8UD4gGqOsIlCih9opG6Y+N11XqkBGKzHo8cvDi+MfQQgiZ7zXRUiQREYHhjOBHERTMdg==} - dependencies: - array-iterate: 1.1.4 - - /unist-util-position-from-estree/1.1.1: - resolution: {integrity: sha512-xtoY50b5+7IH8tFbkw64gisG9tMSpxDjhX9TmaJJae/XuxQ9R/Kc8Nv1eOsf43Gt4KV/LkriMy9mptDr7XLcaw==} - dependencies: - '@types/unist': 2.0.6 - dev: true - - /unist-util-position/4.0.1: - resolution: {integrity: sha512-mgy/zI9fQ2HlbOtTdr2w9lhVaiFUHWQnZrFF2EUoVOqtAUdzqMtNiD99qA5a1IcjWVR8O6aVYE9u7Z2z1v0SQA==} - dev: true - - /unist-util-remove-position/4.0.1: - resolution: {integrity: sha512-0yDkppiIhDlPrfHELgB+NLQD5mfjup3a8UYclHruTJWmY74je8g+CIFr79x5f6AkmzSwlvKLbs63hC0meOMowQ==} - dependencies: - '@types/unist': 2.0.6 - unist-util-visit: 4.1.0 - dev: true - - /unist-util-stringify-position/3.0.0: - resolution: {integrity: sha512-SdfAl8fsDclywZpfMDTVDxA2V7LjtRDTOFd44wUJamgl6OlVngsqWjxvermMYf60elWHbxhuRCZml7AnuXCaSA==} - dependencies: - '@types/unist': 2.0.6 - - /unist-util-visit-children/1.1.4: - resolution: {integrity: sha512-sA/nXwYRCQVRwZU2/tQWUqJ9JSFM1X3x7JIOsIgSzrFHcfVt6NkzDtKzyxg2cZWkCwGF9CO8x4QNZRJRMK8FeQ==} - - /unist-util-visit-parents/4.1.1: - resolution: {integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==} - dependencies: - '@types/unist': 2.0.6 - unist-util-is: 5.1.1 - dev: true - - /unist-util-visit-parents/5.1.0: - resolution: {integrity: sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==} - dependencies: - '@types/unist': 2.0.6 - unist-util-is: 5.1.1 - - /unist-util-visit/3.1.0: - resolution: {integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==} - dependencies: - '@types/unist': 2.0.6 - unist-util-is: 5.1.1 - unist-util-visit-parents: 4.1.1 - dev: true - - /unist-util-visit/4.1.0: - resolution: {integrity: sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==} - dependencies: - '@types/unist': 2.0.6 - unist-util-is: 5.1.1 - unist-util-visit-parents: 5.1.0 - - /util-deprecate/1.0.2: - resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=} - dev: true - - /util/0.12.4: - resolution: {integrity: sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==} - dependencies: - inherits: 2.0.4 - is-arguments: 1.1.1 - is-generator-function: 1.0.10 - is-typed-array: 1.1.8 - safe-buffer: 5.2.1 - which-typed-array: 1.1.7 - dev: true - - /uvu/0.5.3: - resolution: {integrity: sha512-brFwqA3FXzilmtnIyJ+CxdkInkY/i4ErvP7uV0DnUVxQcQ55reuHphorpF+tZoVHK2MniZ/VJzI7zJQoc9T9Yw==} - engines: {node: '>=8'} - hasBin: true - dependencies: - dequal: 2.0.2 - diff: 5.0.0 - kleur: 4.1.4 - sade: 1.8.1 - dev: true - - /vfile-location/4.0.1: - resolution: {integrity: sha512-JDxPlTbZrZCQXogGheBHjbRWjESSPEak770XwWPfw5mTc1v1nWGLB/apzZxsx8a0SJVfF8HK8ql8RD308vXRUw==} - dependencies: - '@types/unist': 2.0.6 - vfile: 5.3.0 - dev: true - - /vfile-message/3.1.0: - resolution: {integrity: sha512-4QJbBk+DkPEhBXq3f260xSaWtjE4gPKOfulzfMFF8ZNwaPZieWsg3iVlcmF04+eebzpcpeXOOFMfrYzJHVYg+g==} - dependencies: - '@types/unist': 2.0.6 - unist-util-stringify-position: 3.0.0 - - /vfile/5.3.0: - resolution: {integrity: sha512-Tj44nY/48OQvarrE4FAjUfrv7GZOYzPbl5OD65HxVKwLJKMPU7zmfV8cCgCnzKWnSfYG2f3pxu+ALqs7j22xQQ==} - dependencies: - '@types/unist': 2.0.6 - is-buffer: 2.0.5 - unist-util-stringify-position: 3.0.0 - vfile-message: 3.1.0 - - /vite/2.8.5: - resolution: {integrity: sha512-C/7EGNa1ugWejol6nOcd/0d8PR70Nzd+XXwsPbnNOfzZw0NN2xyXfmw/GNDHgr5fcaTSO4gjxCJCrwNhQUMhmA==} - engines: {node: '>=12.2.0'} - hasBin: true - peerDependencies: - less: '*' - sass: '*' - stylus: '*' - peerDependenciesMeta: - less: - optional: true - sass: - optional: true - stylus: - optional: true - dependencies: - esbuild: 0.14.21 - postcss: 8.4.7 - resolve: 1.22.0 - rollup: 2.67.2 - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /vscode-css-languageservice/5.1.13: - resolution: {integrity: sha512-FA0foqMzMmEoO0WJP+MjoD4dRERhKS+Ag+yBrtmWQDmw2OuZ1R/5FkvI/XdTkCpHmTD9VMczugpHRejQyTXCNQ==} - dependencies: - vscode-languageserver-textdocument: 1.0.4 - vscode-languageserver-types: 3.16.0 - vscode-nls: 5.0.0 - vscode-uri: 3.0.3 - dev: true - - /vscode-emmet-helper/2.1.2: - resolution: {integrity: sha512-Fy6UNawSgxE3Kuqi54vSXohf03iOIrp1A74ReAgzvGP9Yt7fUAvkqF6No2WAc34/w0oWAHAeqoBNqmKKWh6U5w==} - deprecated: This package has been renamed to @vscode/emmet-helper, please update to the new name - dependencies: - emmet: 2.3.6 - jsonc-parser: 2.3.1 - vscode-languageserver-textdocument: 1.0.4 - vscode-languageserver-types: 3.16.0 - vscode-nls: 5.0.0 - vscode-uri: 2.1.2 - dev: true - - /vscode-html-languageservice/3.2.0: - resolution: {integrity: sha512-aLWIoWkvb5HYTVE0kI9/u3P0ZAJGrYOSAAE6L0wqB9radKRtbJNrF9+BjSUFyCgBdNBE/GFExo35LoknQDJrfw==} - dependencies: - vscode-languageserver-textdocument: 1.0.4 - vscode-languageserver-types: 3.16.0-next.2 - vscode-nls: 5.0.0 - vscode-uri: 2.1.2 - dev: true - - /vscode-jsonrpc/6.0.0: - resolution: {integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==} - engines: {node: '>=8.0.0 || >=10.0.0'} - dev: true - - /vscode-languageserver-protocol/3.16.0: - resolution: {integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==} - dependencies: - vscode-jsonrpc: 6.0.0 - vscode-languageserver-types: 3.16.0 - dev: true - - /vscode-languageserver-textdocument/1.0.4: - resolution: {integrity: sha512-/xhqXP/2A2RSs+J8JNXpiiNVvvNM0oTosNVmQnunlKvq9o4mupHOBAnnzH0lwIPKazXKvAKsVp1kr+H/K4lgoQ==} - dev: true - - /vscode-languageserver-types/3.16.0: - resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==} - dev: true - - /vscode-languageserver-types/3.16.0-next.2: - resolution: {integrity: sha512-QjXB7CKIfFzKbiCJC4OWC8xUncLsxo19FzGVp/ADFvvi87PlmBSCAtZI5xwGjF5qE0xkLf0jjKUn3DzmpDP52Q==} - dev: true - - /vscode-languageserver/6.1.1: - resolution: {integrity: sha512-DueEpkUAkD5XTR4MLYNr6bQIp/UFR0/IPApgXU3YfCBCB08u2sm9hRCs6DxYZELkk++STPjpcjksR2H8qI3cDQ==} - hasBin: true - dependencies: - vscode-languageserver-protocol: 3.16.0 - dev: true - - /vscode-nls/5.0.0: - resolution: {integrity: sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA==} - dev: true - - /vscode-oniguruma/1.6.1: - resolution: {integrity: sha512-vc4WhSIaVpgJ0jJIejjYxPvURJavX6QG41vu0mGhqywMkQqulezEqEQ3cO3gc8GvcOpX6ycmKGqRoROEMBNXTQ==} - dev: true - - /vscode-textmate/5.2.0: - resolution: {integrity: sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ==} - dev: true - - /vscode-uri/2.1.2: - resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} - dev: true - - /vscode-uri/3.0.3: - resolution: {integrity: sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==} - dev: true - - /vue/3.2.31: - resolution: {integrity: sha512-odT3W2tcffTiQCy57nOT93INw1auq5lYLLYtWpPYQQYQOOdHiqFct9Xhna6GJ+pJQaF67yZABraH47oywkJgFw==} - dependencies: - '@vue/compiler-dom': 3.2.31 - '@vue/compiler-sfc': 3.2.31 - '@vue/runtime-dom': 3.2.31 - '@vue/server-renderer': 3.2.31_vue@3.2.31 - '@vue/shared': 3.2.31 - dev: true - - /web-namespaces/2.0.1: - resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} - dev: true - - /web-streams-polyfill/3.2.0: - resolution: {integrity: sha512-EqPmREeOzttaLRm5HS7io98goBgZ7IVz79aDvqjD0kYXLtFZTc0T/U6wHTPKyIjb+MdN7DFIIX6hgdBEpWmfPA==} - engines: {node: '>= 8'} - dev: true - - /which-boxed-primitive/1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} - dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.6 - is-string: 1.0.7 - is-symbol: 1.0.4 - dev: true - - /which-typed-array/1.1.7: - resolution: {integrity: sha512-vjxaB4nfDqwKI0ws7wZpxIlde1XrLX5uB0ZjpfshgmapJMD7jJWhZI+yToJTqaFByF0eNBcYxbjmCzoRP7CfEw==} - engines: {node: '>= 0.4'} - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-abstract: 1.19.1 - foreach: 2.0.5 - has-tostringtag: 1.0.0 - is-typed-array: 1.1.8 - dev: true - - /wrappy/1.0.2: - resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} - dev: true - - /xtend/4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} - dev: true - - /yallist/4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - dev: true - - /yaml/1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} - dev: true - - /yargs-parser/21.0.0: - resolution: {integrity: sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA==} - engines: {node: '>=12'} - dev: true - - /zod/3.11.6: - resolution: {integrity: sha512-daZ80A81I3/9lIydI44motWe6n59kRBfNzTuS2bfzVh1nAXi667TOTWWtatxyG+fwgNUiagSj/CWZwRRbevJIg==} - dev: true - - /zwitch/2.0.2: - resolution: {integrity: sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==} - dev: true diff --git a/smoke/astro.build-main/postcss.config.js b/smoke/astro.build-main/postcss.config.js deleted file mode 100644 index 006cb22a3..000000000 --- a/smoke/astro.build-main/postcss.config.js +++ /dev/null @@ -1,10 +0,0 @@ -const path = require('path') - -module.exports = { - plugins: { - tailwindcss: { - config: path.join(__dirname, 'tailwind.config.js'), // update this if your path differs! - }, - autoprefixer: {}, - }, -} \ No newline at end of file diff --git a/smoke/astro.build-main/public/_redirects b/smoke/astro.build-main/public/_redirects deleted file mode 100644 index 2478caf5a..000000000 --- a/smoke/astro.build-main/public/_redirects +++ /dev/null @@ -1,4 +0,0 @@ -# Netlify Redirects -/chat https://discord.gg/grF4GTXXYm -/play/* https://play.astro.build/play/:splat 200 -/v0.21 /blog/astro-021-release/ 301 diff --git a/smoke/astro.build-main/public/assets/blog/astro-018/lit-logo.svg b/smoke/astro.build-main/public/assets/blog/astro-018/lit-logo.svg deleted file mode 100644 index a09b15cdf..000000000 --- a/smoke/astro.build-main/public/assets/blog/astro-018/lit-logo.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/smoke/astro.build-main/public/assets/blog/astro-018/named-slots.png b/smoke/astro.build-main/public/assets/blog/astro-018/named-slots.png deleted file mode 100644 index 01c805261..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/astro-018/named-slots.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/astro-018/responsive-hydration.jpg b/smoke/astro.build-main/public/assets/blog/astro-018/responsive-hydration.jpg deleted file mode 100644 index ee98e769c..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/astro-018/responsive-hydration.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/astro-018/solid-logo-dark.svg b/smoke/astro.build-main/public/assets/blog/astro-018/solid-logo-dark.svg deleted file mode 100644 index 5917b2292..000000000 --- a/smoke/astro.build-main/public/assets/blog/astro-018/solid-logo-dark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/smoke/astro.build-main/public/assets/blog/astro-021-preview/hero.png b/smoke/astro.build-main/public/assets/blog/astro-021-preview/hero.png deleted file mode 100644 index ca9067ecf..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/astro-021-preview/hero.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/astro-021-preview/social.png b/smoke/astro.build-main/public/assets/blog/astro-021-preview/social.png deleted file mode 100644 index b1cf7b1d8..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/astro-021-preview/social.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/astro-021-release/hero.png b/smoke/astro.build-main/public/assets/blog/astro-021-release/hero.png deleted file mode 100644 index 290928c4a..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/astro-021-release/hero.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/astro-021-release/social.png b/smoke/astro.build-main/public/assets/blog/astro-021-release/social.png deleted file mode 100644 index 15957b8f1..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/astro-021-release/social.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/astro-023/social.jpg b/smoke/astro.build-main/public/assets/blog/astro-023/social.jpg deleted file mode 100644 index ee46972a2..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/astro-023/social.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/astro-netlify-social.jpg b/smoke/astro.build-main/public/assets/blog/astro-netlify-social.jpg deleted file mode 100644 index 4a926cc57..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/astro-netlify-social.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/astro-repl/astro-repl-hero.jpg b/smoke/astro.build-main/public/assets/blog/astro-repl/astro-repl-hero.jpg deleted file mode 100644 index 175d51f69..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/astro-repl/astro-repl-hero.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/astro-repl/astro-repl-screenshot.jpg b/smoke/astro.build-main/public/assets/blog/astro-repl/astro-repl-screenshot.jpg deleted file mode 100644 index 03bfb3634..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/astro-repl/astro-repl-screenshot.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/astro-repl/astro-repl-social.jpg b/smoke/astro.build-main/public/assets/blog/astro-repl/astro-repl-social.jpg deleted file mode 100644 index c7ea9e97d..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/astro-repl/astro-repl-social.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/demo-day-2021-09/discord-chat.jpg b/smoke/astro.build-main/public/assets/blog/demo-day-2021-09/discord-chat.jpg deleted file mode 100644 index 3a0fb3615..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/demo-day-2021-09/discord-chat.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/demo-day-2021-09/hero.png b/smoke/astro.build-main/public/assets/blog/demo-day-2021-09/hero.png deleted file mode 100644 index ca9067ecf..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/demo-day-2021-09/hero.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/demo-day-2021-09/social.png b/smoke/astro.build-main/public/assets/blog/demo-day-2021-09/social.png deleted file mode 100644 index cb390cc6e..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/demo-day-2021-09/social.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/blog/introducing-astro.jpg b/smoke/astro.build-main/public/assets/blog/introducing-astro.jpg deleted file mode 100644 index 08f686cbb..000000000 Binary files a/smoke/astro.build-main/public/assets/blog/introducing-astro.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/press/full-logo-dark.png b/smoke/astro.build-main/public/assets/press/full-logo-dark.png deleted file mode 100644 index 88b662213..000000000 Binary files a/smoke/astro.build-main/public/assets/press/full-logo-dark.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/press/full-logo-dark.svg b/smoke/astro.build-main/public/assets/press/full-logo-dark.svg deleted file mode 100644 index 160a2d029..000000000 --- a/smoke/astro.build-main/public/assets/press/full-logo-dark.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/smoke/astro.build-main/public/assets/press/full-logo-light.png b/smoke/astro.build-main/public/assets/press/full-logo-light.png deleted file mode 100644 index b834ccca8..000000000 Binary files a/smoke/astro.build-main/public/assets/press/full-logo-light.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/press/full-logo-light.svg b/smoke/astro.build-main/public/assets/press/full-logo-light.svg deleted file mode 100644 index 783cd13dc..000000000 --- a/smoke/astro.build-main/public/assets/press/full-logo-light.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/smoke/astro.build-main/public/assets/press/logomark-dark.png b/smoke/astro.build-main/public/assets/press/logomark-dark.png deleted file mode 100644 index 6b2f8d7cf..000000000 Binary files a/smoke/astro.build-main/public/assets/press/logomark-dark.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/press/logomark-dark.svg b/smoke/astro.build-main/public/assets/press/logomark-dark.svg deleted file mode 100644 index c534f5430..000000000 --- a/smoke/astro.build-main/public/assets/press/logomark-dark.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/smoke/astro.build-main/public/assets/press/logomark-light.png b/smoke/astro.build-main/public/assets/press/logomark-light.png deleted file mode 100644 index b77f87fc5..000000000 Binary files a/smoke/astro.build-main/public/assets/press/logomark-light.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/press/logomark-light.svg b/smoke/astro.build-main/public/assets/press/logomark-light.svg deleted file mode 100644 index afbe94eae..000000000 --- a/smoke/astro.build-main/public/assets/press/logomark-light.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/smoke/astro.build-main/public/assets/press/simple-full-logo-dark.png b/smoke/astro.build-main/public/assets/press/simple-full-logo-dark.png deleted file mode 100644 index bb6e93548..000000000 Binary files a/smoke/astro.build-main/public/assets/press/simple-full-logo-dark.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/press/simple-full-logo-dark.svg b/smoke/astro.build-main/public/assets/press/simple-full-logo-dark.svg deleted file mode 100644 index 57a8de9d7..000000000 --- a/smoke/astro.build-main/public/assets/press/simple-full-logo-dark.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/smoke/astro.build-main/public/assets/press/simple-full-logo-light.png b/smoke/astro.build-main/public/assets/press/simple-full-logo-light.png deleted file mode 100644 index 470eb0d4a..000000000 Binary files a/smoke/astro.build-main/public/assets/press/simple-full-logo-light.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/press/simple-full-logo-light.svg b/smoke/astro.build-main/public/assets/press/simple-full-logo-light.svg deleted file mode 100644 index 80cb5d01c..000000000 --- a/smoke/astro.build-main/public/assets/press/simple-full-logo-light.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/smoke/astro.build-main/public/assets/press/simple-logomark-dark.png b/smoke/astro.build-main/public/assets/press/simple-logomark-dark.png deleted file mode 100644 index 8c85cb906..000000000 Binary files a/smoke/astro.build-main/public/assets/press/simple-logomark-dark.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/press/simple-logomark-dark.svg b/smoke/astro.build-main/public/assets/press/simple-logomark-dark.svg deleted file mode 100644 index e2bf17f64..000000000 --- a/smoke/astro.build-main/public/assets/press/simple-logomark-dark.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/smoke/astro.build-main/public/assets/press/simple-logomark-light.png b/smoke/astro.build-main/public/assets/press/simple-logomark-light.png deleted file mode 100644 index c28d26d02..000000000 Binary files a/smoke/astro.build-main/public/assets/press/simple-logomark-light.png and /dev/null differ diff --git a/smoke/astro.build-main/public/assets/press/simple-logomark-light.svg b/smoke/astro.build-main/public/assets/press/simple-logomark-light.svg deleted file mode 100644 index 851e91118..000000000 --- a/smoke/astro.build-main/public/assets/press/simple-logomark-light.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/smoke/astro.build-main/public/authors/drew.jpg b/smoke/astro.build-main/public/authors/drew.jpg deleted file mode 100644 index 6d6b562ae..000000000 Binary files a/smoke/astro.build-main/public/authors/drew.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/authors/fred.jpg b/smoke/astro.build-main/public/authors/fred.jpg deleted file mode 100644 index ae8b2762d..000000000 Binary files a/smoke/astro.build-main/public/authors/fred.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/authors/jon.jpg b/smoke/astro.build-main/public/authors/jon.jpg deleted file mode 100644 index 072dbc789..000000000 Binary files a/smoke/astro.build-main/public/authors/jon.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/authors/matthew.jpg b/smoke/astro.build-main/public/authors/matthew.jpg deleted file mode 100644 index 9df387d42..000000000 Binary files a/smoke/astro.build-main/public/authors/matthew.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/authors/nate.jpg b/smoke/astro.build-main/public/authors/nate.jpg deleted file mode 100644 index 4074a07c2..000000000 Binary files a/smoke/astro.build-main/public/authors/nate.jpg and /dev/null differ diff --git a/smoke/astro.build-main/public/favicon.ico b/smoke/astro.build-main/public/favicon.ico deleted file mode 100644 index 578ad458b..000000000 Binary files a/smoke/astro.build-main/public/favicon.ico and /dev/null differ diff --git a/smoke/astro.build-main/public/favicon.svg b/smoke/astro.build-main/public/favicon.svg deleted file mode 100644 index 542f90aec..000000000 --- a/smoke/astro.build-main/public/favicon.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - diff --git a/smoke/astro.build-main/public/fonts/RTAliasMedium-Bold.woff2 b/smoke/astro.build-main/public/fonts/RTAliasMedium-Bold.woff2 deleted file mode 100644 index adaabb21d..000000000 Binary files a/smoke/astro.build-main/public/fonts/RTAliasMedium-Bold.woff2 and /dev/null differ diff --git a/smoke/astro.build-main/public/fonts/RTAliasMedium-BoldOblique.woff2 b/smoke/astro.build-main/public/fonts/RTAliasMedium-BoldOblique.woff2 deleted file mode 100644 index 352bcb1e7..000000000 Binary files a/smoke/astro.build-main/public/fonts/RTAliasMedium-BoldOblique.woff2 and /dev/null differ diff --git a/smoke/astro.build-main/public/fonts/RTAliasMedium-Regular.woff2 b/smoke/astro.build-main/public/fonts/RTAliasMedium-Regular.woff2 deleted file mode 100644 index dd764f2d1..000000000 Binary files a/smoke/astro.build-main/public/fonts/RTAliasMedium-Regular.woff2 and /dev/null differ diff --git a/smoke/astro.build-main/public/fonts/RTAliasMedium-RegularOblique.woff2 b/smoke/astro.build-main/public/fonts/RTAliasMedium-RegularOblique.woff2 deleted file mode 100644 index 981965a79..000000000 Binary files a/smoke/astro.build-main/public/fonts/RTAliasMedium-RegularOblique.woff2 and /dev/null differ diff --git a/smoke/astro.build-main/public/pixel.worklet.js b/smoke/astro.build-main/public/pixel.worklet.js deleted file mode 100644 index 4df22728e..000000000 --- a/smoke/astro.build-main/public/pixel.worklet.js +++ /dev/null @@ -1,59 +0,0 @@ -// @ts-nocheck -class Pixel { - static get inputProperties() { - return ['--border-radius', '--border-color', '--pixel-size', '--variant']; - } - paint(ctx, size, styleMap) { - ctx.fillStyle = "black"; - const variant = styleMap.get("--variant").toString().trim(); - const corner = styleMap.get("--border-radius").toString(); - const px = styleMap.get("--pixel-size").toString(); - const w = size.width; - const h = size.height; - - switch (variant) { - case 'primary': { - ctx.fillRect(corner, 0, w - corner * 2, h); - - for (let i = 0; i < Math.round(corner / px); i++) { - let v = px * i; - let x = v; - let y = corner - v; - ctx.fillRect(x, y, px, h - corner * 2 + (v * 2)); - } - for (let i = 0; i < Math.round(corner / px); i++) { - let v = px * i; - let x = w - (px * (i + 1)); - let y = corner - v; - ctx.fillRect(x, y, px, h - corner * 2 + (v * 2)); - } - return; - } - case 'outline': { - // top + right + bottom + left border - ctx.fillRect(corner, 0, w - corner * 2, px); - ctx.fillRect(w - px, corner, px, h - (corner * 2)); - ctx.fillRect(corner, h - px, w - corner * 2, px); - ctx.fillRect(0, corner, px, h - (corner * 2)); - - for (let i = 0; i < Math.round(corner / px) + 1; i++) { - let v = px * i; - let x = v; - let y = corner - v; - ctx.fillRect(x, y, px, px * 2); - ctx.fillRect(x, h - y - (px * 2), px, px * 2); - } - for (let i = 0; i < Math.round(corner / px) + 1; i++) { - let v = px * i; - let x = w - (px * (i + 1)); - let y = corner - v; - ctx.fillRect(x, y, px, px * 2); - ctx.fillRect(x, h - y - (px * 2), px, px * 2); - } - return; - } - } - } -} - -registerPaint("pixel", Pixel); diff --git a/smoke/astro.build-main/public/robots.txt b/smoke/astro.build-main/public/robots.txt deleted file mode 100644 index bdce67ff8..000000000 --- a/smoke/astro.build-main/public/robots.txt +++ /dev/null @@ -1,6 +0,0 @@ -# I, for one, welcome our new robotic overlords - -User-agent: * -Allow: / - -Sitemap: https://astro.build/sitemap.xml diff --git a/smoke/astro.build-main/public/social.png b/smoke/astro.build-main/public/social.png deleted file mode 100644 index 3faeac77c..000000000 Binary files a/smoke/astro.build-main/public/social.png and /dev/null differ diff --git a/smoke/astro.build-main/public/stars-mask.png b/smoke/astro.build-main/public/stars-mask.png deleted file mode 100644 index fe304606f..000000000 Binary files a/smoke/astro.build-main/public/stars-mask.png and /dev/null differ diff --git a/smoke/astro.build-main/public/stars.png b/smoke/astro.build-main/public/stars.png deleted file mode 100644 index 59daaa1a5..000000000 Binary files a/smoke/astro.build-main/public/stars.png and /dev/null differ diff --git a/smoke/astro.build-main/public/styles/main.css b/smoke/astro.build-main/public/styles/main.css deleted file mode 100644 index be3e37c46..000000000 --- a/smoke/astro.build-main/public/styles/main.css +++ /dev/null @@ -1,334 +0,0 @@ -@font-face { - font-family: 'RT Alias Medium'; - font-style: normal; - font-weight: 400; - src: local(''), url('/fonts/RTAliasMedium-Regular.woff2') format('woff2'); - font-display: swap; -} -@font-face { - font-family: 'RT Alias Medium'; - font-style: italic; - font-weight: 400; - src: local(''), url('/fonts/RTAliasMedium-RegularOblique.woff2') format('woff2'); - font-display: swap; -} -@font-face { - font-family: 'RT Alias Medium'; - font-style: normal; - font-weight: 700; - src: local(''), url('/fonts/RTAliasMedium-Bold.woff2') format('woff2'); - font-display: swap; -} -@font-face { - font-family: 'RT Alias Medium'; - font-style: italic; - font-weight: 700; - src: local(''), url('/fonts/RTAliasMedium-BoldOblique.woff2') format('woff2'); - font-display: swap; -} - -/** sanitize.css makes the line-height 1.5 globally, fix this for headers */ -h1,h2,h3,h4,h5,h6 { - line-height: 1.11; -} - -* { - box-sizing: border-box; - padding: 0; - margin: 0; -} - -:focus:not(:focus-visible) { - outline: none -} - -:focus-visible { - outline: 2px dashed var(--color-blue); -} - -:root { - --color-tan: #f4efed; - --color-tan-rgb: 244, 239, 237; - --color-dawn: #f3e9fa; - --color-dusk: #514375; - --color-midnight: #31274a; - --color-midnight-rgb: 49, 39, 74; - --color-blue: #205eff; - --color-red: #ff5050; - --color-yellow: #ffd542; - --color-purple: #af43ff; - --color-pink: #FDB2B7; - - --gradient-pop-1: linear-gradient(180deg, #205eff 0%, #c238bd 115%); - --gradient-pop-2: repeating-linear-gradient( - 135deg, - #ff9776 0em, - #769cff 1em, - #c238bd 2em, - #ff9776 3em - ); - --gradient-pop-3: linear-gradient(180deg, #ffb4b4 0%, #c487f0 100%); - --gradient-pop-4: linear-gradient( - 0deg, - #632cca -33%, - #62289e 10%, - #30216b 50%, - #1f1638 100% - ); - --gradient-pop-5: linear-gradient( - 180deg, - #ffd542 0%, - #ff5050 25%, - #af43ff 100% - ); - --gradient-mood: linear-gradient( - 180deg, - #d8c5ef 0%, - rgba(225, 213, 238, 0) 100% - ); - - --shadow-sm: 0px 19px 53px 0px rgba(var(--color-midnight-rgb), 0.03), - 0px 10px 28px 0px rgba(var(--color-midnight-rgb), 0.05), - 0px 6px 16px 0px rgba(var(--color-midnight-rgb), 0.05), - 0px 3px 9px 0px rgba(var(--color-midnight-rgb), 0.075), - 0px 1px 4px 0px rgba(var(--color-midnight-rgb), 0.1); - --shadow-md: 0px 2px 2px 0px rgba(var(--color-midnight-rgb), 0.04), - 0px 6px 5px 0px rgba(var(--color-midnight-rgb), 0.06), - 0px 15px 14px 0px rgba(var(--color-midnight-rgb), 0.08), - 0px 50px 46px 0px rgba(var(--color-midnight-rgb), 0.12); - --shadow-xl: 0px 3px 2px 0px rgba(var(--color-midnight-rgb), 0.02), - 0px 6px 5px 0px rgba(var(--color-midnight-rgb), 0.03), - 0px 12px 10px 0px rgba(var(--color-midnight-rgb), 0.04), - 0px 22px 18px 0px rgba(var(--color-midnight-rgb), 0.04), - 0px 42px 34px 0px rgba(var(--color-midnight-rgb), 0.05), - 0px 100px 80px 0px rgba(var(--color-midnight-rgb), 0.07); - - --blur-md: blur(10px); - --blur-xl: blur(128px); - - --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, - Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; - --font-body: var(--font-base); - --font-display: "RT Alias Medium", var(--font-base); - --font-mono: Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace; - - --corner-md: 12px; - - --size-300: clamp(0.7rem, 0.66rem + 0.2vw, 0.8rem); - --size-400: clamp(0.88rem, 0.83rem + 0.24vw, 1rem); - --size-500: clamp(1.09rem, 1rem + 0.47vw, 1.33rem); - --size-600: clamp(1.37rem, 1.21rem + 0.8vw, 1.78rem); - --size-700: clamp(1.71rem, 1.45rem + 1.29vw, 2.37rem); - --size-800: clamp(2.14rem, 1.74rem + 1.99vw, 3.16rem); - --size-900: clamp(2.67rem, 2.07rem + 3vw, 4.21rem); - --size-1000: clamp(3.34rem, 2.45rem + 4.43vw, 5.61rem); - - /* @property fallbacks */ - --border-radius: 4; - --pixel-size: 4; - --link-color-stop-a: #205eff; - --link-color-stop-b: #c238bd; - - background: var(--color-tan); -} - -body { - display: flex; - flex-direction: column; -} - -@property --border-radius { - syntax: ''; - inherits: true; - initial-value: 4; -} -@property --pixel-size { - syntax: ''; - inherits: true; - initial-value: 4; -} -@property --link-color-stop-a { - syntax: ''; - inherits: false; - initial-value: #205eff; -} -@property --link-color-stop-b { - syntax: ''; - inherits: false; - initial-value: #c238bd; -} - -a { - color: var(--color-blue); - text-decoration: none; -} -a:visited { - color: #7D4796; -} -a:is(:hover, :focus) { - text-decoration: underline; -} -a:active { - color: var(--color-purple); -} - -.logo a { - color: var(--color-midnight); -} - -small { - font-size: 0.75em; -} - -html { - font-family: var(--font-body); - color: var(--color-midnight); - min-height: 100vh; - overflow-y: auto; - overflow-x: hidden; -} - -::selection { - background: var(--color-blue); - color: white; -} - -.text-gradient::selection { - --fill: white; - color: var(--fill); - -webkit-background-clip: initial; - -webkit-text-fill-color: initial; -} - -.text-gradient { - background: var(--fill, var(--gradient-pop-1)); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; -} - -.visually-hidden { - clip: rect(0 0 0 0); - clip-path: inset(50%); - height: 1px; - overflow: hidden; - position: absolute; - white-space: nowrap; - width: 1px; -} - -.astro-container { - max-width: 40rem; - padding-left: 0.5em; - padding-right: 0.5em; - margin-left: auto; - margin-right: auto; -} - -@media (min-width: 40rem) { - .astro-container { - padding-left: 1em; - padding-right: 1em; - } -} - -@media (min-width: 52rem) { - .astro-container { - max-width: 50rem; - } -} - -@media (min-width: 64rem) { - .astro-container { - max-width: 62rem; - } -} - -@media (min-width: 82rem) { - .astro-container { - max-width: 80rem; - } -} - -@media (min-width: 92rem) { - .astro-container { - max-width: 90rem; - } -} - -.head-sm { - font-family: var(--font-display); - font-size: var(--size-600); - letter-spacing: -0.5px; - line-height: 1.2; -} - -.head-md { - font-family: var(--font-display); - font-size: var(--size-700); - letter-spacing: -0.5px; - line-height: 1.2; -} - -p, .body-md { - font-family: var(--font-body); - font-size: var(--size-500); - line-height: 1.3; -} - -.elevation-xl { - box-shadow: var(--shadow-xl); -} - -.elevation-md { - box-shadow: var(--shadow-md); -} - -.elevation-sm { - box-shadow: var(--shadow-sm); -} - -.astro-container { - width: 100%; -} - -.astro-code > code::before, -.astro-code > code::after { - content: none !important; -} - -@media (min-width: 50rem) { - #content :is(h2, h3, h4, h5, h6) a::before { - order: initial; - margin-left: -1em; - } -} - -.egg { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 10; - pointer-events: none; -} - -@keyframes bounce { - from { - background-position: 50% 100%; - } - to { - background-position: 50% calc(100% - 0.5em); - } -} - -.🥚 { - --cursor-default: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%2331274a' viewBox='0 0 128 128'%3E%3Cpath fill='%23fff' d='M3.37 0 .11.01C-.05 24.95.04 49.9 0 74.82c.05 13.23-.1 26.46.09 39.68 4.48 0 8.97.04 13.46 0 .12-1.92.15-3.86.15-5.8v-.88h.87c1.91.02 3.82 0 5.72-.01.04-1.96.18-3.92-.03-5.88l-.12-1.1 1.09.15c1.97.25 3.95.08 5.92.04.04-1.88.08-3.77.1-5.65v-.86h.87c1.49.02 2.98 0 4.47-.08l.99-.05-.08.98c-.3 4.12.39 8.24.16 12.36 1.95.06 3.89.09 5.83.1l.85.02.01.84c.04 4.18.03 8.35.1 12.52 1.92.04 3.84.06 5.76.07h.86l.01.85c.03 1.95.05 3.88.04 5.83 4.52.06 9.04.05 13.56.03.16-1.92.24-3.86.1-5.81l-.07-.96.96.03c1.91.05 3.84.03 5.73-.02.07-4.5.04-9 0-13.49-1.94-.05-3.87-.08-5.8-.1h-.84l-.01-.85c-.07-4.18-.04-8.35-.06-12.53-1.93-.07-3.88-.1-5.83-.06l-.92.03.03-.92c.07-1.62.1-3.22.09-4.82v-.87h.87c8.63-.01 17.27 0 25.91-.1.06-4.48.07-8.96-.01-13.44-1.94 0-3.88-.02-5.82-.05h-.85v-.85c-.03-1.94-.05-3.89-.04-5.83a252.3 252.3 0 0 0-5.8-.07h-.85l-.01-.85c-.03-1.93-.04-3.85-.08-5.78-1.93-.09-3.87-.14-5.82-.12l-.88.01v-.88a567 567 0 0 0-.03-5.84 226 226 0 0 1-5.83-.04l-.85-.02v-.85c0-1.9-.02-3.8-.07-5.71-1.92-.1-3.85-.12-5.78-.13h-.86v-.86c-.04-1.94-.06-3.88-.05-5.83-1.95 0-3.89-.02-5.83-.05l-.82-.01-.04-.83c-.07-1.94-.14-3.9-.15-5.84-1.9-.04-3.8-.05-5.7-.05h-.85l-.02-.85a170.8 170.8 0 0 1-.05-5.82c-1.95-.02-3.89-.03-5.83-.06l-.83-.01-.03-.83c-.07-1.94-.1-3.88-.1-5.84-1.94-.04-3.87-.05-5.8-.06h-.86l-.01-.86c-.01-1.93-.03-3.87-.07-5.8l-5.84-.03-.84-.01-.01-.85-.04-5.83c-1.94-.06-3.9-.04-5.86-.03h-.86v-.86A162 162 0 0 0 6.63.01L3.37 0Z'/%3E%3Cpath d='M.1.02C2.3-.01 4.48 0 6.66.02c.1 2.22.14 4.45.14 6.68 2.24-.02 4.48-.02 6.71.05 0 2.22.01 4.45.04 6.67-2.26-.02-4.51-.01-6.77 0-.01 31.42.07 62.83.04 94.25 2.23.02 4.46.03 6.68-.02-.02-2.22 0-4.44.01-6.66 2.23-.03 4.48-.23 6.69.17.36 2.2.16 4.44.1 6.65-2.18.03-4.37.05-6.56.02.02 2.23-.04 4.46-.18 6.68-4.48.03-8.97-.01-13.46 0-.18-13.23-.03-26.46-.08-39.69C.05 49.9-.05 24.96.11.03Z'/%3E%3Cpath d='m13.54 13.42 6.69.04c.05 2.21.06 4.43.08 6.65 2.22 0 4.44.02 6.66.07 0 2.22 0 4.45.11 6.67 2.23.04 4.45.05 6.68.07-.02 2.22 0 4.44.06 6.66 2.19 0 4.38.01 6.57.07 0 2.22.1 4.44.17 6.66 2.21.04 4.44.05 6.66.06-.01 2.22 0 4.44.04 6.66 2.22 0 4.44.03 6.65.15.07 2.2.09 4.38.09 6.58 2.22.06 4.44.07 6.66.06.02 2.22.04 4.45.04 6.68-2.25.12-4.5.1-6.75.04v-6.69c-2.25-.03-4.51-.02-6.77 0 .03-2.26.04-4.51 0-6.76h-6.7l.02-6.7c-2.26-.05-4.52-.04-6.77 0 0-2.26.01-4.52-.01-6.77h-6.7c-.03-2.24-.02-4.49-.04-6.73-2.25 0-4.49 0-6.73-.05.02-2.23.02-4.45 0-6.68-2.22-.02-4.44-.02-6.66 0-.07-2.25-.06-4.5-.05-6.74ZM60.7 60.5a93.2 93.2 0 0 1 6.69.14c.04 2.2.06 4.42.09 6.62 2.22 0 4.43.02 6.65.08-.01 2.22 0 4.45.04 6.68 2.22.03 4.45.05 6.67.05.08 4.48.07 8.95.02 13.43-8.93.1-17.86.1-26.78.12 0 2.2.02 4.4-.1 6.59-2.25.11-4.5.08-6.76.07-.06-4.5-.06-8.99 0-13.48 8.97-.05 17.95.03 26.92-.01.03-2.25.03-4.5 0-6.74-2.24-.02-4.5-.01-6.73-.05v-6.68a296.6 296.6 0 0 0-6.67 0c-.09-2.27-.09-4.54-.04-6.82ZM27 87.48c2.23-.02 4.46-.01 6.69 0 .08 2.3.18 4.62-.13 6.91-2.1.17-4.2.15-6.3.12 0 2.17-.05 4.34-.1 6.51-2.23.05-4.49.28-6.7-.14-.46-2.18-.24-4.44-.2-6.65l6.7-.01c0-2.25 0-4.5.04-6.74Zm6.56 6.92c2.3-.26 4.6-.18 6.9-.14.06 4.47.01 8.95.04 13.43 2.24 0 4.49 0 6.73.04.02 4.46-.04 8.92.03 13.38 4.5.07 9-.14 13.5.12.26 2.24.12 4.5-.07 6.75-4.52.02-9.03.04-13.55-.02 0-2.23-.01-4.45-.06-6.68-2.2 0-4.42-.03-6.63-.07-.07-4.46-.05-8.92-.1-13.37a270.1 270.1 0 0 1-6.67-.12c.24-4.45-.64-8.9-.12-13.33Z'/%3E%3Cpath d='M53.98 94.2a79.3 79.3 0 0 1 6.72.05c.02 4.45-.03 8.91.05 13.38 2.22.02 4.43.04 6.65.1.05 4.5.08 9 .01 13.5-2.21.05-4.44.1-6.65 0-.25-4.48-.04-8.97-.09-13.45-2.25-.05-4.5-.04-6.76-.06 0-4.5-.05-9.01.07-13.51Z'/%3E%3C/svg%3E%0A") 0 0, default; - --cursor-pointer: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%2331274a' viewBox='0 0 128 128'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23fff' d='M29.14.42a426.8 426.8 0 0 0-.05 5.06l-.01.71-.7.03c-1.7.05-3.38.07-5.08.08-.09 17.14-.04 34.27-.04 51.4v.74l-.74.01c-1.42.02-2.86.03-4.29.07l-.77.01v-.77c.04-1.67.03-3.35-.01-5.01-5.81-.05-11.63-.08-17.44.02 0 5.79-.02 11.58 0 17.37 1.68.03 3.39.1 5.1-.01l.92-.07-.14.93c-.24 1.67-.08 3.36-.07 5.04 1.6.08 3.23.1 4.85.1h.7l.05.69c.27 3.58.14 7.17.2 10.77 1.67.07 3.35.1 5.03.11l.73.01v.73c.03 3.6.02 7.18.08 10.77 1.69.03 3.38.11 5.09.01l.86-.05-.07.85c-.28 3.6-.04 7.21-.07 10.81 1.65.03 3.29.06 4.93.07h.74v.73c.08 5.55.05 11.1.12 16.65 9.57.13 19.15.15 28.73.14 9.8-.02 19.6.06 29.41-.17-.15-5.53.34-11.06.11-16.59l-.02-.8.79.03c1.64.04 3.3.01 4.93-.04.06-5.5.07-11 .07-16.51v-.68l.67-.07c1.68-.16 3.36-.17 5.05-.16.04-6.16-.07-12.32.12-18.48v-.03c-.2-7.4-.06-14.81-.15-22.22-1.66.01-3.32 0-4.97-.03h-.72l-.02-.73a135.9 135.9 0 0 1-.02-4.91c-1.7-.05-3.4 0-5.1-.1l-.64-.03-.05-.66c-.12-1.7-.06-3.41-.09-5.13-3.6-.02-7.22.01-10.82-.04h-.73l-.01-.74c-.03-1.63-.05-3.26-.03-4.9-5.54-.29-11.1-.1-16.64-.16l-.71-.01-.03-.7c-.07-1.68-.1-3.37-.1-5.06-3.6-.02-7.2 0-10.8-.07l-.73-.02v-.72c-.08-7.46-.04-14.92-.06-22.38a371.76 371.76 0 0 0-5.03 0h-.77l.01-.76c.03-1.72.02-3.43-.14-5.13-3.81.01-7.62.02-11.43 0Z'/%3E%3Cpath d='M29.13.42c3.81.02 7.63.01 11.44 0 .18 1.92.17 3.84.14 5.75-3.88.04-7.75 0-11.63.04.02-1.93.02-3.86.05-5.79ZM23.3 6.3c1.93-.01 3.86 0 5.78-.09 0 21.32.04 42.63.02 63.95-1.94.04-3.88.04-5.83 0-.03-1.9-.03-3.82 0-5.73-1.94-.08-3.87-.07-5.8-.06a81.5 81.5 0 0 1 0-5.85c1.93-.07 3.86-.05 5.79-.08 0-17.38-.05-34.76.04-52.14Zm17.43 0c1.92-.02 3.84 0 5.77.01.02 7.7-.03 15.42.05 23.12 3.85.1 7.7.05 11.54.07 0 1.92 0 3.84.11 5.77 5.79.09 11.59-.14 17.37.16-.02 1.88-.01 3.76.03 5.64 3.85.07 7.71.02 11.57.04.02 1.93-.1 3.87.1 5.8 1.92.16 3.84.06 5.76.12-.03 1.88-.01 3.76.04 5.64 1.9.03 3.8.05 5.7.03.09 7.42-.06 14.83.15 22.23-.2 6.17-.08 12.34-.12 18.5a43.63 43.63 0 0 0-5.72.22c0 5.73-.01 11.47-.07 17.2-1.9.06-3.82.12-5.72.03-.21-5.83-.11-11.67-.06-17.51 1.92.02 3.84.02 5.76 0L93 52.72c-1.92-.03-3.83-.02-5.75 0-.1-1.89.02-3.78-.13-5.66-1.9-.37-3.85-.15-5.77-.15-.04 5.8.07 11.62-.04 17.44h-5.7c-.13-7.75 0-15.5-.04-23.26-3.89-.02-7.78 0-11.66 0 0 5.81.06 11.62 0 17.43-1.93.04-3.86.04-5.78 0-.04-7.75-.04-15.5.05-23.24-3.89-.02-7.78-.03-11.67.02-.04 7.74.03 15.48 0 23.22-1.94.05-3.9.06-5.84 0 0-17.4.02-34.8.05-52.21ZM0 52.76c5.82-.1 11.64-.06 17.45-.01.04 1.92.07 3.84.02 5.77-3.86.1-7.71.02-11.57.05-.14 3.84.2 7.7-.05 11.53-1.95.22-3.9.07-5.85.03V52.76Zm6 17.47c1.87-.3 3.77-.18 5.65-.13.04 1.94.04 3.88.02 5.82 1.95.01 3.88 0 5.82.03.05 3.87 0 7.73.03 11.6 1.91-.02 3.83-.01 5.75.01-.03 3.88.25 7.79-.14 11.64-1.9.17-3.79.04-5.67 0-.06-3.82-.05-7.65-.09-11.48-1.92-.01-3.84-.05-5.76-.13-.06-3.81.13-7.63-.22-11.44a115 115 0 0 1-5.57-.12c0-1.94-.26-3.9.18-5.8Z'/%3E%3Cpath d='M23.39 99.23c1.9-.15 3.8-.06 5.7-.05.06 3.86.01 7.71.02 11.57 1.94-.01 3.88-.01 5.82.06.03 3.85-.04 7.71.02 11.57 15.46.04 30.92.03 46.38.02.06-3.86-.01-7.72.03-11.58 1.98-.03 3.95-.05 5.93.06.32 5.78-.25 11.57-.09 17.37-9.8.23-19.6.15-29.4.16-9.59.01-19.16 0-28.73-.13-.08-5.8-.04-11.59-.13-17.37-1.89 0-3.78-.04-5.67-.07.03-3.87-.28-7.77.12-11.61Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h128v128H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") 8 0, pointer; - - cursor: var(--cursor-default); -} - -.🥚 :is(a, button, input[type="checkbox"]) { - cursor: var(--cursor-pointer); -} diff --git a/smoke/astro.build-main/public/styles/sanitize.css b/smoke/astro.build-main/public/styles/sanitize.css deleted file mode 100644 index 53de7e951..000000000 --- a/smoke/astro.build-main/public/styles/sanitize.css +++ /dev/null @@ -1,356 +0,0 @@ -/* Document - * ========================================================================== */ - -/** - * 1. Add border box sizing in all browsers (opinionated). - * 2. Backgrounds do not repeat by default (opinionated). - */ - -*, -::before, -::after { - box-sizing: border-box; /* 1 */ - background-repeat: no-repeat; /* 2 */ -} - -/** - * 1. Add text decoration inheritance in all browsers (opinionated). - * 2. Add vertical alignment inheritance in all browsers (opinionated). - */ - -::before, -::after { - text-decoration: inherit; /* 1 */ - vertical-align: inherit; /* 2 */ -} - -/** - * 1. Use the default cursor in all browsers (opinionated). - * 2. Change the line height in all browsers (opinionated). - * 3. Breaks words to prevent overflow in all browsers (opinionated). - * 4. Use a 4-space tab width in all browsers (opinionated). - * 5. Remove the grey highlight on links in iOS (opinionated). - * 6. Prevent adjustments of font size after orientation changes in iOS. - */ - -:where(:root) { - cursor: default; /* 1 */ - line-height: 1.5; /* 2 */ - overflow-wrap: break-word; /* 3 */ - -moz-tab-size: 4; /* 4 */ - tab-size: 4; /* 4 */ - -webkit-tap-highlight-color: transparent; /* 5 */ - -webkit-text-size-adjust: 100%; /* 6 */ - text-size-adjust: 100%; /* 6 */ -} - -/* Sections - * ========================================================================== */ - -/** - * Remove the margin in all browsers (opinionated). - */ - -:where(body) { - margin: 0; -} - -/** - * Correct the font size and margin on `h1` elements within `section` and - * `article` contexts in Chrome, Edge, Firefox, and Safari. - */ - -:where(h1) { - font-size: 2em; - margin: 0.67em 0; -} - -/* Grouping content - * ========================================================================== */ - -/** - * Remove the margin on nested lists in Chrome, Edge, and Safari. - */ - -:where(dl, ol, ul) :where(dl, ol, ul) { - margin: 0; -} - -/** - * 1. Correct the inheritance of border color in Firefox. - * 2. Add the correct box sizing in Firefox. - */ - -:where(hr) { - color: inherit; /* 1 */ - height: 0; /* 2 */ -} - -/** - * Remove the list style on navigation lists in all browsers (opinionated). - */ - -:where(nav) :where(ol, ul) { - list-style-type: none; - padding: 0; -} - -/** - * Prevent VoiceOver from ignoring list semantics in Safari (opinionated). - */ - -:where(nav li)::before { - content: "\200B"; - float: left; -} - -/** - * 1. Correct the inheritance and scaling of font size in all browsers. - * 2. Correct the odd `em` font sizing in all browsers. - * 3. Prevent overflow of the container in all browsers (opinionated). - */ - -:where(pre) { - font-family: monospace, monospace; /* 1 */ - font-size: 1em; /* 2 */ - overflow: auto; /* 3 */ -} - -/* Text-level semantics - * ========================================================================== */ - -/** - * Add the correct text decoration in Safari. - */ - -:where(abbr[title]) { - text-decoration: underline; - text-decoration: underline dotted; -} - -/** - * Add the correct font weight in Chrome, Edge, and Safari. - */ - -:where(b, strong) { - font-weight: bolder; -} - -/** - * 1. Correct the inheritance and scaling of font size in all browsers. - * 2. Correct the odd `em` font sizing in all browsers. - */ - -:where(code, kbd, samp) { - font-family: monospace, monospace; /* 1 */ - font-size: 1em; /* 2 */ -} - -/** - * Add the correct font size in all browsers. - */ - -:where(small) { - font-size: 80%; -} - -/* Embedded content - * ========================================================================== */ - -/* - * Change the alignment on media elements in all browsers (opinionated). - */ - -:where(audio, canvas, iframe, img, svg, video) { - vertical-align: middle; -} - -/** - * Remove the border on iframes in all browsers (opinionated). - */ - -:where(iframe) { - border-style: none; -} - -/** - * Change the fill color to match the text color in all browsers (opinionated). - */ - -:where(svg:not([fill])) { - fill: currentColor; -} - -/* Tabular data - * ========================================================================== */ - -/** - * 1. Collapse border spacing in all browsers (opinionated). - * 2. Correct table border color in Chrome, Edge, and Safari. - * 3. Remove text indentation from table contents in Chrome, Edge, and Safari. - */ - -:where(table) { - border-collapse: collapse; /* 1 */ - border-color: currentColor; /* 2 */ - text-indent: 0; /* 3 */ -} - -/* Forms - * ========================================================================== */ - -/** - * Remove the margin on controls in Safari. - */ - -:where(button, input, select) { - margin: 0; -} - -/** - * Correct the inability to style buttons in iOS and Safari. - */ - -:where(button, [type="button" i], [type="reset" i], [type="submit" i]) { - -webkit-appearance: button; -} - -/** - * Change the inconsistent appearance in all browsers (opinionated). - */ - -:where(fieldset) { - border: 1px solid #a0a0a0; -} - -/** - * Add the correct vertical alignment in Chrome, Edge, and Firefox. - */ - -:where(progress) { - vertical-align: baseline; -} - -/** - * 1. Remove the margin in Firefox and Safari. - * 3. Change the resize direction in all browsers (opinionated). - */ - -:where(textarea) { - margin: 0; /* 1 */ - resize: vertical; /* 3 */ -} - -/** - * 1. Correct the odd appearance in Chrome, Edge, and Safari. - * 2. Correct the outline style in Safari. - */ - -:where([type="search" i]) { - -webkit-appearance: textfield; /* 1 */ - outline-offset: -2px; /* 2 */ -} - -/** - * Correct the cursor style of increment and decrement buttons in Safari. - */ - -::-webkit-inner-spin-button, -::-webkit-outer-spin-button { - height: auto; -} - -/** - * Correct the text style of placeholders in Chrome, Edge, and Safari. - */ - -::-webkit-input-placeholder { - color: inherit; - opacity: 0.54; -} - -/** - * Remove the inner padding in Chrome, Edge, and Safari on macOS. - */ - -::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** - * 1. Correct the inability to style upload buttons in iOS and Safari. - * 2. Change font properties to `inherit` in Safari. - */ - -::-webkit-file-upload-button { - -webkit-appearance: button; /* 1 */ - font: inherit; /* 2 */ -} - -/* Interactive - * ========================================================================== */ - -/* - * Add the correct styles in Safari. - */ - -:where(dialog) { - background-color: white; - border: solid; - color: black; - height: -moz-fit-content; - height: fit-content; - left: 0; - margin: auto; - padding: 1em; - position: absolute; - right: 0; - width: -moz-fit-content; - width: fit-content; -} - -:where(dialog:not([open])) { - display: none; -} - -/* - * Add the correct display in Safari. - */ - -:where(details > summary:first-of-type) { - display: list-item; -} - -/* Accessibility - * ========================================================================== */ - -/** - * Change the cursor on busy elements in all browsers (opinionated). - */ - -:where([aria-busy="true" i]) { - cursor: progress; -} - -/* - * Change the cursor on disabled, not-editable, or otherwise - * inoperable elements in all browsers (opinionated). - */ - -:where([aria-disabled="true" i], [disabled]) { - cursor: not-allowed; -} - -/* - * Change the display on visually hidden accessible elements - * in all browsers (opinionated). - */ - -:where([aria-hidden="false" i][hidden]) { - display: initial; -} - -:where([aria-hidden="false" i][hidden]:not(:focus)) { - clip: rect(0, 0, 0, 0); - position: absolute; -} diff --git a/smoke/astro.build-main/src/components/ArrowLink.astro b/smoke/astro.build-main/src/components/ArrowLink.astro deleted file mode 100644 index fdeee15ce..000000000 --- a/smoke/astro.build-main/src/components/ArrowLink.astro +++ /dev/null @@ -1,62 +0,0 @@ ---- -import { Sprite } from 'astro-icon'; - -const { icon, href, title, always = false } = Astro.props; ---- - - - {icon && - - diff --git a/smoke/astro.build-main/src/components/Author.astro b/smoke/astro.build-main/src/components/Author.astro deleted file mode 100644 index 1ec072cc3..000000000 --- a/smoke/astro.build-main/src/components/Author.astro +++ /dev/null @@ -1,57 +0,0 @@ ---- -import { Sprite } from 'astro-icon'; -import { mentions } from '../mentions.ts'; -const { name } = Astro.props; - -const author = mentions[name]; -if (!author) { - throw new Error(`Could not find author "${name}"!`) -} ---- - - - - {author.name} - - - - - - - - diff --git a/smoke/astro.build-main/src/components/Banner.astro b/smoke/astro.build-main/src/components/Banner.astro deleted file mode 100644 index 9b427d2cf..000000000 --- a/smoke/astro.build-main/src/components/Banner.astro +++ /dev/null @@ -1,170 +0,0 @@ ---- -const { href, items = [] } = Astro.props; -const Tag = href ? 'a' : 'div'; ---- - - - - - {Array.from({ length: 6 }, (_, i) => 0 ? 'true' : undefined}>{items.map(item => {item})})} - - - - - - - - - \ No newline at end of file diff --git a/smoke/astro.build-main/src/components/BaseHead.astro b/smoke/astro.build-main/src/components/BaseHead.astro deleted file mode 100644 index ad56df507..000000000 --- a/smoke/astro.build-main/src/components/BaseHead.astro +++ /dev/null @@ -1,52 +0,0 @@ ---- -import { smartypants } from 'smartypants'; - -export interface Props { - title?: string; - description?: string; - canonicalURL?: URL | string - image?: string; -} -const { canonicalURL = Astro.request.canonicalURL } = Astro.props; -const image = new URL(Astro.props.image || './social.png', Astro.site); -const description = Astro.props.description || 'Astro is a new kind of static site builder for the modern web. Powerful developer experience meets lightweight output.'; - -const title = [Astro.props.title, 'Astro'] - .filter(Boolean) - .join(' | ') ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/smoke/astro.build-main/src/components/Blockquote.astro b/smoke/astro.build-main/src/components/Blockquote.astro deleted file mode 100644 index e3185fd78..000000000 --- a/smoke/astro.build-main/src/components/Blockquote.astro +++ /dev/null @@ -1,48 +0,0 @@ - - -
- - -
-

- -
-
- - diff --git a/smoke/astro.build-main/src/components/Checklist.astro b/smoke/astro.build-main/src/components/Checklist.astro deleted file mode 100644 index f340ae9f5..000000000 --- a/smoke/astro.build-main/src/components/Checklist.astro +++ /dev/null @@ -1,43 +0,0 @@ ---- -const { cols = 2 } = Astro.props; ---- - -
    - -
- - \ No newline at end of file diff --git a/smoke/astro.build-main/src/components/ChecklistItem.astro b/smoke/astro.build-main/src/components/ChecklistItem.astro deleted file mode 100644 index 988f31f9f..000000000 --- a/smoke/astro.build-main/src/components/ChecklistItem.astro +++ /dev/null @@ -1,62 +0,0 @@ ---- -import { Sprite } from 'astro-icon' -const { href } = Astro.props; -const Wrapper = href ? 'a' : Fragment; -const wrapperProps = href ? { href, target: '_blank', rel: 'noopener noreferrer' } : {}; ---- - -
  • - - - - - - -
  • - - diff --git a/smoke/astro.build-main/src/components/ContributorAvatar.astro b/smoke/astro.build-main/src/components/ContributorAvatar.astro deleted file mode 100644 index 24debe31f..000000000 --- a/smoke/astro.build-main/src/components/ContributorAvatar.astro +++ /dev/null @@ -1,61 +0,0 @@ ---- -const {obj, size, type} = Astro.props; -let color, label; -switch (type) { - case 'staff': - color= 'var(--color-red)'; - label= 'Staff'; - break; - case 'l3': - color= 'var(--color-purple)'; - label= 'Core'; - break; - case 'l2': - color= 'var(--color-blue)'; - label= 'Maintainer'; - break; - default: - color = 'none'; - break; -} ---- - -
    -
    -
    -
    - {label &&
    {label}
    } -
    - - \ No newline at end of file diff --git a/smoke/astro.build-main/src/components/ContributorsAvatarList.astro b/smoke/astro.build-main/src/components/ContributorsAvatarList.astro deleted file mode 100644 index 03f086bba..000000000 --- a/smoke/astro.build-main/src/components/ContributorsAvatarList.astro +++ /dev/null @@ -1,31 +0,0 @@ ---- -import ContributorAvatar from './ContributorAvatar.astro'; -import ArrowLink from '../components/ArrowLink.astro'; -import contributors from '../data/contributors.json'; - -export interface Props { - id?: string; -} - -const { id } = Astro.props as Props; - -const {staff, l3, l2, l1} = contributors; ---- -
      - {staff.map(obj =>
    • )} - {l3.map(obj =>
    • )} - {l2.map(obj =>
    • )} - {l1.map(obj =>
    • )} - See all 200+ contributors - -
    - \ No newline at end of file diff --git a/smoke/astro.build-main/src/components/Date.astro b/smoke/astro.build-main/src/components/Date.astro deleted file mode 100644 index b1503952f..000000000 --- a/smoke/astro.build-main/src/components/Date.astro +++ /dev/null @@ -1,21 +0,0 @@ ---- -import { parse, startOfDay, intlFormat, formatISO } from 'date-fns'; - -const { value } = Astro.props; -let date; -if (typeof value === 'string') { - date = parse(value, 'MMMM d, yyyy', new Date()); -} else { - date = value; -} -const dateISO = formatISO(startOfDay(date), { representation: 'date' }); -const dateFormatted = intlFormat(date, { - year: 'numeric', - month: 'long', - day: 'numeric', -}, { - locale: 'en-US', -}) ---- - - diff --git a/smoke/astro.build-main/src/components/Footer.astro b/smoke/astro.build-main/src/components/Footer.astro deleted file mode 100644 index e1c3df687..000000000 --- a/smoke/astro.build-main/src/components/Footer.astro +++ /dev/null @@ -1,230 +0,0 @@ ---- -import { Sprite } from 'astro-icon'; -import Quote from './landing/Quote.astro'; -import Grid from './landing/Grid.astro'; -import Community from './landing/Community.astro'; - -import { social } from '../config.ts'; - -const { quote } = Astro.slots; -const YYYY = new Date().getFullYear(); ---- - -
    -
    -
    - -
    - - {!quote && } - - {quote && ( - - - - - - - - )} - -
    - -
    -
    - - diff --git a/smoke/astro.build-main/src/components/Header.astro b/smoke/astro.build-main/src/components/Header.astro deleted file mode 100644 index c829b34aa..000000000 --- a/smoke/astro.build-main/src/components/Header.astro +++ /dev/null @@ -1,7 +0,0 @@ ---- -import SkipLink from './SkipLink.astro'; -// import { getStars } from '../utils.ts'; ---- - - - diff --git a/smoke/astro.build-main/src/components/Mention.astro b/smoke/astro.build-main/src/components/Mention.astro deleted file mode 100644 index 53c90be20..000000000 --- a/smoke/astro.build-main/src/components/Mention.astro +++ /dev/null @@ -1,57 +0,0 @@ ---- -import { mentions } from '../mentions.ts'; -const { name } = Astro.props; - -const mention = mentions[name]; -if (!mention) { - throw new Error(`Could not find mentioned user "${name}"!`) -} ---- - - - - - {mention.name} - - - - diff --git a/smoke/astro.build-main/src/components/Nav.astro b/smoke/astro.build-main/src/components/Nav.astro deleted file mode 100644 index 8f200ac4c..000000000 --- a/smoke/astro.build-main/src/components/Nav.astro +++ /dev/null @@ -1,205 +0,0 @@ ---- -import { Sprite } from 'astro-icon'; -import { social } from '../config.ts'; - -const { invert = false, marginBottom = false } = Astro.props; - -const items = [ - { href: '/blog', title: 'Blog' }, - { href: 'https://docs.astro.build', title: 'Docs' }, - { href: '/play', title: 'Playground', hiddenMobile: true } -] ---- - - - - - - \ No newline at end of file diff --git a/smoke/astro.build-main/src/components/Noscript.astro b/smoke/astro.build-main/src/components/Noscript.astro deleted file mode 100644 index db03b8aed..000000000 --- a/smoke/astro.build-main/src/components/Noscript.astro +++ /dev/null @@ -1,38 +0,0 @@ - - - \ No newline at end of file diff --git a/smoke/astro.build-main/src/components/Note.astro b/smoke/astro.build-main/src/components/Note.astro deleted file mode 100644 index 1b20ee38d..000000000 --- a/smoke/astro.build-main/src/components/Note.astro +++ /dev/null @@ -1,57 +0,0 @@ ---- -export interface Props { - title?: string; - type?: 'tip' | 'warning' | 'error'; -} -const { type = 'tip', title } = Astro.props; ---- - - - - diff --git a/smoke/astro.build-main/src/components/Panel.astro b/smoke/astro.build-main/src/components/Panel.astro deleted file mode 100644 index 46f86142d..000000000 --- a/smoke/astro.build-main/src/components/Panel.astro +++ /dev/null @@ -1,59 +0,0 @@ ---- -const { class: className, background = 'color-tan', offset = 0, size = "lg", elevation = "xl", pad = 1 } = Astro.props; -let style = `--pad: ${pad}; `; -if (offset !== 0) { - style += `--offset-block: ${offset};` -} ---- - -
    -
    - {Astro.slots.title &&
    - -
    } - -
    -
    - - diff --git a/smoke/astro.build-main/src/components/PixelLink.astro b/smoke/astro.build-main/src/components/PixelLink.astro deleted file mode 100644 index f5d200b49..000000000 --- a/smoke/astro.build-main/src/components/PixelLink.astro +++ /dev/null @@ -1,175 +0,0 @@ ---- -const { class: className = '', href } = Astro.props; -// Wrap in because Houdini is disabled for a[href] for security - -const { variant = 'primary' } = Astro.props; -const { before, after } = Astro.slots; ---- - - - - - - - - - - - - - diff --git a/smoke/astro.build-main/src/components/Shell.astro b/smoke/astro.build-main/src/components/Shell.astro deleted file mode 100644 index 09d4e0aeb..000000000 --- a/smoke/astro.build-main/src/components/Shell.astro +++ /dev/null @@ -1,28 +0,0 @@ ---- -export interface Props { - code: string; -} -const { code } = Astro.props; ---- - -
    {String(code).trim().split('\n').map(
    -  line => {
    -    line.startsWith('#') ? {line} : line
    -  })
    -}
    - - diff --git a/smoke/astro.build-main/src/components/SkipLink.astro b/smoke/astro.build-main/src/components/SkipLink.astro deleted file mode 100644 index d94652cfd..000000000 --- a/smoke/astro.build-main/src/components/SkipLink.astro +++ /dev/null @@ -1,44 +0,0 @@ -Skip to main content - - \ No newline at end of file diff --git a/smoke/astro.build-main/src/components/Starfield.astro b/smoke/astro.build-main/src/components/Starfield.astro deleted file mode 100644 index 51ed5ed5d..000000000 --- a/smoke/astro.build-main/src/components/Starfield.astro +++ /dev/null @@ -1,33 +0,0 @@ ---- -const { height = 50 } = Astro.props; ---- - -
    - - diff --git a/smoke/astro.build-main/src/components/Tweet.astro b/smoke/astro.build-main/src/components/Tweet.astro deleted file mode 100644 index 1d9f32889..000000000 --- a/smoke/astro.build-main/src/components/Tweet.astro +++ /dev/null @@ -1,14 +0,0 @@ ---- -import Panel from './Panel.astro' ---- - - - - - - diff --git a/smoke/astro.build-main/src/components/Wrapper.astro b/smoke/astro.build-main/src/components/Wrapper.astro deleted file mode 100644 index 10e5edf94..000000000 --- a/smoke/astro.build-main/src/components/Wrapper.astro +++ /dev/null @@ -1,9 +0,0 @@ -
    - -
    - - diff --git a/smoke/astro.build-main/src/components/blocks/PanelBlock.astro b/smoke/astro.build-main/src/components/blocks/PanelBlock.astro deleted file mode 100644 index 25967037b..000000000 --- a/smoke/astro.build-main/src/components/blocks/PanelBlock.astro +++ /dev/null @@ -1,5 +0,0 @@ -
    -
    - -
    -
    \ No newline at end of file diff --git a/smoke/astro.build-main/src/components/blocks/ProseBlock.astro b/smoke/astro.build-main/src/components/blocks/ProseBlock.astro deleted file mode 100644 index 6c5d71047..000000000 --- a/smoke/astro.build-main/src/components/blocks/ProseBlock.astro +++ /dev/null @@ -1,3 +0,0 @@ -
    - -
    \ No newline at end of file diff --git a/smoke/astro.build-main/src/components/blocks/TitleBlock.astro b/smoke/astro.build-main/src/components/blocks/TitleBlock.astro deleted file mode 100644 index 71027ddab..000000000 --- a/smoke/astro.build-main/src/components/blocks/TitleBlock.astro +++ /dev/null @@ -1,10 +0,0 @@ -
    -
    -

    - -

    -
    - -
    -
    -
    \ No newline at end of file diff --git a/smoke/astro.build-main/src/components/blog/Card.astro b/smoke/astro.build-main/src/components/blog/Card.astro deleted file mode 100644 index 8110ad4f9..000000000 --- a/smoke/astro.build-main/src/components/blog/Card.astro +++ /dev/null @@ -1,106 +0,0 @@ ---- -import DateTime from '../../components/Date.astro'; -import Author from '../../components/Author.astro'; -import { smartypants } from 'smartypants'; - -const { post = {}, variant = 'summary' } = Astro.props; -const Title = variant === 'summary' ? 'h2' : 'h1'; ---- - -
    - - - <div class="authors"> - <h3>Written by</h3> - <ul role="list"> - {post.authors.map(author => ( - <li><Author name={author} /></li> - ))} - </ul> - </div> - - <div class="date"> - <h3>Published on</h3> - <p><DateTime value={post.publishDate} /></p> - </div> -</div> - -<style> -.wrapper { - width: 100%; - max-width: 48rem; - margin: 0 auto; - display: flex; - flex-flow: row wrap; - --space: 0.5rem; -} -@media (min-width: 40rem) { - .wrapper { - --space: 1rem; - } -} -.title { - font-family: var(--font-display); - margin: 0 auto; - flex-grow: 1; - width: 100%; - line-height: 1.1; -} -h1.title { - font-size: var(--size-800); -} -h2.title { - --fill: var(--color-dusk); - font-size: var(--size-600); -} -.description { - flex-grow: 1; - width: 100%; - margin-top: var(--space); -} -.description > p { - max-width: 48ch; -} -.post > div { - margin-top: calc(var(--space) * 2); -} -.authors { - flex-grow: 2; - width: 100%; -} -@media (min-width: 50rem) { - .authors { - width: initial; - } -} -.authors ul { - display: flex; - flex-flow: column nowrap; - list-style: none; -} -.authors ul > li + li { - margin-top: 0.5rem; -} -.date { - flex-grow: 1; -} -h3 { - margin: 0; - margin-bottom: var(--size-300); - font-family: var(--font-display); - font-size: var(--size-300); - font-weight: 700; - color: var(--color-dusk); - text-transform: uppercase; - letter-spacing: 1px; -} -.date, .authors { - margin-top: calc(var(--space) * 2); - font-size: var(--size-400); -} -:is(.date, .authors) p { - margin: 0; - font-size: inherit; - height: 2rem; -} -</style> diff --git a/smoke/astro.build-main/src/components/blog/Outro.astro b/smoke/astro.build-main/src/components/blog/Outro.astro deleted file mode 100644 index 6d4f8d1be..000000000 --- a/smoke/astro.build-main/src/components/blog/Outro.astro +++ /dev/null @@ -1,58 +0,0 @@ ---- -import { Sprite } from 'astro-icon'; - -const { tweet: { title, href } } = Astro.props; ---- - -<section class="outro"> - <div class="astro-container container"> - <div class="content"> - <a class="return" href="/blog"> - <Sprite pack="mdi" name="arrow-left" size="32" aria-hidden="true" /> - <span>Return to Blog</span> - </a> - <a class="share-on-twitter" title="Share on Twitter" href={`https://twitter.com/intent/tweet?text=${encodeURIComponent(title)}&url=${encodeURIComponent(href)}&via=astrodotbuild`}> - <Sprite pack="mdi" name="twitter" size="16" /> - <span>Share</span> - </a> - </div> - </div> -</section> - -<style> - .outro { - padding: 4rem 0 0; - width: 100%; - } - .content { - display: flex; - align-items: center; - justify-content: space-between; - max-width: 48rem; - padding: 0; - margin: 0 auto; - } - .return { - display: flex; - align-items: center; - justify-content: center; - font-size: var(--size-600); - font-family: var(--font-display); - color: var(--color-purple); - gap: 0.25em; - } - .share-on-twitter { - background: var(--color-blue); - color: white; - display: flex; - align-items: center; - justify-content: center; - padding: 0.25em 0.5em; - gap: 0.25em; - } - @media (min-width: 52rem) { - .outro { - padding: 8rem 0 0; - } - } -</style> diff --git a/smoke/astro.build-main/src/components/careers/Card.astro b/smoke/astro.build-main/src/components/careers/Card.astro deleted file mode 100644 index 0e2614880..000000000 --- a/smoke/astro.build-main/src/components/careers/Card.astro +++ /dev/null @@ -1,88 +0,0 @@ ---- -import { smartypants } from 'smartypants'; - -const { career = {}, variant = 'summary' } = Astro.props; -const Title = variant === 'summary' ? 'h2' : 'h1'; ---- - -<div class="wrapper"> - <Title class="title text-gradient">{smartypants(career.title, 1)} -
    -

    {career.description}

    -
    -
    - - diff --git a/smoke/astro.build-main/src/components/landing/Award.astro b/smoke/astro.build-main/src/components/landing/Award.astro deleted file mode 100644 index 4b3617670..000000000 --- a/smoke/astro.build-main/src/components/landing/Award.astro +++ /dev/null @@ -1,33 +0,0 @@ ---- -import Section from './Section.astro'; -import Panel from '../Panel.astro'; ---- - -
    - -
    -
    -

    -
    - -
    -
    -
    -
    -
    - - diff --git a/smoke/astro.build-main/src/components/landing/Community.astro b/smoke/astro.build-main/src/components/landing/Community.astro deleted file mode 100644 index 2e47e0256..000000000 --- a/smoke/astro.build-main/src/components/landing/Community.astro +++ /dev/null @@ -1,71 +0,0 @@ ---- -import Section from './Section.astro'; -import Title from './Title.astro'; -import ArrowLink from '../ArrowLink.astro'; -import Panel from '../Panel.astro'; -import { social } from '../../config.ts'; - -const { style } = Astro.props; ---- - -
    - - -

    <slot name="title">Connect with Astro</slot>

    -
    - -

    Learn more about Astro, get support, and meet thousands of other devs in our Discord community!

    -
    -
    -
    - - -
    -
    - - diff --git a/smoke/astro.build-main/src/components/landing/Demo.astro b/smoke/astro.build-main/src/components/landing/Demo.astro deleted file mode 100644 index 3a7be869d..000000000 --- a/smoke/astro.build-main/src/components/landing/Demo.astro +++ /dev/null @@ -1,68 +0,0 @@ ---- -import Section from './Section.astro'; -const { reverse, gradient = false } = Astro.props; ---- -
    -
    -
    -

    - -
    - -
    x).join(' ')}> - -
    -
    -
    - - diff --git a/smoke/astro.build-main/src/components/landing/DemoIllustration.astro b/smoke/astro.build-main/src/components/landing/DemoIllustration.astro deleted file mode 100644 index fe538f785..000000000 --- a/smoke/astro.build-main/src/components/landing/DemoIllustration.astro +++ /dev/null @@ -1,166 +0,0 @@ ---- -import { Sprite } from 'astro-icon'; - -const { before, after, name } = Astro.props; ---- - - - diff --git a/smoke/astro.build-main/src/components/landing/DemoPartialHydration.astro b/smoke/astro.build-main/src/components/landing/DemoPartialHydration.astro deleted file mode 100644 index 1dd005e83..000000000 --- a/smoke/astro.build-main/src/components/landing/DemoPartialHydration.astro +++ /dev/null @@ -1,177 +0,0 @@ ---- -import Illustration from './DemoIllustration.astro'; ---- - - - -
    -
    -
    -
      - {[0, 1, 2].map((i) => { - return ( -
    • -
      - - - -
      - -
      -
      - -
    • - ) - })} -
    -
    -
    - -
    -
    -
    -
      - {[0, 1, 2].map((i) => { - return ( -
    • -
      - - - -
      - -
      -
      - -
    • - ) - })} -
    -
    -
    -
    - - - diff --git a/smoke/astro.build-main/src/components/landing/DemoTTI.astro b/smoke/astro.build-main/src/components/landing/DemoTTI.astro deleted file mode 100644 index 6068e01ae..000000000 --- a/smoke/astro.build-main/src/components/landing/DemoTTI.astro +++ /dev/null @@ -1,206 +0,0 @@ ---- -import Illustration from './DemoIllustration.astro'; ---- - - - -
    - - - -
    -
    - - - - - - - - - -
    -
    -
    -
    - - -
    - - - -
    -
    - - - - - - - - - -
    -
    -
    -
    - - - - - diff --git a/smoke/astro.build-main/src/components/landing/Grid.astro b/smoke/astro.build-main/src/components/landing/Grid.astro deleted file mode 100644 index f7d169c55..000000000 --- a/smoke/astro.build-main/src/components/landing/Grid.astro +++ /dev/null @@ -1,82 +0,0 @@ ---- -const { class: className } = Astro.props; ---- - -
    -
    - {Array.from({ length: 10 }, (_, i) =>
    )} -
    - - diff --git a/smoke/astro.build-main/src/components/landing/Hero.astro b/smoke/astro.build-main/src/components/landing/Hero.astro deleted file mode 100644 index d3c1ef6c3..000000000 --- a/smoke/astro.build-main/src/components/landing/Hero.astro +++ /dev/null @@ -1,206 +0,0 @@ ---- -import Grid from './Grid.astro'; ---- -
    -
    -
    -
    -
    -
    - -
    -

    -

    -
    - -
    -
    -
    - - diff --git a/smoke/astro.build-main/src/components/landing/Integrations.astro b/smoke/astro.build-main/src/components/landing/Integrations.astro deleted file mode 100644 index 9c5946f92..000000000 --- a/smoke/astro.build-main/src/components/landing/Integrations.astro +++ /dev/null @@ -1,89 +0,0 @@ ---- -import Section from './Section.astro'; -import { Icon } from 'astro-icon'; - -const rows = [ - ['tailwindcss', 'sass', 'postcss', 'markdown', 'javascript', 'typescript'], - ['rss', 'wordpress', 'strapi', 'prismic', 'shopify'], - ['contentful', 'netlify-grid', 'vercel-grid', 'cloudflare', 'github'], -] ---- - -
    -
    -

    -
    - -
    -
    -
      - {rows.map(row => row.map(icon =>
    • ))} -
    -
    - - diff --git a/smoke/astro.build-main/src/components/landing/Performance.astro b/smoke/astro.build-main/src/components/landing/Performance.astro deleted file mode 100644 index 7156fa637..000000000 --- a/smoke/astro.build-main/src/components/landing/Performance.astro +++ /dev/null @@ -1,148 +0,0 @@ ---- -import Section from './Section.astro'; -import Panel from '../Panel.astro'; -import Starfield from '../Starfield.astro'; - -const tweet = { - content: 'Rebuilt my Next.js blog using Astro out of curiosity… holy shit the difference in bundle size.', - href: 'https://twitter.com/t3dotgg/status/1437195415439360003', -} ---- - -
    - -
    -
    -

    -
    - -
    -
    - -
    -
    - - diff --git a/smoke/astro.build-main/src/components/landing/Quote.astro b/smoke/astro.build-main/src/components/landing/Quote.astro deleted file mode 100644 index 6a78e6530..000000000 --- a/smoke/astro.build-main/src/components/landing/Quote.astro +++ /dev/null @@ -1,83 +0,0 @@ ---- -import Section from './Section.astro'; -const { pad = 1, background, blobs = true, color } = Astro.props; ---- - -
    - {blobs &&
    } - - -
    -

    - -
    -
    - - diff --git a/smoke/astro.build-main/src/components/landing/Section.astro b/smoke/astro.build-main/src/components/landing/Section.astro deleted file mode 100644 index 63506c859..000000000 --- a/smoke/astro.build-main/src/components/landing/Section.astro +++ /dev/null @@ -1,19 +0,0 @@ ---- -const { class: className = '', style: _style, pad = 1, ...props } = Astro.props; -let style; -if (_style) { - style = `${_style}; --pad: ${pad};` -} else { - style = `--pad: ${pad};` -} ---- -
    - -
    - - diff --git a/smoke/astro.build-main/src/components/landing/Sponsors.astro b/smoke/astro.build-main/src/components/landing/Sponsors.astro deleted file mode 100644 index f417c1f13..000000000 --- a/smoke/astro.build-main/src/components/landing/Sponsors.astro +++ /dev/null @@ -1,184 +0,0 @@ ---- -// SEE https://developers.google.com/search/docs/advanced/guidelines/qualify-outbound-links for rel="sponsored" info -import { Icon } from 'astro-icon'; -import Section from './Section.astro'; - -const exclusive = [ - { name: 'netlify', title: 'Netlify', href: 'https://netlify.com', width: '240', height: '64' }, -] -const gold = [ - { name: 'vercel', title: 'Vercel', href: 'https://vercel.com', width: '180', height: '48' }, - { name: 'divriots', title: '‹div›RIOTS', href: 'https://divriots.com', width: '192', height: '48' }, - { name: 'stackup', title: 'StackUp Digital', href: 'https://stackupdigital.co.uk/', width: '162', height: '40' } -] -const users = await fetch(`https://opencollective.com/astrodotbuild/members.json`).then(res => res.json()); - -const skipTier = new Set(['Platinum Sponsor', 'Gold Sponsor']); -function isUser(user) { - return user.role === 'BACKER' && !skipTier.has(user.tier); -} -function getUser(user) { - return { - name: user.name, - image: user.image, - initials: user.name.split(' ').slice(0, 2).map(word => word[0].toUpperCase()).join(''), - href: user.website ?? user.twitter ?? user.github - }; -}; - -const individuals = users.filter(user => isUser(user)).map(user => getUser(user)).sort(() => 0.5 - Math.random()); ---- - - - - diff --git a/smoke/astro.build-main/src/components/landing/Title.astro b/smoke/astro.build-main/src/components/landing/Title.astro deleted file mode 100644 index 8cc5aa60a..000000000 --- a/smoke/astro.build-main/src/components/landing/Title.astro +++ /dev/null @@ -1,30 +0,0 @@ ---- -const { id } = Astro.props; - -if (!id) { - throw new Error(` requires an "id" prop! Recieved ${typeof id}`); -} ---- - -<a href={`#${id}`} id={id}> - <slot /> -</a> - -<style> -a { - font: inherit; - color: inherit; - text-decoration: none; -} -a::after { - content: "#"; - color: inherit; - opacity: 0; - transition: opacity 200ms cubic-bezier(0.23, 1, 0.320, 1); -} -a:active::after, -a:hover::after, -a:focus::after { - opacity: 0.6; -} -</style> diff --git a/smoke/astro.build-main/src/components/landing/Trusted.astro b/smoke/astro.build-main/src/components/landing/Trusted.astro deleted file mode 100644 index 1fb5a7586..000000000 --- a/smoke/astro.build-main/src/components/landing/Trusted.astro +++ /dev/null @@ -1,69 +0,0 @@ ---- -import Panel from '../Panel.astro' -import Section from './Section.astro' ---- - -<Section id="trusted"> - <Panel background="var(--color-dawn)" offset={4}> - <Fragment slot="title"> - <h3 class="head-sm"><slot name="title" /></h3> - </Fragment> - - <ul class="logos"> - <slot /> - </ul> - </Panel> -</Section> - -<style> -#trusted { - background: linear-gradient(to bottom, #D8C5EF 0%, #E5DAEE 100%); - padding-top: 0; -} -.logos { - margin: 0; - padding: 0; - width: 100%; - list-style: none; - display: grid; - grid-template-columns: repeat(1, minmax(0, 1fr)); - gap: 1.5rem; - color: var(--color-dusk); -} -@media (min-width: 32rem) { - .logos { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - * :global(li:last-child) { - grid-column: auto / span 2; - } -} -@media (min-width: 64rem) { - .logos { - grid-auto-flow: column; - max-width: max-content; - margin: 0 auto; - gap: 3rem; - grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); - } - * :global(li:last-child) { - grid-column: auto / auto; - } - - .logos :global(svg) { - height: 2.25rem; - } -} -@media (min-width: 82rem) { - .logos :global(svg) { - height: 2.5rem; - } -} -.logos > :global(li) { - display: flex; - align-items: center; - justify-content: center; - text-align: center; - width: 100%; -} -</style> diff --git a/smoke/astro.build-main/src/config.ts b/smoke/astro.build-main/src/config.ts deleted file mode 100644 index 4c875c8e2..000000000 --- a/smoke/astro.build-main/src/config.ts +++ /dev/null @@ -1,17 +0,0 @@ -export const social = [ - { - icon: 'mdi:github', - title: 'Github', - href: 'https://github.com/withastro/astro' - }, - { - icon: 'fa-brands:discord', - title: 'Discord', - href: 'https://astro.build/chat' - }, - { - icon: 'mdi:twitter', - title: '@astrodotbuild', - href: 'https://twitter.com/astrodotbuild' - }, -] diff --git a/smoke/astro.build-main/src/data/contributors.json b/smoke/astro.build-main/src/data/contributors.json deleted file mode 100644 index e8727bc46..000000000 --- a/smoke/astro.build-main/src/data/contributors.json +++ /dev/null @@ -1 +0,0 @@ -{"staff":[{"login":"matthewp","id":361671,"node_id":"MDQ6VXNlcjM2MTY3MQ==","avatar_url":"https://avatars.githubusercontent.com/u/361671?u=c680fb6956a57c3a1d03f06c7f8f03cc7daed958&v=4","gravatar_id":"","url":"https://api.github.com/users/matthewp","html_url":"https://github.com/matthewp","followers_url":"https://api.github.com/users/matthewp/followers","following_url":"https://api.github.com/users/matthewp/following{/other_user}","gists_url":"https://api.github.com/users/matthewp/gists{/gist_id}","starred_url":"https://api.github.com/users/matthewp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matthewp/subscriptions","organizations_url":"https://api.github.com/users/matthewp/orgs","repos_url":"https://api.github.com/users/matthewp/repos","events_url":"https://api.github.com/users/matthewp/events{/privacy}","received_events_url":"https://api.github.com/users/matthewp/received_events","type":"User","site_admin":false},{"login":"FredKSchott","id":622227,"node_id":"MDQ6VXNlcjYyMjIyNw==","avatar_url":"https://avatars.githubusercontent.com/u/622227?u=39d62cec7d70bd7ffa9162b8e4f0e616773a1c4e&v=4","gravatar_id":"","url":"https://api.github.com/users/FredKSchott","html_url":"https://github.com/FredKSchott","followers_url":"https://api.github.com/users/FredKSchott/followers","following_url":"https://api.github.com/users/FredKSchott/following{/other_user}","gists_url":"https://api.github.com/users/FredKSchott/gists{/gist_id}","starred_url":"https://api.github.com/users/FredKSchott/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/FredKSchott/subscriptions","organizations_url":"https://api.github.com/users/FredKSchott/orgs","repos_url":"https://api.github.com/users/FredKSchott/repos","events_url":"https://api.github.com/users/FredKSchott/events{/privacy}","received_events_url":"https://api.github.com/users/FredKSchott/received_events","type":"User","site_admin":false},{"login":"natemoo-re","id":7118177,"node_id":"MDQ6VXNlcjcxMTgxNzc=","avatar_url":"https://avatars.githubusercontent.com/u/7118177?u=bb2518ed3d5b34846e6e778845e42b9564c15f5a&v=4","gravatar_id":"","url":"https://api.github.com/users/natemoo-re","html_url":"https://github.com/natemoo-re","followers_url":"https://api.github.com/users/natemoo-re/followers","following_url":"https://api.github.com/users/natemoo-re/following{/other_user}","gists_url":"https://api.github.com/users/natemoo-re/gists{/gist_id}","starred_url":"https://api.github.com/users/natemoo-re/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/natemoo-re/subscriptions","organizations_url":"https://api.github.com/users/natemoo-re/orgs","repos_url":"https://api.github.com/users/natemoo-re/repos","events_url":"https://api.github.com/users/natemoo-re/events{/privacy}","received_events_url":"https://api.github.com/users/natemoo-re/received_events","type":"User","site_admin":false},{"login":"tony-sull","id":15836226,"node_id":"MDQ6VXNlcjE1ODM2MjI2","avatar_url":"https://avatars.githubusercontent.com/u/15836226?u=e0c9a5ae2f3029bd3855984c10fe43b142f85662&v=4","gravatar_id":"","url":"https://api.github.com/users/tony-sull","html_url":"https://github.com/tony-sull","followers_url":"https://api.github.com/users/tony-sull/followers","following_url":"https://api.github.com/users/tony-sull/following{/other_user}","gists_url":"https://api.github.com/users/tony-sull/gists{/gist_id}","starred_url":"https://api.github.com/users/tony-sull/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tony-sull/subscriptions","organizations_url":"https://api.github.com/users/tony-sull/orgs","repos_url":"https://api.github.com/users/tony-sull/repos","events_url":"https://api.github.com/users/tony-sull/events{/privacy}","received_events_url":"https://api.github.com/users/tony-sull/received_events","type":"User","site_admin":false}],"l3":[{"login":"jasikpark","id":10626596,"node_id":"MDQ6VXNlcjEwNjI2NTk2","avatar_url":"https://avatars.githubusercontent.com/u/10626596?u=3999fca039ad975665b73dd4636deb5f60f8774e&v=4","gravatar_id":"","url":"https://api.github.com/users/jasikpark","html_url":"https://github.com/jasikpark","followers_url":"https://api.github.com/users/jasikpark/followers","following_url":"https://api.github.com/users/jasikpark/following{/other_user}","gists_url":"https://api.github.com/users/jasikpark/gists{/gist_id}","starred_url":"https://api.github.com/users/jasikpark/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jasikpark/subscriptions","organizations_url":"https://api.github.com/users/jasikpark/orgs","repos_url":"https://api.github.com/users/jasikpark/repos","events_url":"https://api.github.com/users/jasikpark/events{/privacy}","received_events_url":"https://api.github.com/users/jasikpark/received_events","type":"User","site_admin":false}],"l2":[{"login":"drwpow","id":1369770,"node_id":"MDQ6VXNlcjEzNjk3NzA=","avatar_url":"https://avatars.githubusercontent.com/u/1369770?u=cd06c5ebc19ada3e4001f63594c0b0b688f51749&v=4","gravatar_id":"","url":"https://api.github.com/users/drwpow","html_url":"https://github.com/drwpow","followers_url":"https://api.github.com/users/drwpow/followers","following_url":"https://api.github.com/users/drwpow/following{/other_user}","gists_url":"https://api.github.com/users/drwpow/gists{/gist_id}","starred_url":"https://api.github.com/users/drwpow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/drwpow/subscriptions","organizations_url":"https://api.github.com/users/drwpow/orgs","repos_url":"https://api.github.com/users/drwpow/repos","events_url":"https://api.github.com/users/drwpow/events{/privacy}","received_events_url":"https://api.github.com/users/drwpow/received_events","type":"User","site_admin":false},{"login":"Princesseuh","id":3019731,"node_id":"MDQ6VXNlcjMwMTk3MzE=","avatar_url":"https://avatars.githubusercontent.com/u/3019731?u=04567b942bb08706dd513f34f4cd7e90d8ada8d4&v=4","gravatar_id":"","url":"https://api.github.com/users/Princesseuh","html_url":"https://github.com/Princesseuh","followers_url":"https://api.github.com/users/Princesseuh/followers","following_url":"https://api.github.com/users/Princesseuh/following{/other_user}","gists_url":"https://api.github.com/users/Princesseuh/gists{/gist_id}","starred_url":"https://api.github.com/users/Princesseuh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Princesseuh/subscriptions","organizations_url":"https://api.github.com/users/Princesseuh/orgs","repos_url":"https://api.github.com/users/Princesseuh/repos","events_url":"https://api.github.com/users/Princesseuh/events{/privacy}","received_events_url":"https://api.github.com/users/Princesseuh/received_events","type":"User","site_admin":false},{"login":"sarah11918","id":5098874,"node_id":"MDQ6VXNlcjUwOTg4NzQ=","avatar_url":"https://avatars.githubusercontent.com/u/5098874?u=ccca39db686ffcaaaf629ccfcc4bc0ed5b9bfdf8&v=4","gravatar_id":"","url":"https://api.github.com/users/sarah11918","html_url":"https://github.com/sarah11918","followers_url":"https://api.github.com/users/sarah11918/followers","following_url":"https://api.github.com/users/sarah11918/following{/other_user}","gists_url":"https://api.github.com/users/sarah11918/gists{/gist_id}","starred_url":"https://api.github.com/users/sarah11918/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sarah11918/subscriptions","organizations_url":"https://api.github.com/users/sarah11918/orgs","repos_url":"https://api.github.com/users/sarah11918/repos","events_url":"https://api.github.com/users/sarah11918/events{/privacy}","received_events_url":"https://api.github.com/users/sarah11918/received_events","type":"User","site_admin":false},{"login":"4lch4","id":6931731,"node_id":"MDQ6VXNlcjY5MzE3MzE=","avatar_url":"https://avatars.githubusercontent.com/u/6931731?u=14e464d62116a196492e624d18886e920b333c74&v=4","gravatar_id":"","url":"https://api.github.com/users/4lch4","html_url":"https://github.com/4lch4","followers_url":"https://api.github.com/users/4lch4/followers","following_url":"https://api.github.com/users/4lch4/following{/other_user}","gists_url":"https://api.github.com/users/4lch4/gists{/gist_id}","starred_url":"https://api.github.com/users/4lch4/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/4lch4/subscriptions","organizations_url":"https://api.github.com/users/4lch4/orgs","repos_url":"https://api.github.com/users/4lch4/repos","events_url":"https://api.github.com/users/4lch4/events{/privacy}","received_events_url":"https://api.github.com/users/4lch4/received_events","type":"User","site_admin":false},{"login":"Hanawa02","id":11237366,"node_id":"MDQ6VXNlcjExMjM3MzY2","avatar_url":"https://avatars.githubusercontent.com/u/11237366?u=6569a250d46a7f49d051e24dfd1346fa879428ee&v=4","gravatar_id":"","url":"https://api.github.com/users/Hanawa02","html_url":"https://github.com/Hanawa02","followers_url":"https://api.github.com/users/Hanawa02/followers","following_url":"https://api.github.com/users/Hanawa02/following{/other_user}","gists_url":"https://api.github.com/users/Hanawa02/gists{/gist_id}","starred_url":"https://api.github.com/users/Hanawa02/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Hanawa02/subscriptions","organizations_url":"https://api.github.com/users/Hanawa02/orgs","repos_url":"https://api.github.com/users/Hanawa02/repos","events_url":"https://api.github.com/users/Hanawa02/events{/privacy}","received_events_url":"https://api.github.com/users/Hanawa02/received_events","type":"User","site_admin":false},{"login":"antonyfaris","id":11766500,"node_id":"MDQ6VXNlcjExNzY2NTAw","avatar_url":"https://avatars.githubusercontent.com/u/11766500?u=49d4dcbbd0122ba39bbea50914caa7cd229a1f69&v=4","gravatar_id":"","url":"https://api.github.com/users/antonyfaris","html_url":"https://github.com/antonyfaris","followers_url":"https://api.github.com/users/antonyfaris/followers","following_url":"https://api.github.com/users/antonyfaris/following{/other_user}","gists_url":"https://api.github.com/users/antonyfaris/gists{/gist_id}","starred_url":"https://api.github.com/users/antonyfaris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/antonyfaris/subscriptions","organizations_url":"https://api.github.com/users/antonyfaris/orgs","repos_url":"https://api.github.com/users/antonyfaris/repos","events_url":"https://api.github.com/users/antonyfaris/events{/privacy}","received_events_url":"https://api.github.com/users/antonyfaris/received_events","type":"User","site_admin":false},{"login":"itskitto","id":12174733,"node_id":"MDQ6VXNlcjEyMTc0NzMz","avatar_url":"https://avatars.githubusercontent.com/u/12174733?u=1e2b88ee2daa8135eded6bb241a1e66dbd8da94f&v=4","gravatar_id":"","url":"https://api.github.com/users/itskitto","html_url":"https://github.com/itskitto","followers_url":"https://api.github.com/users/itskitto/followers","following_url":"https://api.github.com/users/itskitto/following{/other_user}","gists_url":"https://api.github.com/users/itskitto/gists{/gist_id}","starred_url":"https://api.github.com/users/itskitto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/itskitto/subscriptions","organizations_url":"https://api.github.com/users/itskitto/orgs","repos_url":"https://api.github.com/users/itskitto/repos","events_url":"https://api.github.com/users/itskitto/events{/privacy}","received_events_url":"https://api.github.com/users/itskitto/received_events","type":"User","site_admin":false},{"login":"okikio","id":17222836,"node_id":"MDQ6VXNlcjE3MjIyODM2","avatar_url":"https://avatars.githubusercontent.com/u/17222836?u=b696fe47b2581f8718ce0f4b7459e4683fd3f4fd&v=4","gravatar_id":"","url":"https://api.github.com/users/okikio","html_url":"https://github.com/okikio","followers_url":"https://api.github.com/users/okikio/followers","following_url":"https://api.github.com/users/okikio/following{/other_user}","gists_url":"https://api.github.com/users/okikio/gists{/gist_id}","starred_url":"https://api.github.com/users/okikio/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/okikio/subscriptions","organizations_url":"https://api.github.com/users/okikio/orgs","repos_url":"https://api.github.com/users/okikio/repos","events_url":"https://api.github.com/users/okikio/events{/privacy}","received_events_url":"https://api.github.com/users/okikio/received_events","type":"User","site_admin":false},{"login":"aFuzzyBear","id":28299972,"node_id":"MDQ6VXNlcjI4Mjk5OTcy","avatar_url":"https://avatars.githubusercontent.com/u/28299972?u=5fe8dc6332303d008c096cc64c79a2cb7bd0c369&v=4","gravatar_id":"","url":"https://api.github.com/users/aFuzzyBear","html_url":"https://github.com/aFuzzyBear","followers_url":"https://api.github.com/users/aFuzzyBear/followers","following_url":"https://api.github.com/users/aFuzzyBear/following{/other_user}","gists_url":"https://api.github.com/users/aFuzzyBear/gists{/gist_id}","starred_url":"https://api.github.com/users/aFuzzyBear/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aFuzzyBear/subscriptions","organizations_url":"https://api.github.com/users/aFuzzyBear/orgs","repos_url":"https://api.github.com/users/aFuzzyBear/repos","events_url":"https://api.github.com/users/aFuzzyBear/events{/privacy}","received_events_url":"https://api.github.com/users/aFuzzyBear/received_events","type":"User","site_admin":false},{"login":"MarcusOtter","id":35617441,"node_id":"MDQ6VXNlcjM1NjE3NDQx","avatar_url":"https://avatars.githubusercontent.com/u/35617441?u=1cb3a186ccc75d24e43bfcc54c0d27f60a26dc5e&v=4","gravatar_id":"","url":"https://api.github.com/users/MarcusOtter","html_url":"https://github.com/MarcusOtter","followers_url":"https://api.github.com/users/MarcusOtter/followers","following_url":"https://api.github.com/users/MarcusOtter/following{/other_user}","gists_url":"https://api.github.com/users/MarcusOtter/gists{/gist_id}","starred_url":"https://api.github.com/users/MarcusOtter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MarcusOtter/subscriptions","organizations_url":"https://api.github.com/users/MarcusOtter/orgs","repos_url":"https://api.github.com/users/MarcusOtter/repos","events_url":"https://api.github.com/users/MarcusOtter/events{/privacy}","received_events_url":"https://api.github.com/users/MarcusOtter/received_events","type":"User","site_admin":false},{"login":"RafidMuhymin","id":63650415,"node_id":"MDQ6VXNlcjYzNjUwNDE1","avatar_url":"https://avatars.githubusercontent.com/u/63650415?u=c28cf1eace9ddef7454b63c4afa993a04affac4d&v=4","gravatar_id":"","url":"https://api.github.com/users/RafidMuhymin","html_url":"https://github.com/RafidMuhymin","followers_url":"https://api.github.com/users/RafidMuhymin/followers","following_url":"https://api.github.com/users/RafidMuhymin/following{/other_user}","gists_url":"https://api.github.com/users/RafidMuhymin/gists{/gist_id}","starred_url":"https://api.github.com/users/RafidMuhymin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RafidMuhymin/subscriptions","organizations_url":"https://api.github.com/users/RafidMuhymin/orgs","repos_url":"https://api.github.com/users/RafidMuhymin/repos","events_url":"https://api.github.com/users/RafidMuhymin/events{/privacy}","received_events_url":"https://api.github.com/users/RafidMuhymin/received_events","type":"User","site_admin":false}],"l1":[{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false,"contributions":158},{"login":"jonathantneal","id":188426,"node_id":"MDQ6VXNlcjE4ODQyNg==","avatar_url":"https://avatars.githubusercontent.com/u/188426?v=4","gravatar_id":"","url":"https://api.github.com/users/jonathantneal","html_url":"https://github.com/jonathantneal","followers_url":"https://api.github.com/users/jonathantneal/followers","following_url":"https://api.github.com/users/jonathantneal/following{/other_user}","gists_url":"https://api.github.com/users/jonathantneal/gists{/gist_id}","starred_url":"https://api.github.com/users/jonathantneal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jonathantneal/subscriptions","organizations_url":"https://api.github.com/users/jonathantneal/orgs","repos_url":"https://api.github.com/users/jonathantneal/repos","events_url":"https://api.github.com/users/jonathantneal/events{/privacy}","received_events_url":"https://api.github.com/users/jonathantneal/received_events","type":"User","site_admin":false,"contributions":78},{"login":"AsyncBanana","id":58297401,"node_id":"MDQ6VXNlcjU4Mjk3NDAx","avatar_url":"https://avatars.githubusercontent.com/u/58297401?v=4","gravatar_id":"","url":"https://api.github.com/users/AsyncBanana","html_url":"https://github.com/AsyncBanana","followers_url":"https://api.github.com/users/AsyncBanana/followers","following_url":"https://api.github.com/users/AsyncBanana/following{/other_user}","gists_url":"https://api.github.com/users/AsyncBanana/gists{/gist_id}","starred_url":"https://api.github.com/users/AsyncBanana/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AsyncBanana/subscriptions","organizations_url":"https://api.github.com/users/AsyncBanana/orgs","repos_url":"https://api.github.com/users/AsyncBanana/repos","events_url":"https://api.github.com/users/AsyncBanana/events{/privacy}","received_events_url":"https://api.github.com/users/AsyncBanana/received_events","type":"User","site_admin":false,"contributions":23},{"login":"duncanhealy","id":2788605,"node_id":"MDQ6VXNlcjI3ODg2MDU=","avatar_url":"https://avatars.githubusercontent.com/u/2788605?v=4","gravatar_id":"","url":"https://api.github.com/users/duncanhealy","html_url":"https://github.com/duncanhealy","followers_url":"https://api.github.com/users/duncanhealy/followers","following_url":"https://api.github.com/users/duncanhealy/following{/other_user}","gists_url":"https://api.github.com/users/duncanhealy/gists{/gist_id}","starred_url":"https://api.github.com/users/duncanhealy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/duncanhealy/subscriptions","organizations_url":"https://api.github.com/users/duncanhealy/orgs","repos_url":"https://api.github.com/users/duncanhealy/repos","events_url":"https://api.github.com/users/duncanhealy/events{/privacy}","received_events_url":"https://api.github.com/users/duncanhealy/received_events","type":"User","site_admin":false,"contributions":14},{"login":"JuanM04","id":16712703,"node_id":"MDQ6VXNlcjE2NzEyNzAz","avatar_url":"https://avatars.githubusercontent.com/u/16712703?v=4","gravatar_id":"","url":"https://api.github.com/users/JuanM04","html_url":"https://github.com/JuanM04","followers_url":"https://api.github.com/users/JuanM04/followers","following_url":"https://api.github.com/users/JuanM04/following{/other_user}","gists_url":"https://api.github.com/users/JuanM04/gists{/gist_id}","starred_url":"https://api.github.com/users/JuanM04/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JuanM04/subscriptions","organizations_url":"https://api.github.com/users/JuanM04/orgs","repos_url":"https://api.github.com/users/JuanM04/repos","events_url":"https://api.github.com/users/JuanM04/events{/privacy}","received_events_url":"https://api.github.com/users/JuanM04/received_events","type":"User","site_admin":false,"contributions":11},{"login":"kyosuke","id":13069,"node_id":"MDQ6VXNlcjEzMDY5","avatar_url":"https://avatars.githubusercontent.com/u/13069?v=4","gravatar_id":"","url":"https://api.github.com/users/kyosuke","html_url":"https://github.com/kyosuke","followers_url":"https://api.github.com/users/kyosuke/followers","following_url":"https://api.github.com/users/kyosuke/following{/other_user}","gists_url":"https://api.github.com/users/kyosuke/gists{/gist_id}","starred_url":"https://api.github.com/users/kyosuke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kyosuke/subscriptions","organizations_url":"https://api.github.com/users/kyosuke/orgs","repos_url":"https://api.github.com/users/kyosuke/repos","events_url":"https://api.github.com/users/kyosuke/events{/privacy}","received_events_url":"https://api.github.com/users/kyosuke/received_events","type":"User","site_admin":false,"contributions":8},{"login":"Mikkel-T","id":71938724,"node_id":"MDQ6VXNlcjcxOTM4NzI0","avatar_url":"https://avatars.githubusercontent.com/u/71938724?v=4","gravatar_id":"","url":"https://api.github.com/users/Mikkel-T","html_url":"https://github.com/Mikkel-T","followers_url":"https://api.github.com/users/Mikkel-T/followers","following_url":"https://api.github.com/users/Mikkel-T/following{/other_user}","gists_url":"https://api.github.com/users/Mikkel-T/gists{/gist_id}","starred_url":"https://api.github.com/users/Mikkel-T/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Mikkel-T/subscriptions","organizations_url":"https://api.github.com/users/Mikkel-T/orgs","repos_url":"https://api.github.com/users/Mikkel-T/repos","events_url":"https://api.github.com/users/Mikkel-T/events{/privacy}","received_events_url":"https://api.github.com/users/Mikkel-T/received_events","type":"User","site_admin":false,"contributions":8},{"login":"weakish","id":114114,"node_id":"MDQ6VXNlcjExNDExNA==","avatar_url":"https://avatars.githubusercontent.com/u/114114?v=4","gravatar_id":"","url":"https://api.github.com/users/weakish","html_url":"https://github.com/weakish","followers_url":"https://api.github.com/users/weakish/followers","following_url":"https://api.github.com/users/weakish/following{/other_user}","gists_url":"https://api.github.com/users/weakish/gists{/gist_id}","starred_url":"https://api.github.com/users/weakish/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weakish/subscriptions","organizations_url":"https://api.github.com/users/weakish/orgs","repos_url":"https://api.github.com/users/weakish/repos","events_url":"https://api.github.com/users/weakish/events{/privacy}","received_events_url":"https://api.github.com/users/weakish/received_events","type":"User","site_admin":false,"contributions":7},{"login":"boehs","id":51836263,"node_id":"MDQ6VXNlcjUxODM2MjYz","avatar_url":"https://avatars.githubusercontent.com/u/51836263?v=4","gravatar_id":"","url":"https://api.github.com/users/boehs","html_url":"https://github.com/boehs","followers_url":"https://api.github.com/users/boehs/followers","following_url":"https://api.github.com/users/boehs/following{/other_user}","gists_url":"https://api.github.com/users/boehs/gists{/gist_id}","starred_url":"https://api.github.com/users/boehs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/boehs/subscriptions","organizations_url":"https://api.github.com/users/boehs/orgs","repos_url":"https://api.github.com/users/boehs/repos","events_url":"https://api.github.com/users/boehs/events{/privacy}","received_events_url":"https://api.github.com/users/boehs/received_events","type":"User","site_admin":false,"contributions":6},{"login":"markteekman","id":3909046,"node_id":"MDQ6VXNlcjM5MDkwNDY=","avatar_url":"https://avatars.githubusercontent.com/u/3909046?v=4","gravatar_id":"","url":"https://api.github.com/users/markteekman","html_url":"https://github.com/markteekman","followers_url":"https://api.github.com/users/markteekman/followers","following_url":"https://api.github.com/users/markteekman/following{/other_user}","gists_url":"https://api.github.com/users/markteekman/gists{/gist_id}","starred_url":"https://api.github.com/users/markteekman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markteekman/subscriptions","organizations_url":"https://api.github.com/users/markteekman/orgs","repos_url":"https://api.github.com/users/markteekman/repos","events_url":"https://api.github.com/users/markteekman/events{/privacy}","received_events_url":"https://api.github.com/users/markteekman/received_events","type":"User","site_admin":false,"contributions":5},{"login":"mundry","id":1453314,"node_id":"MDQ6VXNlcjE0NTMzMTQ=","avatar_url":"https://avatars.githubusercontent.com/u/1453314?v=4","gravatar_id":"","url":"https://api.github.com/users/mundry","html_url":"https://github.com/mundry","followers_url":"https://api.github.com/users/mundry/followers","following_url":"https://api.github.com/users/mundry/following{/other_user}","gists_url":"https://api.github.com/users/mundry/gists{/gist_id}","starred_url":"https://api.github.com/users/mundry/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mundry/subscriptions","organizations_url":"https://api.github.com/users/mundry/orgs","repos_url":"https://api.github.com/users/mundry/repos","events_url":"https://api.github.com/users/mundry/events{/privacy}","received_events_url":"https://api.github.com/users/mundry/received_events","type":"User","site_admin":false,"contributions":5},{"login":"Igloczek","id":5119280,"node_id":"MDQ6VXNlcjUxMTkyODA=","avatar_url":"https://avatars.githubusercontent.com/u/5119280?v=4","gravatar_id":"","url":"https://api.github.com/users/Igloczek","html_url":"https://github.com/Igloczek","followers_url":"https://api.github.com/users/Igloczek/followers","following_url":"https://api.github.com/users/Igloczek/following{/other_user}","gists_url":"https://api.github.com/users/Igloczek/gists{/gist_id}","starred_url":"https://api.github.com/users/Igloczek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Igloczek/subscriptions","organizations_url":"https://api.github.com/users/Igloczek/orgs","repos_url":"https://api.github.com/users/Igloczek/repos","events_url":"https://api.github.com/users/Igloczek/events{/privacy}","received_events_url":"https://api.github.com/users/Igloczek/received_events","type":"User","site_admin":false,"contributions":5},{"login":"ElianCodes","id":15145918,"node_id":"MDQ6VXNlcjE1MTQ1OTE4","avatar_url":"https://avatars.githubusercontent.com/u/15145918?v=4","gravatar_id":"","url":"https://api.github.com/users/ElianCodes","html_url":"https://github.com/ElianCodes","followers_url":"https://api.github.com/users/ElianCodes/followers","following_url":"https://api.github.com/users/ElianCodes/following{/other_user}","gists_url":"https://api.github.com/users/ElianCodes/gists{/gist_id}","starred_url":"https://api.github.com/users/ElianCodes/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ElianCodes/subscriptions","organizations_url":"https://api.github.com/users/ElianCodes/orgs","repos_url":"https://api.github.com/users/ElianCodes/repos","events_url":"https://api.github.com/users/ElianCodes/events{/privacy}","received_events_url":"https://api.github.com/users/ElianCodes/received_events","type":"User","site_admin":false,"contributions":5},{"login":"X7md","id":54203033,"node_id":"MDQ6VXNlcjU0MjAzMDMz","avatar_url":"https://avatars.githubusercontent.com/u/54203033?v=4","gravatar_id":"","url":"https://api.github.com/users/X7md","html_url":"https://github.com/X7md","followers_url":"https://api.github.com/users/X7md/followers","following_url":"https://api.github.com/users/X7md/following{/other_user}","gists_url":"https://api.github.com/users/X7md/gists{/gist_id}","starred_url":"https://api.github.com/users/X7md/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/X7md/subscriptions","organizations_url":"https://api.github.com/users/X7md/orgs","repos_url":"https://api.github.com/users/X7md/repos","events_url":"https://api.github.com/users/X7md/events{/privacy}","received_events_url":"https://api.github.com/users/X7md/received_events","type":"User","site_admin":false,"contributions":5},{"login":"IanVS","id":4616705,"node_id":"MDQ6VXNlcjQ2MTY3MDU=","avatar_url":"https://avatars.githubusercontent.com/u/4616705?v=4","gravatar_id":"","url":"https://api.github.com/users/IanVS","html_url":"https://github.com/IanVS","followers_url":"https://api.github.com/users/IanVS/followers","following_url":"https://api.github.com/users/IanVS/following{/other_user}","gists_url":"https://api.github.com/users/IanVS/gists{/gist_id}","starred_url":"https://api.github.com/users/IanVS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/IanVS/subscriptions","organizations_url":"https://api.github.com/users/IanVS/orgs","repos_url":"https://api.github.com/users/IanVS/repos","events_url":"https://api.github.com/users/IanVS/events{/privacy}","received_events_url":"https://api.github.com/users/IanVS/received_events","type":"User","site_admin":false,"contributions":4},{"login":"kevinkassimo","id":15007517,"node_id":"MDQ6VXNlcjE1MDA3NTE3","avatar_url":"https://avatars.githubusercontent.com/u/15007517?v=4","gravatar_id":"","url":"https://api.github.com/users/kevinkassimo","html_url":"https://github.com/kevinkassimo","followers_url":"https://api.github.com/users/kevinkassimo/followers","following_url":"https://api.github.com/users/kevinkassimo/following{/other_user}","gists_url":"https://api.github.com/users/kevinkassimo/gists{/gist_id}","starred_url":"https://api.github.com/users/kevinkassimo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kevinkassimo/subscriptions","organizations_url":"https://api.github.com/users/kevinkassimo/orgs","repos_url":"https://api.github.com/users/kevinkassimo/repos","events_url":"https://api.github.com/users/kevinkassimo/events{/privacy}","received_events_url":"https://api.github.com/users/kevinkassimo/received_events","type":"User","site_admin":false,"contributions":4},{"login":"mmarkelov","id":22371328,"node_id":"MDQ6VXNlcjIyMzcxMzI4","avatar_url":"https://avatars.githubusercontent.com/u/22371328?v=4","gravatar_id":"","url":"https://api.github.com/users/mmarkelov","html_url":"https://github.com/mmarkelov","followers_url":"https://api.github.com/users/mmarkelov/followers","following_url":"https://api.github.com/users/mmarkelov/following{/other_user}","gists_url":"https://api.github.com/users/mmarkelov/gists{/gist_id}","starred_url":"https://api.github.com/users/mmarkelov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mmarkelov/subscriptions","organizations_url":"https://api.github.com/users/mmarkelov/orgs","repos_url":"https://api.github.com/users/mmarkelov/repos","events_url":"https://api.github.com/users/mmarkelov/events{/privacy}","received_events_url":"https://api.github.com/users/mmarkelov/received_events","type":"User","site_admin":false,"contributions":4},{"login":"tony-navillus","id":60468564,"node_id":"MDQ6VXNlcjYwNDY4NTY0","avatar_url":"https://avatars.githubusercontent.com/u/60468564?v=4","gravatar_id":"","url":"https://api.github.com/users/tony-navillus","html_url":"https://github.com/tony-navillus","followers_url":"https://api.github.com/users/tony-navillus/followers","following_url":"https://api.github.com/users/tony-navillus/following{/other_user}","gists_url":"https://api.github.com/users/tony-navillus/gists{/gist_id}","starred_url":"https://api.github.com/users/tony-navillus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tony-navillus/subscriptions","organizations_url":"https://api.github.com/users/tony-navillus/orgs","repos_url":"https://api.github.com/users/tony-navillus/repos","events_url":"https://api.github.com/users/tony-navillus/events{/privacy}","received_events_url":"https://api.github.com/users/tony-navillus/received_events","type":"User","site_admin":false,"contributions":4},{"login":"ymcheung","id":4409977,"node_id":"MDQ6VXNlcjQ0MDk5Nzc=","avatar_url":"https://avatars.githubusercontent.com/u/4409977?v=4","gravatar_id":"","url":"https://api.github.com/users/ymcheung","html_url":"https://github.com/ymcheung","followers_url":"https://api.github.com/users/ymcheung/followers","following_url":"https://api.github.com/users/ymcheung/following{/other_user}","gists_url":"https://api.github.com/users/ymcheung/gists{/gist_id}","starred_url":"https://api.github.com/users/ymcheung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ymcheung/subscriptions","organizations_url":"https://api.github.com/users/ymcheung/orgs","repos_url":"https://api.github.com/users/ymcheung/repos","events_url":"https://api.github.com/users/ymcheung/events{/privacy}","received_events_url":"https://api.github.com/users/ymcheung/received_events","type":"User","site_admin":false,"contributions":4},{"login":"togami2864","id":62130798,"node_id":"MDQ6VXNlcjYyMTMwNzk4","avatar_url":"https://avatars.githubusercontent.com/u/62130798?v=4","gravatar_id":"","url":"https://api.github.com/users/togami2864","html_url":"https://github.com/togami2864","followers_url":"https://api.github.com/users/togami2864/followers","following_url":"https://api.github.com/users/togami2864/following{/other_user}","gists_url":"https://api.github.com/users/togami2864/gists{/gist_id}","starred_url":"https://api.github.com/users/togami2864/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/togami2864/subscriptions","organizations_url":"https://api.github.com/users/togami2864/orgs","repos_url":"https://api.github.com/users/togami2864/repos","events_url":"https://api.github.com/users/togami2864/events{/privacy}","received_events_url":"https://api.github.com/users/togami2864/received_events","type":"User","site_admin":false,"contributions":4},{"login":"borisv","id":403148,"node_id":"MDQ6VXNlcjQwMzE0OA==","avatar_url":"https://avatars.githubusercontent.com/u/403148?v=4","gravatar_id":"","url":"https://api.github.com/users/borisv","html_url":"https://github.com/borisv","followers_url":"https://api.github.com/users/borisv/followers","following_url":"https://api.github.com/users/borisv/following{/other_user}","gists_url":"https://api.github.com/users/borisv/gists{/gist_id}","starred_url":"https://api.github.com/users/borisv/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/borisv/subscriptions","organizations_url":"https://api.github.com/users/borisv/orgs","repos_url":"https://api.github.com/users/borisv/repos","events_url":"https://api.github.com/users/borisv/events{/privacy}","received_events_url":"https://api.github.com/users/borisv/received_events","type":"User","site_admin":false,"contributions":4},{"login":"akellbl4","id":2330682,"node_id":"MDQ6VXNlcjIzMzA2ODI=","avatar_url":"https://avatars.githubusercontent.com/u/2330682?v=4","gravatar_id":"","url":"https://api.github.com/users/akellbl4","html_url":"https://github.com/akellbl4","followers_url":"https://api.github.com/users/akellbl4/followers","following_url":"https://api.github.com/users/akellbl4/following{/other_user}","gists_url":"https://api.github.com/users/akellbl4/gists{/gist_id}","starred_url":"https://api.github.com/users/akellbl4/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/akellbl4/subscriptions","organizations_url":"https://api.github.com/users/akellbl4/orgs","repos_url":"https://api.github.com/users/akellbl4/repos","events_url":"https://api.github.com/users/akellbl4/events{/privacy}","received_events_url":"https://api.github.com/users/akellbl4/received_events","type":"User","site_admin":false,"contributions":4},{"login":"brycewray","id":14099446,"node_id":"MDQ6VXNlcjE0MDk5NDQ2","avatar_url":"https://avatars.githubusercontent.com/u/14099446?v=4","gravatar_id":"","url":"https://api.github.com/users/brycewray","html_url":"https://github.com/brycewray","followers_url":"https://api.github.com/users/brycewray/followers","following_url":"https://api.github.com/users/brycewray/following{/other_user}","gists_url":"https://api.github.com/users/brycewray/gists{/gist_id}","starred_url":"https://api.github.com/users/brycewray/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brycewray/subscriptions","organizations_url":"https://api.github.com/users/brycewray/orgs","repos_url":"https://api.github.com/users/brycewray/repos","events_url":"https://api.github.com/users/brycewray/events{/privacy}","received_events_url":"https://api.github.com/users/brycewray/received_events","type":"User","site_admin":false,"contributions":3},{"login":"rebelchris","id":554874,"node_id":"MDQ6VXNlcjU1NDg3NA==","avatar_url":"https://avatars.githubusercontent.com/u/554874?v=4","gravatar_id":"","url":"https://api.github.com/users/rebelchris","html_url":"https://github.com/rebelchris","followers_url":"https://api.github.com/users/rebelchris/followers","following_url":"https://api.github.com/users/rebelchris/following{/other_user}","gists_url":"https://api.github.com/users/rebelchris/gists{/gist_id}","starred_url":"https://api.github.com/users/rebelchris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rebelchris/subscriptions","organizations_url":"https://api.github.com/users/rebelchris/orgs","repos_url":"https://api.github.com/users/rebelchris/repos","events_url":"https://api.github.com/users/rebelchris/events{/privacy}","received_events_url":"https://api.github.com/users/rebelchris/received_events","type":"User","site_admin":false,"contributions":3},{"login":"jgil-r","id":59382692,"node_id":"MDQ6VXNlcjU5MzgyNjky","avatar_url":"https://avatars.githubusercontent.com/u/59382692?v=4","gravatar_id":"","url":"https://api.github.com/users/jgil-r","html_url":"https://github.com/jgil-r","followers_url":"https://api.github.com/users/jgil-r/followers","following_url":"https://api.github.com/users/jgil-r/following{/other_user}","gists_url":"https://api.github.com/users/jgil-r/gists{/gist_id}","starred_url":"https://api.github.com/users/jgil-r/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jgil-r/subscriptions","organizations_url":"https://api.github.com/users/jgil-r/orgs","repos_url":"https://api.github.com/users/jgil-r/repos","events_url":"https://api.github.com/users/jgil-r/events{/privacy}","received_events_url":"https://api.github.com/users/jgil-r/received_events","type":"User","site_admin":false,"contributions":3},{"login":"leoj3n","id":990216,"node_id":"MDQ6VXNlcjk5MDIxNg==","avatar_url":"https://avatars.githubusercontent.com/u/990216?v=4","gravatar_id":"","url":"https://api.github.com/users/leoj3n","html_url":"https://github.com/leoj3n","followers_url":"https://api.github.com/users/leoj3n/followers","following_url":"https://api.github.com/users/leoj3n/following{/other_user}","gists_url":"https://api.github.com/users/leoj3n/gists{/gist_id}","starred_url":"https://api.github.com/users/leoj3n/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leoj3n/subscriptions","organizations_url":"https://api.github.com/users/leoj3n/orgs","repos_url":"https://api.github.com/users/leoj3n/repos","events_url":"https://api.github.com/users/leoj3n/events{/privacy}","received_events_url":"https://api.github.com/users/leoj3n/received_events","type":"User","site_admin":false,"contributions":3},{"login":"delight","id":117198,"node_id":"MDQ6VXNlcjExNzE5OA==","avatar_url":"https://avatars.githubusercontent.com/u/117198?v=4","gravatar_id":"","url":"https://api.github.com/users/delight","html_url":"https://github.com/delight","followers_url":"https://api.github.com/users/delight/followers","following_url":"https://api.github.com/users/delight/following{/other_user}","gists_url":"https://api.github.com/users/delight/gists{/gist_id}","starred_url":"https://api.github.com/users/delight/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/delight/subscriptions","organizations_url":"https://api.github.com/users/delight/orgs","repos_url":"https://api.github.com/users/delight/repos","events_url":"https://api.github.com/users/delight/events{/privacy}","received_events_url":"https://api.github.com/users/delight/received_events","type":"User","site_admin":false,"contributions":3},{"login":"manigandham","id":457226,"node_id":"MDQ6VXNlcjQ1NzIyNg==","avatar_url":"https://avatars.githubusercontent.com/u/457226?v=4","gravatar_id":"","url":"https://api.github.com/users/manigandham","html_url":"https://github.com/manigandham","followers_url":"https://api.github.com/users/manigandham/followers","following_url":"https://api.github.com/users/manigandham/following{/other_user}","gists_url":"https://api.github.com/users/manigandham/gists{/gist_id}","starred_url":"https://api.github.com/users/manigandham/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/manigandham/subscriptions","organizations_url":"https://api.github.com/users/manigandham/orgs","repos_url":"https://api.github.com/users/manigandham/repos","events_url":"https://api.github.com/users/manigandham/events{/privacy}","received_events_url":"https://api.github.com/users/manigandham/received_events","type":"User","site_admin":false,"contributions":3},{"login":"matsdahlin","id":337696,"node_id":"MDQ6VXNlcjMzNzY5Ng==","avatar_url":"https://avatars.githubusercontent.com/u/337696?v=4","gravatar_id":"","url":"https://api.github.com/users/matsdahlin","html_url":"https://github.com/matsdahlin","followers_url":"https://api.github.com/users/matsdahlin/followers","following_url":"https://api.github.com/users/matsdahlin/following{/other_user}","gists_url":"https://api.github.com/users/matsdahlin/gists{/gist_id}","starred_url":"https://api.github.com/users/matsdahlin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matsdahlin/subscriptions","organizations_url":"https://api.github.com/users/matsdahlin/orgs","repos_url":"https://api.github.com/users/matsdahlin/repos","events_url":"https://api.github.com/users/matsdahlin/events{/privacy}","received_events_url":"https://api.github.com/users/matsdahlin/received_events","type":"User","site_admin":false,"contributions":3},{"login":"stramel","id":855184,"node_id":"MDQ6VXNlcjg1NTE4NA==","avatar_url":"https://avatars.githubusercontent.com/u/855184?v=4","gravatar_id":"","url":"https://api.github.com/users/stramel","html_url":"https://github.com/stramel","followers_url":"https://api.github.com/users/stramel/followers","following_url":"https://api.github.com/users/stramel/following{/other_user}","gists_url":"https://api.github.com/users/stramel/gists{/gist_id}","starred_url":"https://api.github.com/users/stramel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stramel/subscriptions","organizations_url":"https://api.github.com/users/stramel/orgs","repos_url":"https://api.github.com/users/stramel/repos","events_url":"https://api.github.com/users/stramel/events{/privacy}","received_events_url":"https://api.github.com/users/stramel/received_events","type":"User","site_admin":false,"contributions":3},{"login":"felipe300","id":15917501,"node_id":"MDQ6VXNlcjE1OTE3NTAx","avatar_url":"https://avatars.githubusercontent.com/u/15917501?v=4","gravatar_id":"","url":"https://api.github.com/users/felipe300","html_url":"https://github.com/felipe300","followers_url":"https://api.github.com/users/felipe300/followers","following_url":"https://api.github.com/users/felipe300/following{/other_user}","gists_url":"https://api.github.com/users/felipe300/gists{/gist_id}","starred_url":"https://api.github.com/users/felipe300/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/felipe300/subscriptions","organizations_url":"https://api.github.com/users/felipe300/orgs","repos_url":"https://api.github.com/users/felipe300/repos","events_url":"https://api.github.com/users/felipe300/events{/privacy}","received_events_url":"https://api.github.com/users/felipe300/received_events","type":"User","site_admin":false,"contributions":3},{"login":"chenxsan","id":1091472,"node_id":"MDQ6VXNlcjEwOTE0NzI=","avatar_url":"https://avatars.githubusercontent.com/u/1091472?v=4","gravatar_id":"","url":"https://api.github.com/users/chenxsan","html_url":"https://github.com/chenxsan","followers_url":"https://api.github.com/users/chenxsan/followers","following_url":"https://api.github.com/users/chenxsan/following{/other_user}","gists_url":"https://api.github.com/users/chenxsan/gists{/gist_id}","starred_url":"https://api.github.com/users/chenxsan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chenxsan/subscriptions","organizations_url":"https://api.github.com/users/chenxsan/orgs","repos_url":"https://api.github.com/users/chenxsan/repos","events_url":"https://api.github.com/users/chenxsan/events{/privacy}","received_events_url":"https://api.github.com/users/chenxsan/received_events","type":"User","site_admin":false,"contributions":3},{"login":"vtinev","id":54780475,"node_id":"MDQ6VXNlcjU0NzgwNDc1","avatar_url":"https://avatars.githubusercontent.com/u/54780475?v=4","gravatar_id":"","url":"https://api.github.com/users/vtinev","html_url":"https://github.com/vtinev","followers_url":"https://api.github.com/users/vtinev/followers","following_url":"https://api.github.com/users/vtinev/following{/other_user}","gists_url":"https://api.github.com/users/vtinev/gists{/gist_id}","starred_url":"https://api.github.com/users/vtinev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vtinev/subscriptions","organizations_url":"https://api.github.com/users/vtinev/orgs","repos_url":"https://api.github.com/users/vtinev/repos","events_url":"https://api.github.com/users/vtinev/events{/privacy}","received_events_url":"https://api.github.com/users/vtinev/received_events","type":"User","site_admin":false,"contributions":3},{"login":"agustinmulet","id":31162600,"node_id":"MDQ6VXNlcjMxMTYyNjAw","avatar_url":"https://avatars.githubusercontent.com/u/31162600?v=4","gravatar_id":"","url":"https://api.github.com/users/agustinmulet","html_url":"https://github.com/agustinmulet","followers_url":"https://api.github.com/users/agustinmulet/followers","following_url":"https://api.github.com/users/agustinmulet/following{/other_user}","gists_url":"https://api.github.com/users/agustinmulet/gists{/gist_id}","starred_url":"https://api.github.com/users/agustinmulet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/agustinmulet/subscriptions","organizations_url":"https://api.github.com/users/agustinmulet/orgs","repos_url":"https://api.github.com/users/agustinmulet/repos","events_url":"https://api.github.com/users/agustinmulet/events{/privacy}","received_events_url":"https://api.github.com/users/agustinmulet/received_events","type":"User","site_admin":false,"contributions":2},{"login":"Chrissdroid","id":29927270,"node_id":"MDQ6VXNlcjI5OTI3Mjcw","avatar_url":"https://avatars.githubusercontent.com/u/29927270?v=4","gravatar_id":"","url":"https://api.github.com/users/Chrissdroid","html_url":"https://github.com/Chrissdroid","followers_url":"https://api.github.com/users/Chrissdroid/followers","following_url":"https://api.github.com/users/Chrissdroid/following{/other_user}","gists_url":"https://api.github.com/users/Chrissdroid/gists{/gist_id}","starred_url":"https://api.github.com/users/Chrissdroid/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Chrissdroid/subscriptions","organizations_url":"https://api.github.com/users/Chrissdroid/orgs","repos_url":"https://api.github.com/users/Chrissdroid/repos","events_url":"https://api.github.com/users/Chrissdroid/events{/privacy}","received_events_url":"https://api.github.com/users/Chrissdroid/received_events","type":"User","site_admin":false,"contributions":2},{"login":"austincrim","id":32459922,"node_id":"MDQ6VXNlcjMyNDU5OTIy","avatar_url":"https://avatars.githubusercontent.com/u/32459922?v=4","gravatar_id":"","url":"https://api.github.com/users/austincrim","html_url":"https://github.com/austincrim","followers_url":"https://api.github.com/users/austincrim/followers","following_url":"https://api.github.com/users/austincrim/following{/other_user}","gists_url":"https://api.github.com/users/austincrim/gists{/gist_id}","starred_url":"https://api.github.com/users/austincrim/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/austincrim/subscriptions","organizations_url":"https://api.github.com/users/austincrim/orgs","repos_url":"https://api.github.com/users/austincrim/repos","events_url":"https://api.github.com/users/austincrim/events{/privacy}","received_events_url":"https://api.github.com/users/austincrim/received_events","type":"User","site_admin":false,"contributions":2},{"login":"bradlc","id":2615508,"node_id":"MDQ6VXNlcjI2MTU1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/2615508?v=4","gravatar_id":"","url":"https://api.github.com/users/bradlc","html_url":"https://github.com/bradlc","followers_url":"https://api.github.com/users/bradlc/followers","following_url":"https://api.github.com/users/bradlc/following{/other_user}","gists_url":"https://api.github.com/users/bradlc/gists{/gist_id}","starred_url":"https://api.github.com/users/bradlc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bradlc/subscriptions","organizations_url":"https://api.github.com/users/bradlc/orgs","repos_url":"https://api.github.com/users/bradlc/repos","events_url":"https://api.github.com/users/bradlc/events{/privacy}","received_events_url":"https://api.github.com/users/bradlc/received_events","type":"User","site_admin":false,"contributions":2},{"login":"sno2","id":43641633,"node_id":"MDQ6VXNlcjQzNjQxNjMz","avatar_url":"https://avatars.githubusercontent.com/u/43641633?v=4","gravatar_id":"","url":"https://api.github.com/users/sno2","html_url":"https://github.com/sno2","followers_url":"https://api.github.com/users/sno2/followers","following_url":"https://api.github.com/users/sno2/following{/other_user}","gists_url":"https://api.github.com/users/sno2/gists{/gist_id}","starred_url":"https://api.github.com/users/sno2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sno2/subscriptions","organizations_url":"https://api.github.com/users/sno2/orgs","repos_url":"https://api.github.com/users/sno2/repos","events_url":"https://api.github.com/users/sno2/events{/privacy}","received_events_url":"https://api.github.com/users/sno2/received_events","type":"User","site_admin":false,"contributions":2},{"login":"delucis","id":357379,"node_id":"MDQ6VXNlcjM1NzM3OQ==","avatar_url":"https://avatars.githubusercontent.com/u/357379?v=4","gravatar_id":"","url":"https://api.github.com/users/delucis","html_url":"https://github.com/delucis","followers_url":"https://api.github.com/users/delucis/followers","following_url":"https://api.github.com/users/delucis/following{/other_user}","gists_url":"https://api.github.com/users/delucis/gists{/gist_id}","starred_url":"https://api.github.com/users/delucis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/delucis/subscriptions","organizations_url":"https://api.github.com/users/delucis/orgs","repos_url":"https://api.github.com/users/delucis/repos","events_url":"https://api.github.com/users/delucis/events{/privacy}","received_events_url":"https://api.github.com/users/delucis/received_events","type":"User","site_admin":false,"contributions":2},{"login":"danny-burrows","id":44483126,"node_id":"MDQ6VXNlcjQ0NDgzMTI2","avatar_url":"https://avatars.githubusercontent.com/u/44483126?v=4","gravatar_id":"","url":"https://api.github.com/users/danny-burrows","html_url":"https://github.com/danny-burrows","followers_url":"https://api.github.com/users/danny-burrows/followers","following_url":"https://api.github.com/users/danny-burrows/following{/other_user}","gists_url":"https://api.github.com/users/danny-burrows/gists{/gist_id}","starred_url":"https://api.github.com/users/danny-burrows/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/danny-burrows/subscriptions","organizations_url":"https://api.github.com/users/danny-burrows/orgs","repos_url":"https://api.github.com/users/danny-burrows/repos","events_url":"https://api.github.com/users/danny-burrows/events{/privacy}","received_events_url":"https://api.github.com/users/danny-burrows/received_events","type":"User","site_admin":false,"contributions":2},{"login":"e111077","id":5981958,"node_id":"MDQ6VXNlcjU5ODE5NTg=","avatar_url":"https://avatars.githubusercontent.com/u/5981958?v=4","gravatar_id":"","url":"https://api.github.com/users/e111077","html_url":"https://github.com/e111077","followers_url":"https://api.github.com/users/e111077/followers","following_url":"https://api.github.com/users/e111077/following{/other_user}","gists_url":"https://api.github.com/users/e111077/gists{/gist_id}","starred_url":"https://api.github.com/users/e111077/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/e111077/subscriptions","organizations_url":"https://api.github.com/users/e111077/orgs","repos_url":"https://api.github.com/users/e111077/repos","events_url":"https://api.github.com/users/e111077/events{/privacy}","received_events_url":"https://api.github.com/users/e111077/received_events","type":"User","site_admin":false,"contributions":2},{"login":"isaac-mcfadyen","id":6243993,"node_id":"MDQ6VXNlcjYyNDM5OTM=","avatar_url":"https://avatars.githubusercontent.com/u/6243993?v=4","gravatar_id":"","url":"https://api.github.com/users/isaac-mcfadyen","html_url":"https://github.com/isaac-mcfadyen","followers_url":"https://api.github.com/users/isaac-mcfadyen/followers","following_url":"https://api.github.com/users/isaac-mcfadyen/following{/other_user}","gists_url":"https://api.github.com/users/isaac-mcfadyen/gists{/gist_id}","starred_url":"https://api.github.com/users/isaac-mcfadyen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/isaac-mcfadyen/subscriptions","organizations_url":"https://api.github.com/users/isaac-mcfadyen/orgs","repos_url":"https://api.github.com/users/isaac-mcfadyen/repos","events_url":"https://api.github.com/users/isaac-mcfadyen/events{/privacy}","received_events_url":"https://api.github.com/users/isaac-mcfadyen/received_events","type":"User","site_admin":false,"contributions":2},{"login":"jorgecasar","id":948953,"node_id":"MDQ6VXNlcjk0ODk1Mw==","avatar_url":"https://avatars.githubusercontent.com/u/948953?v=4","gravatar_id":"","url":"https://api.github.com/users/jorgecasar","html_url":"https://github.com/jorgecasar","followers_url":"https://api.github.com/users/jorgecasar/followers","following_url":"https://api.github.com/users/jorgecasar/following{/other_user}","gists_url":"https://api.github.com/users/jorgecasar/gists{/gist_id}","starred_url":"https://api.github.com/users/jorgecasar/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jorgecasar/subscriptions","organizations_url":"https://api.github.com/users/jorgecasar/orgs","repos_url":"https://api.github.com/users/jorgecasar/repos","events_url":"https://api.github.com/users/jorgecasar/events{/privacy}","received_events_url":"https://api.github.com/users/jorgecasar/received_events","type":"User","site_admin":false,"contributions":2},{"login":"JSHSJ","id":17817755,"node_id":"MDQ6VXNlcjE3ODE3NzU1","avatar_url":"https://avatars.githubusercontent.com/u/17817755?v=4","gravatar_id":"","url":"https://api.github.com/users/JSHSJ","html_url":"https://github.com/JSHSJ","followers_url":"https://api.github.com/users/JSHSJ/followers","following_url":"https://api.github.com/users/JSHSJ/following{/other_user}","gists_url":"https://api.github.com/users/JSHSJ/gists{/gist_id}","starred_url":"https://api.github.com/users/JSHSJ/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JSHSJ/subscriptions","organizations_url":"https://api.github.com/users/JSHSJ/orgs","repos_url":"https://api.github.com/users/JSHSJ/repos","events_url":"https://api.github.com/users/JSHSJ/events{/privacy}","received_events_url":"https://api.github.com/users/JSHSJ/received_events","type":"User","site_admin":false,"contributions":2},{"login":"jpaquim","id":1531031,"node_id":"MDQ6VXNlcjE1MzEwMzE=","avatar_url":"https://avatars.githubusercontent.com/u/1531031?v=4","gravatar_id":"","url":"https://api.github.com/users/jpaquim","html_url":"https://github.com/jpaquim","followers_url":"https://api.github.com/users/jpaquim/followers","following_url":"https://api.github.com/users/jpaquim/following{/other_user}","gists_url":"https://api.github.com/users/jpaquim/gists{/gist_id}","starred_url":"https://api.github.com/users/jpaquim/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jpaquim/subscriptions","organizations_url":"https://api.github.com/users/jpaquim/orgs","repos_url":"https://api.github.com/users/jpaquim/repos","events_url":"https://api.github.com/users/jpaquim/events{/privacy}","received_events_url":"https://api.github.com/users/jpaquim/received_events","type":"User","site_admin":false,"contributions":2},{"login":"ludofischer","id":43557,"node_id":"MDQ6VXNlcjQzNTU3","avatar_url":"https://avatars.githubusercontent.com/u/43557?v=4","gravatar_id":"","url":"https://api.github.com/users/ludofischer","html_url":"https://github.com/ludofischer","followers_url":"https://api.github.com/users/ludofischer/followers","following_url":"https://api.github.com/users/ludofischer/following{/other_user}","gists_url":"https://api.github.com/users/ludofischer/gists{/gist_id}","starred_url":"https://api.github.com/users/ludofischer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ludofischer/subscriptions","organizations_url":"https://api.github.com/users/ludofischer/orgs","repos_url":"https://api.github.com/users/ludofischer/repos","events_url":"https://api.github.com/users/ludofischer/events{/privacy}","received_events_url":"https://api.github.com/users/ludofischer/received_events","type":"User","site_admin":false,"contributions":2},{"login":"palmiak","id":2342458,"node_id":"MDQ6VXNlcjIzNDI0NTg=","avatar_url":"https://avatars.githubusercontent.com/u/2342458?v=4","gravatar_id":"","url":"https://api.github.com/users/palmiak","html_url":"https://github.com/palmiak","followers_url":"https://api.github.com/users/palmiak/followers","following_url":"https://api.github.com/users/palmiak/following{/other_user}","gists_url":"https://api.github.com/users/palmiak/gists{/gist_id}","starred_url":"https://api.github.com/users/palmiak/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/palmiak/subscriptions","organizations_url":"https://api.github.com/users/palmiak/orgs","repos_url":"https://api.github.com/users/palmiak/repos","events_url":"https://api.github.com/users/palmiak/events{/privacy}","received_events_url":"https://api.github.com/users/palmiak/received_events","type":"User","site_admin":false,"contributions":2},{"login":"martypdx","id":478864,"node_id":"MDQ6VXNlcjQ3ODg2NA==","avatar_url":"https://avatars.githubusercontent.com/u/478864?v=4","gravatar_id":"","url":"https://api.github.com/users/martypdx","html_url":"https://github.com/martypdx","followers_url":"https://api.github.com/users/martypdx/followers","following_url":"https://api.github.com/users/martypdx/following{/other_user}","gists_url":"https://api.github.com/users/martypdx/gists{/gist_id}","starred_url":"https://api.github.com/users/martypdx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/martypdx/subscriptions","organizations_url":"https://api.github.com/users/martypdx/orgs","repos_url":"https://api.github.com/users/martypdx/repos","events_url":"https://api.github.com/users/martypdx/events{/privacy}","received_events_url":"https://api.github.com/users/martypdx/received_events","type":"User","site_admin":false,"contributions":2},{"login":"pointout","id":8960545,"node_id":"MDQ6VXNlcjg5NjA1NDU=","avatar_url":"https://avatars.githubusercontent.com/u/8960545?v=4","gravatar_id":"","url":"https://api.github.com/users/pointout","html_url":"https://github.com/pointout","followers_url":"https://api.github.com/users/pointout/followers","following_url":"https://api.github.com/users/pointout/following{/other_user}","gists_url":"https://api.github.com/users/pointout/gists{/gist_id}","starred_url":"https://api.github.com/users/pointout/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pointout/subscriptions","organizations_url":"https://api.github.com/users/pointout/orgs","repos_url":"https://api.github.com/users/pointout/repos","events_url":"https://api.github.com/users/pointout/events{/privacy}","received_events_url":"https://api.github.com/users/pointout/received_events","type":"User","site_admin":false,"contributions":2},{"login":"shamwela","id":62544170,"node_id":"MDQ6VXNlcjYyNTQ0MTcw","avatar_url":"https://avatars.githubusercontent.com/u/62544170?v=4","gravatar_id":"","url":"https://api.github.com/users/shamwela","html_url":"https://github.com/shamwela","followers_url":"https://api.github.com/users/shamwela/followers","following_url":"https://api.github.com/users/shamwela/following{/other_user}","gists_url":"https://api.github.com/users/shamwela/gists{/gist_id}","starred_url":"https://api.github.com/users/shamwela/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shamwela/subscriptions","organizations_url":"https://api.github.com/users/shamwela/orgs","repos_url":"https://api.github.com/users/shamwela/repos","events_url":"https://api.github.com/users/shamwela/events{/privacy}","received_events_url":"https://api.github.com/users/shamwela/received_events","type":"User","site_admin":false,"contributions":2},{"login":"Shinyaigeek","id":42742053,"node_id":"MDQ6VXNlcjQyNzQyMDUz","avatar_url":"https://avatars.githubusercontent.com/u/42742053?v=4","gravatar_id":"","url":"https://api.github.com/users/Shinyaigeek","html_url":"https://github.com/Shinyaigeek","followers_url":"https://api.github.com/users/Shinyaigeek/followers","following_url":"https://api.github.com/users/Shinyaigeek/following{/other_user}","gists_url":"https://api.github.com/users/Shinyaigeek/gists{/gist_id}","starred_url":"https://api.github.com/users/Shinyaigeek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Shinyaigeek/subscriptions","organizations_url":"https://api.github.com/users/Shinyaigeek/orgs","repos_url":"https://api.github.com/users/Shinyaigeek/repos","events_url":"https://api.github.com/users/Shinyaigeek/events{/privacy}","received_events_url":"https://api.github.com/users/Shinyaigeek/received_events","type":"User","site_admin":false,"contributions":2},{"login":"murdercode","id":7630252,"node_id":"MDQ6VXNlcjc2MzAyNTI=","avatar_url":"https://avatars.githubusercontent.com/u/7630252?v=4","gravatar_id":"","url":"https://api.github.com/users/murdercode","html_url":"https://github.com/murdercode","followers_url":"https://api.github.com/users/murdercode/followers","following_url":"https://api.github.com/users/murdercode/following{/other_user}","gists_url":"https://api.github.com/users/murdercode/gists{/gist_id}","starred_url":"https://api.github.com/users/murdercode/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/murdercode/subscriptions","organizations_url":"https://api.github.com/users/murdercode/orgs","repos_url":"https://api.github.com/users/murdercode/repos","events_url":"https://api.github.com/users/murdercode/events{/privacy}","received_events_url":"https://api.github.com/users/murdercode/received_events","type":"User","site_admin":false,"contributions":2},{"login":"stephanbogner","id":7897006,"node_id":"MDQ6VXNlcjc4OTcwMDY=","avatar_url":"https://avatars.githubusercontent.com/u/7897006?v=4","gravatar_id":"","url":"https://api.github.com/users/stephanbogner","html_url":"https://github.com/stephanbogner","followers_url":"https://api.github.com/users/stephanbogner/followers","following_url":"https://api.github.com/users/stephanbogner/following{/other_user}","gists_url":"https://api.github.com/users/stephanbogner/gists{/gist_id}","starred_url":"https://api.github.com/users/stephanbogner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stephanbogner/subscriptions","organizations_url":"https://api.github.com/users/stephanbogner/orgs","repos_url":"https://api.github.com/users/stephanbogner/repos","events_url":"https://api.github.com/users/stephanbogner/events{/privacy}","received_events_url":"https://api.github.com/users/stephanbogner/received_events","type":"User","site_admin":false,"contributions":2},{"login":"Tc-001","id":55956895,"node_id":"MDQ6VXNlcjU1OTU2ODk1","avatar_url":"https://avatars.githubusercontent.com/u/55956895?v=4","gravatar_id":"","url":"https://api.github.com/users/Tc-001","html_url":"https://github.com/Tc-001","followers_url":"https://api.github.com/users/Tc-001/followers","following_url":"https://api.github.com/users/Tc-001/following{/other_user}","gists_url":"https://api.github.com/users/Tc-001/gists{/gist_id}","starred_url":"https://api.github.com/users/Tc-001/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Tc-001/subscriptions","organizations_url":"https://api.github.com/users/Tc-001/orgs","repos_url":"https://api.github.com/users/Tc-001/repos","events_url":"https://api.github.com/users/Tc-001/events{/privacy}","received_events_url":"https://api.github.com/users/Tc-001/received_events","type":"User","site_admin":false,"contributions":2},{"login":"tusharsadhwani","id":43412083,"node_id":"MDQ6VXNlcjQzNDEyMDgz","avatar_url":"https://avatars.githubusercontent.com/u/43412083?v=4","gravatar_id":"","url":"https://api.github.com/users/tusharsadhwani","html_url":"https://github.com/tusharsadhwani","followers_url":"https://api.github.com/users/tusharsadhwani/followers","following_url":"https://api.github.com/users/tusharsadhwani/following{/other_user}","gists_url":"https://api.github.com/users/tusharsadhwani/gists{/gist_id}","starred_url":"https://api.github.com/users/tusharsadhwani/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tusharsadhwani/subscriptions","organizations_url":"https://api.github.com/users/tusharsadhwani/orgs","repos_url":"https://api.github.com/users/tusharsadhwani/repos","events_url":"https://api.github.com/users/tusharsadhwani/events{/privacy}","received_events_url":"https://api.github.com/users/tusharsadhwani/received_events","type":"User","site_admin":false,"contributions":2},{"login":"vineryap","id":82420632,"node_id":"MDQ6VXNlcjgyNDIwNjMy","avatar_url":"https://avatars.githubusercontent.com/u/82420632?v=4","gravatar_id":"","url":"https://api.github.com/users/vineryap","html_url":"https://github.com/vineryap","followers_url":"https://api.github.com/users/vineryap/followers","following_url":"https://api.github.com/users/vineryap/following{/other_user}","gists_url":"https://api.github.com/users/vineryap/gists{/gist_id}","starred_url":"https://api.github.com/users/vineryap/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vineryap/subscriptions","organizations_url":"https://api.github.com/users/vineryap/orgs","repos_url":"https://api.github.com/users/vineryap/repos","events_url":"https://api.github.com/users/vineryap/events{/privacy}","received_events_url":"https://api.github.com/users/vineryap/received_events","type":"User","site_admin":false,"contributions":2},{"login":"ChelesteWang","id":40495740,"node_id":"MDQ6VXNlcjQwNDk1NzQw","avatar_url":"https://avatars.githubusercontent.com/u/40495740?v=4","gravatar_id":"","url":"https://api.github.com/users/ChelesteWang","html_url":"https://github.com/ChelesteWang","followers_url":"https://api.github.com/users/ChelesteWang/followers","following_url":"https://api.github.com/users/ChelesteWang/following{/other_user}","gists_url":"https://api.github.com/users/ChelesteWang/gists{/gist_id}","starred_url":"https://api.github.com/users/ChelesteWang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ChelesteWang/subscriptions","organizations_url":"https://api.github.com/users/ChelesteWang/orgs","repos_url":"https://api.github.com/users/ChelesteWang/repos","events_url":"https://api.github.com/users/ChelesteWang/events{/privacy}","received_events_url":"https://api.github.com/users/ChelesteWang/received_events","type":"User","site_admin":false,"contributions":2},{"login":"zadeviggers","id":74938858,"node_id":"MDQ6VXNlcjc0OTM4ODU4","avatar_url":"https://avatars.githubusercontent.com/u/74938858?v=4","gravatar_id":"","url":"https://api.github.com/users/zadeviggers","html_url":"https://github.com/zadeviggers","followers_url":"https://api.github.com/users/zadeviggers/followers","following_url":"https://api.github.com/users/zadeviggers/following{/other_user}","gists_url":"https://api.github.com/users/zadeviggers/gists{/gist_id}","starred_url":"https://api.github.com/users/zadeviggers/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zadeviggers/subscriptions","organizations_url":"https://api.github.com/users/zadeviggers/orgs","repos_url":"https://api.github.com/users/zadeviggers/repos","events_url":"https://api.github.com/users/zadeviggers/events{/privacy}","received_events_url":"https://api.github.com/users/zadeviggers/received_events","type":"User","site_admin":false,"contributions":2},{"login":"ewatch","id":2991341,"node_id":"MDQ6VXNlcjI5OTEzNDE=","avatar_url":"https://avatars.githubusercontent.com/u/2991341?v=4","gravatar_id":"","url":"https://api.github.com/users/ewatch","html_url":"https://github.com/ewatch","followers_url":"https://api.github.com/users/ewatch/followers","following_url":"https://api.github.com/users/ewatch/following{/other_user}","gists_url":"https://api.github.com/users/ewatch/gists{/gist_id}","starred_url":"https://api.github.com/users/ewatch/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ewatch/subscriptions","organizations_url":"https://api.github.com/users/ewatch/orgs","repos_url":"https://api.github.com/users/ewatch/repos","events_url":"https://api.github.com/users/ewatch/events{/privacy}","received_events_url":"https://api.github.com/users/ewatch/received_events","type":"User","site_admin":false,"contributions":2},{"login":"headapplesgithub","id":76455674,"node_id":"MDQ6VXNlcjc2NDU1Njc0","avatar_url":"https://avatars.githubusercontent.com/u/76455674?v=4","gravatar_id":"","url":"https://api.github.com/users/headapplesgithub","html_url":"https://github.com/headapplesgithub","followers_url":"https://api.github.com/users/headapplesgithub/followers","following_url":"https://api.github.com/users/headapplesgithub/following{/other_user}","gists_url":"https://api.github.com/users/headapplesgithub/gists{/gist_id}","starred_url":"https://api.github.com/users/headapplesgithub/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/headapplesgithub/subscriptions","organizations_url":"https://api.github.com/users/headapplesgithub/orgs","repos_url":"https://api.github.com/users/headapplesgithub/repos","events_url":"https://api.github.com/users/headapplesgithub/events{/privacy}","received_events_url":"https://api.github.com/users/headapplesgithub/received_events","type":"User","site_admin":false,"contributions":2},{"login":"kelvinsjk","id":64682375,"node_id":"MDQ6VXNlcjY0NjgyMzc1","avatar_url":"https://avatars.githubusercontent.com/u/64682375?v=4","gravatar_id":"","url":"https://api.github.com/users/kelvinsjk","html_url":"https://github.com/kelvinsjk","followers_url":"https://api.github.com/users/kelvinsjk/followers","following_url":"https://api.github.com/users/kelvinsjk/following{/other_user}","gists_url":"https://api.github.com/users/kelvinsjk/gists{/gist_id}","starred_url":"https://api.github.com/users/kelvinsjk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kelvinsjk/subscriptions","organizations_url":"https://api.github.com/users/kelvinsjk/orgs","repos_url":"https://api.github.com/users/kelvinsjk/repos","events_url":"https://api.github.com/users/kelvinsjk/events{/privacy}","received_events_url":"https://api.github.com/users/kelvinsjk/received_events","type":"User","site_admin":false,"contributions":2},{"login":"zhmushan","id":24505451,"node_id":"MDQ6VXNlcjI0NTA1NDUx","avatar_url":"https://avatars.githubusercontent.com/u/24505451?v=4","gravatar_id":"","url":"https://api.github.com/users/zhmushan","html_url":"https://github.com/zhmushan","followers_url":"https://api.github.com/users/zhmushan/followers","following_url":"https://api.github.com/users/zhmushan/following{/other_user}","gists_url":"https://api.github.com/users/zhmushan/gists{/gist_id}","starred_url":"https://api.github.com/users/zhmushan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zhmushan/subscriptions","organizations_url":"https://api.github.com/users/zhmushan/orgs","repos_url":"https://api.github.com/users/zhmushan/repos","events_url":"https://api.github.com/users/zhmushan/events{/privacy}","received_events_url":"https://api.github.com/users/zhmushan/received_events","type":"User","site_admin":false,"contributions":2},{"login":"mzaien","id":43112535,"node_id":"MDQ6VXNlcjQzMTEyNTM1","avatar_url":"https://avatars.githubusercontent.com/u/43112535?v=4","gravatar_id":"","url":"https://api.github.com/users/mzaien","html_url":"https://github.com/mzaien","followers_url":"https://api.github.com/users/mzaien/followers","following_url":"https://api.github.com/users/mzaien/following{/other_user}","gists_url":"https://api.github.com/users/mzaien/gists{/gist_id}","starred_url":"https://api.github.com/users/mzaien/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mzaien/subscriptions","organizations_url":"https://api.github.com/users/mzaien/orgs","repos_url":"https://api.github.com/users/mzaien/repos","events_url":"https://api.github.com/users/mzaien/events{/privacy}","received_events_url":"https://api.github.com/users/mzaien/received_events","type":"User","site_admin":false,"contributions":2},{"login":"robinmetral","id":35560568,"node_id":"MDQ6VXNlcjM1NTYwNTY4","avatar_url":"https://avatars.githubusercontent.com/u/35560568?v=4","gravatar_id":"","url":"https://api.github.com/users/robinmetral","html_url":"https://github.com/robinmetral","followers_url":"https://api.github.com/users/robinmetral/followers","following_url":"https://api.github.com/users/robinmetral/following{/other_user}","gists_url":"https://api.github.com/users/robinmetral/gists{/gist_id}","starred_url":"https://api.github.com/users/robinmetral/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robinmetral/subscriptions","organizations_url":"https://api.github.com/users/robinmetral/orgs","repos_url":"https://api.github.com/users/robinmetral/repos","events_url":"https://api.github.com/users/robinmetral/events{/privacy}","received_events_url":"https://api.github.com/users/robinmetral/received_events","type":"User","site_admin":false,"contributions":2},{"login":"johnhenry","id":393817,"node_id":"MDQ6VXNlcjM5MzgxNw==","avatar_url":"https://avatars.githubusercontent.com/u/393817?v=4","gravatar_id":"","url":"https://api.github.com/users/johnhenry","html_url":"https://github.com/johnhenry","followers_url":"https://api.github.com/users/johnhenry/followers","following_url":"https://api.github.com/users/johnhenry/following{/other_user}","gists_url":"https://api.github.com/users/johnhenry/gists{/gist_id}","starred_url":"https://api.github.com/users/johnhenry/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/johnhenry/subscriptions","organizations_url":"https://api.github.com/users/johnhenry/orgs","repos_url":"https://api.github.com/users/johnhenry/repos","events_url":"https://api.github.com/users/johnhenry/events{/privacy}","received_events_url":"https://api.github.com/users/johnhenry/received_events","type":"User","site_admin":false,"contributions":1},{"login":"adamochayon","id":2094874,"node_id":"MDQ6VXNlcjIwOTQ4NzQ=","avatar_url":"https://avatars.githubusercontent.com/u/2094874?v=4","gravatar_id":"","url":"https://api.github.com/users/adamochayon","html_url":"https://github.com/adamochayon","followers_url":"https://api.github.com/users/adamochayon/followers","following_url":"https://api.github.com/users/adamochayon/following{/other_user}","gists_url":"https://api.github.com/users/adamochayon/gists{/gist_id}","starred_url":"https://api.github.com/users/adamochayon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adamochayon/subscriptions","organizations_url":"https://api.github.com/users/adamochayon/orgs","repos_url":"https://api.github.com/users/adamochayon/repos","events_url":"https://api.github.com/users/adamochayon/events{/privacy}","received_events_url":"https://api.github.com/users/adamochayon/received_events","type":"User","site_admin":false,"contributions":1},{"login":"arecvlohe","id":9747933,"node_id":"MDQ6VXNlcjk3NDc5MzM=","avatar_url":"https://avatars.githubusercontent.com/u/9747933?v=4","gravatar_id":"","url":"https://api.github.com/users/arecvlohe","html_url":"https://github.com/arecvlohe","followers_url":"https://api.github.com/users/arecvlohe/followers","following_url":"https://api.github.com/users/arecvlohe/following{/other_user}","gists_url":"https://api.github.com/users/arecvlohe/gists{/gist_id}","starred_url":"https://api.github.com/users/arecvlohe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arecvlohe/subscriptions","organizations_url":"https://api.github.com/users/arecvlohe/orgs","repos_url":"https://api.github.com/users/arecvlohe/repos","events_url":"https://api.github.com/users/arecvlohe/events{/privacy}","received_events_url":"https://api.github.com/users/arecvlohe/received_events","type":"User","site_admin":false,"contributions":1},{"login":"altano","id":1009,"node_id":"MDQ6VXNlcjEwMDk=","avatar_url":"https://avatars.githubusercontent.com/u/1009?v=4","gravatar_id":"","url":"https://api.github.com/users/altano","html_url":"https://github.com/altano","followers_url":"https://api.github.com/users/altano/followers","following_url":"https://api.github.com/users/altano/following{/other_user}","gists_url":"https://api.github.com/users/altano/gists{/gist_id}","starred_url":"https://api.github.com/users/altano/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/altano/subscriptions","organizations_url":"https://api.github.com/users/altano/orgs","repos_url":"https://api.github.com/users/altano/repos","events_url":"https://api.github.com/users/altano/events{/privacy}","received_events_url":"https://api.github.com/users/altano/received_events","type":"User","site_admin":false,"contributions":1},{"login":"alex-drocks","id":69808183,"node_id":"MDQ6VXNlcjY5ODA4MTgz","avatar_url":"https://avatars.githubusercontent.com/u/69808183?v=4","gravatar_id":"","url":"https://api.github.com/users/alex-drocks","html_url":"https://github.com/alex-drocks","followers_url":"https://api.github.com/users/alex-drocks/followers","following_url":"https://api.github.com/users/alex-drocks/following{/other_user}","gists_url":"https://api.github.com/users/alex-drocks/gists{/gist_id}","starred_url":"https://api.github.com/users/alex-drocks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alex-drocks/subscriptions","organizations_url":"https://api.github.com/users/alex-drocks/orgs","repos_url":"https://api.github.com/users/alex-drocks/repos","events_url":"https://api.github.com/users/alex-drocks/events{/privacy}","received_events_url":"https://api.github.com/users/alex-drocks/received_events","type":"User","site_admin":false,"contributions":1},{"login":"lex111","id":4408379,"node_id":"MDQ6VXNlcjQ0MDgzNzk=","avatar_url":"https://avatars.githubusercontent.com/u/4408379?v=4","gravatar_id":"","url":"https://api.github.com/users/lex111","html_url":"https://github.com/lex111","followers_url":"https://api.github.com/users/lex111/followers","following_url":"https://api.github.com/users/lex111/following{/other_user}","gists_url":"https://api.github.com/users/lex111/gists{/gist_id}","starred_url":"https://api.github.com/users/lex111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lex111/subscriptions","organizations_url":"https://api.github.com/users/lex111/orgs","repos_url":"https://api.github.com/users/lex111/repos","events_url":"https://api.github.com/users/lex111/events{/privacy}","received_events_url":"https://api.github.com/users/lex111/received_events","type":"User","site_admin":false,"contributions":1},{"login":"alesvaupotic","id":1660347,"node_id":"MDQ6VXNlcjE2NjAzNDc=","avatar_url":"https://avatars.githubusercontent.com/u/1660347?v=4","gravatar_id":"","url":"https://api.github.com/users/alesvaupotic","html_url":"https://github.com/alesvaupotic","followers_url":"https://api.github.com/users/alesvaupotic/followers","following_url":"https://api.github.com/users/alesvaupotic/following{/other_user}","gists_url":"https://api.github.com/users/alesvaupotic/gists{/gist_id}","starred_url":"https://api.github.com/users/alesvaupotic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alesvaupotic/subscriptions","organizations_url":"https://api.github.com/users/alesvaupotic/orgs","repos_url":"https://api.github.com/users/alesvaupotic/repos","events_url":"https://api.github.com/users/alesvaupotic/events{/privacy}","received_events_url":"https://api.github.com/users/alesvaupotic/received_events","type":"User","site_admin":false,"contributions":1},{"login":"ajoslin-rm","id":94997667,"node_id":"U_kgDOBamMow","avatar_url":"https://avatars.githubusercontent.com/u/94997667?v=4","gravatar_id":"","url":"https://api.github.com/users/ajoslin-rm","html_url":"https://github.com/ajoslin-rm","followers_url":"https://api.github.com/users/ajoslin-rm/followers","following_url":"https://api.github.com/users/ajoslin-rm/following{/other_user}","gists_url":"https://api.github.com/users/ajoslin-rm/gists{/gist_id}","starred_url":"https://api.github.com/users/ajoslin-rm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ajoslin-rm/subscriptions","organizations_url":"https://api.github.com/users/ajoslin-rm/orgs","repos_url":"https://api.github.com/users/ajoslin-rm/repos","events_url":"https://api.github.com/users/ajoslin-rm/events{/privacy}","received_events_url":"https://api.github.com/users/ajoslin-rm/received_events","type":"User","site_admin":false,"contributions":1},{"login":"vjandrei","id":196690,"node_id":"MDQ6VXNlcjE5NjY5MA==","avatar_url":"https://avatars.githubusercontent.com/u/196690?v=4","gravatar_id":"","url":"https://api.github.com/users/vjandrei","html_url":"https://github.com/vjandrei","followers_url":"https://api.github.com/users/vjandrei/followers","following_url":"https://api.github.com/users/vjandrei/following{/other_user}","gists_url":"https://api.github.com/users/vjandrei/gists{/gist_id}","starred_url":"https://api.github.com/users/vjandrei/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vjandrei/subscriptions","organizations_url":"https://api.github.com/users/vjandrei/orgs","repos_url":"https://api.github.com/users/vjandrei/repos","events_url":"https://api.github.com/users/vjandrei/events{/privacy}","received_events_url":"https://api.github.com/users/vjandrei/received_events","type":"User","site_admin":false,"contributions":1},{"login":"ax2mx","id":27804799,"node_id":"MDQ6VXNlcjI3ODA0Nzk5","avatar_url":"https://avatars.githubusercontent.com/u/27804799?v=4","gravatar_id":"","url":"https://api.github.com/users/ax2mx","html_url":"https://github.com/ax2mx","followers_url":"https://api.github.com/users/ax2mx/followers","following_url":"https://api.github.com/users/ax2mx/following{/other_user}","gists_url":"https://api.github.com/users/ax2mx/gists{/gist_id}","starred_url":"https://api.github.com/users/ax2mx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ax2mx/subscriptions","organizations_url":"https://api.github.com/users/ax2mx/orgs","repos_url":"https://api.github.com/users/ax2mx/repos","events_url":"https://api.github.com/users/ax2mx/events{/privacy}","received_events_url":"https://api.github.com/users/ax2mx/received_events","type":"User","site_admin":false,"contributions":1},{"login":"angiewronska","id":13454412,"node_id":"MDQ6VXNlcjEzNDU0NDEy","avatar_url":"https://avatars.githubusercontent.com/u/13454412?v=4","gravatar_id":"","url":"https://api.github.com/users/angiewronska","html_url":"https://github.com/angiewronska","followers_url":"https://api.github.com/users/angiewronska/followers","following_url":"https://api.github.com/users/angiewronska/following{/other_user}","gists_url":"https://api.github.com/users/angiewronska/gists{/gist_id}","starred_url":"https://api.github.com/users/angiewronska/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/angiewronska/subscriptions","organizations_url":"https://api.github.com/users/angiewronska/orgs","repos_url":"https://api.github.com/users/angiewronska/repos","events_url":"https://api.github.com/users/angiewronska/events{/privacy}","received_events_url":"https://api.github.com/users/angiewronska/received_events","type":"User","site_admin":false,"contributions":1},{"login":"animafps","id":18208134,"node_id":"MDQ6VXNlcjE4MjA4MTM0","avatar_url":"https://avatars.githubusercontent.com/u/18208134?v=4","gravatar_id":"","url":"https://api.github.com/users/animafps","html_url":"https://github.com/animafps","followers_url":"https://api.github.com/users/animafps/followers","following_url":"https://api.github.com/users/animafps/following{/other_user}","gists_url":"https://api.github.com/users/animafps/gists{/gist_id}","starred_url":"https://api.github.com/users/animafps/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/animafps/subscriptions","organizations_url":"https://api.github.com/users/animafps/orgs","repos_url":"https://api.github.com/users/animafps/repos","events_url":"https://api.github.com/users/animafps/events{/privacy}","received_events_url":"https://api.github.com/users/animafps/received_events","type":"User","site_admin":false,"contributions":1},{"login":"anneke","id":7202272,"node_id":"MDQ6VXNlcjcyMDIyNzI=","avatar_url":"https://avatars.githubusercontent.com/u/7202272?v=4","gravatar_id":"","url":"https://api.github.com/users/anneke","html_url":"https://github.com/anneke","followers_url":"https://api.github.com/users/anneke/followers","following_url":"https://api.github.com/users/anneke/following{/other_user}","gists_url":"https://api.github.com/users/anneke/gists{/gist_id}","starred_url":"https://api.github.com/users/anneke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anneke/subscriptions","organizations_url":"https://api.github.com/users/anneke/orgs","repos_url":"https://api.github.com/users/anneke/repos","events_url":"https://api.github.com/users/anneke/events{/privacy}","received_events_url":"https://api.github.com/users/anneke/received_events","type":"User","site_admin":false,"contributions":1},{"login":"balazsorban44","id":18369201,"node_id":"MDQ6VXNlcjE4MzY5MjAx","avatar_url":"https://avatars.githubusercontent.com/u/18369201?v=4","gravatar_id":"","url":"https://api.github.com/users/balazsorban44","html_url":"https://github.com/balazsorban44","followers_url":"https://api.github.com/users/balazsorban44/followers","following_url":"https://api.github.com/users/balazsorban44/following{/other_user}","gists_url":"https://api.github.com/users/balazsorban44/gists{/gist_id}","starred_url":"https://api.github.com/users/balazsorban44/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/balazsorban44/subscriptions","organizations_url":"https://api.github.com/users/balazsorban44/orgs","repos_url":"https://api.github.com/users/balazsorban44/repos","events_url":"https://api.github.com/users/balazsorban44/events{/privacy}","received_events_url":"https://api.github.com/users/balazsorban44/received_events","type":"User","site_admin":false,"contributions":1},{"login":"vicalejuri","id":91731,"node_id":"MDQ6VXNlcjkxNzMx","avatar_url":"https://avatars.githubusercontent.com/u/91731?v=4","gravatar_id":"","url":"https://api.github.com/users/vicalejuri","html_url":"https://github.com/vicalejuri","followers_url":"https://api.github.com/users/vicalejuri/followers","following_url":"https://api.github.com/users/vicalejuri/following{/other_user}","gists_url":"https://api.github.com/users/vicalejuri/gists{/gist_id}","starred_url":"https://api.github.com/users/vicalejuri/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vicalejuri/subscriptions","organizations_url":"https://api.github.com/users/vicalejuri/orgs","repos_url":"https://api.github.com/users/vicalejuri/repos","events_url":"https://api.github.com/users/vicalejuri/events{/privacy}","received_events_url":"https://api.github.com/users/vicalejuri/received_events","type":"User","site_admin":false,"contributions":1},{"login":"bencemol","id":62985992,"node_id":"MDQ6VXNlcjYyOTg1OTky","avatar_url":"https://avatars.githubusercontent.com/u/62985992?v=4","gravatar_id":"","url":"https://api.github.com/users/bencemol","html_url":"https://github.com/bencemol","followers_url":"https://api.github.com/users/bencemol/followers","following_url":"https://api.github.com/users/bencemol/following{/other_user}","gists_url":"https://api.github.com/users/bencemol/gists{/gist_id}","starred_url":"https://api.github.com/users/bencemol/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bencemol/subscriptions","organizations_url":"https://api.github.com/users/bencemol/orgs","repos_url":"https://api.github.com/users/bencemol/repos","events_url":"https://api.github.com/users/bencemol/events{/privacy}","received_events_url":"https://api.github.com/users/bencemol/received_events","type":"User","site_admin":false,"contributions":1},{"login":"Benjamin-Piper","id":68324342,"node_id":"MDQ6VXNlcjY4MzI0MzQy","avatar_url":"https://avatars.githubusercontent.com/u/68324342?v=4","gravatar_id":"","url":"https://api.github.com/users/Benjamin-Piper","html_url":"https://github.com/Benjamin-Piper","followers_url":"https://api.github.com/users/Benjamin-Piper/followers","following_url":"https://api.github.com/users/Benjamin-Piper/following{/other_user}","gists_url":"https://api.github.com/users/Benjamin-Piper/gists{/gist_id}","starred_url":"https://api.github.com/users/Benjamin-Piper/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Benjamin-Piper/subscriptions","organizations_url":"https://api.github.com/users/Benjamin-Piper/orgs","repos_url":"https://api.github.com/users/Benjamin-Piper/repos","events_url":"https://api.github.com/users/Benjamin-Piper/events{/privacy}","received_events_url":"https://api.github.com/users/Benjamin-Piper/received_events","type":"User","site_admin":false,"contributions":1},{"login":"brandonroberts","id":42211,"node_id":"MDQ6VXNlcjQyMjEx","avatar_url":"https://avatars.githubusercontent.com/u/42211?v=4","gravatar_id":"","url":"https://api.github.com/users/brandonroberts","html_url":"https://github.com/brandonroberts","followers_url":"https://api.github.com/users/brandonroberts/followers","following_url":"https://api.github.com/users/brandonroberts/following{/other_user}","gists_url":"https://api.github.com/users/brandonroberts/gists{/gist_id}","starred_url":"https://api.github.com/users/brandonroberts/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brandonroberts/subscriptions","organizations_url":"https://api.github.com/users/brandonroberts/orgs","repos_url":"https://api.github.com/users/brandonroberts/repos","events_url":"https://api.github.com/users/brandonroberts/events{/privacy}","received_events_url":"https://api.github.com/users/brandonroberts/received_events","type":"User","site_admin":false,"contributions":1},{"login":"brandonstephens","id":838662,"node_id":"MDQ6VXNlcjgzODY2Mg==","avatar_url":"https://avatars.githubusercontent.com/u/838662?v=4","gravatar_id":"","url":"https://api.github.com/users/brandonstephens","html_url":"https://github.com/brandonstephens","followers_url":"https://api.github.com/users/brandonstephens/followers","following_url":"https://api.github.com/users/brandonstephens/following{/other_user}","gists_url":"https://api.github.com/users/brandonstephens/gists{/gist_id}","starred_url":"https://api.github.com/users/brandonstephens/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brandonstephens/subscriptions","organizations_url":"https://api.github.com/users/brandonstephens/orgs","repos_url":"https://api.github.com/users/brandonstephens/repos","events_url":"https://api.github.com/users/brandonstephens/events{/privacy}","received_events_url":"https://api.github.com/users/brandonstephens/received_events","type":"User","site_admin":false,"contributions":1},{"login":"mrbrianhinton","id":2288431,"node_id":"MDQ6VXNlcjIyODg0MzE=","avatar_url":"https://avatars.githubusercontent.com/u/2288431?v=4","gravatar_id":"","url":"https://api.github.com/users/mrbrianhinton","html_url":"https://github.com/mrbrianhinton","followers_url":"https://api.github.com/users/mrbrianhinton/followers","following_url":"https://api.github.com/users/mrbrianhinton/following{/other_user}","gists_url":"https://api.github.com/users/mrbrianhinton/gists{/gist_id}","starred_url":"https://api.github.com/users/mrbrianhinton/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mrbrianhinton/subscriptions","organizations_url":"https://api.github.com/users/mrbrianhinton/orgs","repos_url":"https://api.github.com/users/mrbrianhinton/repos","events_url":"https://api.github.com/users/mrbrianhinton/events{/privacy}","received_events_url":"https://api.github.com/users/mrbrianhinton/received_events","type":"User","site_admin":false,"contributions":1},{"login":"BryanPan342","id":44623317,"node_id":"MDQ6VXNlcjQ0NjIzMzE3","avatar_url":"https://avatars.githubusercontent.com/u/44623317?v=4","gravatar_id":"","url":"https://api.github.com/users/BryanPan342","html_url":"https://github.com/BryanPan342","followers_url":"https://api.github.com/users/BryanPan342/followers","following_url":"https://api.github.com/users/BryanPan342/following{/other_user}","gists_url":"https://api.github.com/users/BryanPan342/gists{/gist_id}","starred_url":"https://api.github.com/users/BryanPan342/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BryanPan342/subscriptions","organizations_url":"https://api.github.com/users/BryanPan342/orgs","repos_url":"https://api.github.com/users/BryanPan342/repos","events_url":"https://api.github.com/users/BryanPan342/events{/privacy}","received_events_url":"https://api.github.com/users/BryanPan342/received_events","type":"User","site_admin":false,"contributions":1},{"login":"cassidoo","id":1454517,"node_id":"MDQ6VXNlcjE0NTQ1MTc=","avatar_url":"https://avatars.githubusercontent.com/u/1454517?v=4","gravatar_id":"","url":"https://api.github.com/users/cassidoo","html_url":"https://github.com/cassidoo","followers_url":"https://api.github.com/users/cassidoo/followers","following_url":"https://api.github.com/users/cassidoo/following{/other_user}","gists_url":"https://api.github.com/users/cassidoo/gists{/gist_id}","starred_url":"https://api.github.com/users/cassidoo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cassidoo/subscriptions","organizations_url":"https://api.github.com/users/cassidoo/orgs","repos_url":"https://api.github.com/users/cassidoo/repos","events_url":"https://api.github.com/users/cassidoo/events{/privacy}","received_events_url":"https://api.github.com/users/cassidoo/received_events","type":"User","site_admin":false,"contributions":1}]} \ No newline at end of file diff --git a/smoke/astro.build-main/src/icons/after.svg b/smoke/astro.build-main/src/icons/after.svg deleted file mode 100644 index 369711608..000000000 --- a/smoke/astro.build-main/src/icons/after.svg +++ /dev/null @@ -1,48 +0,0 @@ -<svg width="73" height="46" viewBox="0 0 73 46" fill="none" xmlns="http://www.w3.org/2000/svg"> -<circle cx="29.5" cy="18.5" r="17.5" fill="#C4C4C4"/> -<circle cx="29.5" cy="18.5" r="17.5" fill="url(#paint0_linear_706_219)"/> -<g filter="url(#filter0_dddd_706_219)"> -<circle cx="29.5" cy="18.5" r="18.5" fill="url(#paint1_linear_706_219)"/> -</g> -<path fill-rule="evenodd" clip-rule="evenodd" d="M32.6986 10.0057C32.8635 10.2045 32.9476 10.4729 33.1159 11.0094L36.7913 22.733C35.4107 22.0374 33.929 21.5503 32.3971 21.2885L30.0041 13.4362C29.985 13.3736 29.9456 13.3186 29.8916 13.2795C29.8377 13.2405 29.7722 13.2194 29.7049 13.2195C29.6377 13.2196 29.5722 13.2408 29.5184 13.28C29.4646 13.3193 29.4253 13.3743 29.4064 13.437L27.0423 21.2845C25.5036 21.5451 24.015 22.033 22.6284 22.7313L26.3218 11.0068C26.4907 10.471 26.575 10.2032 26.7399 10.0047C26.8856 9.82949 27.075 9.69337 27.2902 9.60938C27.5339 9.51428 27.8224 9.51428 28.3994 9.51428H31.0375C31.6152 9.51428 31.904 9.51428 32.148 9.60962C32.3634 9.69378 32.5529 9.83013 32.6986 10.0057Z" fill="white"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M32.8973 23.4193C32.3272 23.9301 31.1892 24.2784 29.8784 24.2784C28.2695 24.2784 26.921 23.7536 26.5633 23.048C26.4353 23.4525 26.4067 23.9153 26.4067 24.211C26.4067 24.211 26.3223 25.6629 27.2863 26.6728C27.2863 26.1484 27.692 25.7233 28.1926 25.7233C29.0505 25.7233 29.0495 26.5075 29.0487 27.1436V27.2004C29.0487 28.166 29.6121 28.9937 30.4132 29.3426C30.2899 29.0767 30.226 28.7849 30.2264 28.4893C30.2264 27.5683 30.7425 27.2254 31.3423 26.827C31.8196 26.5099 32.3498 26.1576 32.7152 25.4508C32.912 25.0701 33.0148 24.6439 33.0141 24.211C33.0141 23.935 32.9732 23.669 32.8973 23.4193Z" fill="white"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M32.8973 23.4193C32.3272 23.9301 31.1892 24.2784 29.8784 24.2784C28.2695 24.2784 26.921 23.7536 26.5633 23.048C26.4353 23.4525 26.4067 23.9153 26.4067 24.211C26.4067 24.211 26.3223 25.6629 27.2863 26.6728C27.2863 26.1484 27.692 25.7233 28.1926 25.7233C29.0505 25.7233 29.0495 26.5075 29.0487 27.1436V27.2004C29.0487 28.166 29.6121 28.9937 30.4132 29.3426C30.2899 29.0767 30.226 28.7849 30.2264 28.4893C30.2264 27.5683 30.7425 27.2254 31.3423 26.827C31.8196 26.5099 32.3498 26.1576 32.7152 25.4508C32.912 25.0701 33.0148 24.6439 33.0141 24.211C33.0141 23.935 32.9732 23.669 32.8973 23.4193Z" fill="url(#paint2_linear_706_219)"/> -<defs> -<filter id="filter0_dddd_706_219" x="-13.8429" y="0" width="86.6857" height="88.8" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> -<feFlood flood-opacity="0" result="BackgroundImageFix"/> -<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> -<feOffset dy="1.22083"/> -<feGaussianBlur stdDeviation="0.562542"/> -<feColorMatrix type="matrix" values="0 0 0 0 0.192157 0 0 0 0 0.0745098 0 0 0 0 0.227451 0 0 0 0.0418093 0"/> -<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_706_219"/> -<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> -<feOffset dy="3.37545"/> -<feGaussianBlur stdDeviation="1.55536"/> -<feColorMatrix type="matrix" values="0 0 0 0 0.192157 0 0 0 0 0.0745098 0 0 0 0 0.227451 0 0 0 0.06 0"/> -<feBlend mode="normal" in2="effect1_dropShadow_706_219" result="effect2_dropShadow_706_219"/> -<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> -<feOffset dy="8.12679"/> -<feGaussianBlur stdDeviation="3.7447"/> -<feColorMatrix type="matrix" values="0 0 0 0 0.192157 0 0 0 0 0.0745098 0 0 0 0 0.227451 0 0 0 0.0781907 0"/> -<feBlend mode="normal" in2="effect2_dropShadow_706_219" result="effect3_dropShadow_706_219"/> -<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> -<feOffset dy="26.9571"/> -<feGaussianBlur stdDeviation="12.4214"/> -<feColorMatrix type="matrix" values="0 0 0 0 0.192157 0 0 0 0 0.0745098 0 0 0 0 0.227451 0 0 0 0.12 0"/> -<feBlend mode="normal" in2="effect3_dropShadow_706_219" result="effect4_dropShadow_706_219"/> -<feBlend mode="normal" in="SourceGraphic" in2="effect4_dropShadow_706_219" result="shape"/> -</filter> -<linearGradient id="paint0_linear_706_219" x1="29.5" y1="1" x2="29.5" y2="36" gradientUnits="userSpaceOnUse"> -<stop stop-color="#FA8C5D"/> -<stop offset="1" stop-color="#CC2727"/> -</linearGradient> -<linearGradient id="paint1_linear_706_219" x1="29.5" y1="-4.36615e-09" x2="29.3535" y2="42.5428" gradientUnits="userSpaceOnUse"> -<stop stop-color="#205EFF"/> -<stop offset="1" stop-color="#C238BD"/> -</linearGradient> -<linearGradient id="paint2_linear_706_219" x1="29.7095" y1="23.048" x2="29.7095" y2="29.3426" gradientUnits="userSpaceOnUse"> -<stop stop-color="#FFCD83"/> -<stop offset="1" stop-color="#EC672C"/> -</linearGradient> -</defs> -</svg> diff --git a/smoke/astro.build-main/src/icons/before.svg b/smoke/astro.build-main/src/icons/before.svg deleted file mode 100644 index 3be95029e..000000000 --- a/smoke/astro.build-main/src/icons/before.svg +++ /dev/null @@ -1,37 +0,0 @@ -<svg width="72" height="45" viewBox="0 0 72 45" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g filter="url(#filter0_dddd_706_218)"> -<circle cx="29.5" cy="17.5" r="17.5" fill="#C4C4C4"/> -<circle cx="29.5" cy="17.5" r="17.5" fill="url(#paint0_linear_706_218)"/> -</g> -<path fill-rule="evenodd" clip-rule="evenodd" d="M29.75 19.4606L35.7893 25.4999L37.4999 23.7893L31.4606 17.75L37.5 11.7107L35.7894 10.0001L29.75 16.0394L23.7106 10L22 11.7106L28.0394 17.75L22 23.7894L23.7106 25.5L29.75 19.4606Z" fill="white"/> -<defs> -<filter id="filter0_dddd_706_218" x="-12.8429" y="0" width="84.6857" height="86.8" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> -<feFlood flood-opacity="0" result="BackgroundImageFix"/> -<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> -<feOffset dy="1.22083"/> -<feGaussianBlur stdDeviation="0.562542"/> -<feColorMatrix type="matrix" values="0 0 0 0 0.192157 0 0 0 0 0.0745098 0 0 0 0 0.227451 0 0 0 0.0418093 0"/> -<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_706_218"/> -<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> -<feOffset dy="3.37545"/> -<feGaussianBlur stdDeviation="1.55536"/> -<feColorMatrix type="matrix" values="0 0 0 0 0.192157 0 0 0 0 0.0745098 0 0 0 0 0.227451 0 0 0 0.06 0"/> -<feBlend mode="normal" in2="effect1_dropShadow_706_218" result="effect2_dropShadow_706_218"/> -<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> -<feOffset dy="8.12679"/> -<feGaussianBlur stdDeviation="3.7447"/> -<feColorMatrix type="matrix" values="0 0 0 0 0.192157 0 0 0 0 0.0745098 0 0 0 0 0.227451 0 0 0 0.0781907 0"/> -<feBlend mode="normal" in2="effect2_dropShadow_706_218" result="effect3_dropShadow_706_218"/> -<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> -<feOffset dy="26.9571"/> -<feGaussianBlur stdDeviation="12.4214"/> -<feColorMatrix type="matrix" values="0 0 0 0 0.192157 0 0 0 0 0.0745098 0 0 0 0 0.227451 0 0 0 0.12 0"/> -<feBlend mode="normal" in2="effect3_dropShadow_706_218" result="effect4_dropShadow_706_218"/> -<feBlend mode="normal" in="SourceGraphic" in2="effect4_dropShadow_706_218" result="shape"/> -</filter> -<linearGradient id="paint0_linear_706_218" x1="29.5" y1="0" x2="29.5" y2="35" gradientUnits="userSpaceOnUse"> -<stop stop-color="#FA8C5D"/> -<stop offset="1" stop-color="#CC2727"/> -</linearGradient> -</defs> -</svg> diff --git a/smoke/astro.build-main/src/icons/frameworks/alpine.svg b/smoke/astro.build-main/src/icons/frameworks/alpine.svg deleted file mode 100644 index 6daac0de4..000000000 --- a/smoke/astro.build-main/src/icons/frameworks/alpine.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 190 190"> - <path fill="currentColor" fill-rule="evenodd" d="m148 52 42 42-42 42-42-42 42-42Z" clip-rule="evenodd" opacity=".4"/> - <path fill="currentColor" fill-rule="evenodd" d="m42 52 88 87H45L0 94l42-42Z" clip-rule="evenodd"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/frameworks/js.svg b/smoke/astro.build-main/src/icons/frameworks/js.svg deleted file mode 100644 index 13b7847e2..000000000 --- a/smoke/astro.build-main/src/icons/frameworks/js.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 190 190"> - <path fill="currentColor" fill-rule="evenodd" d="M25 20h140c3 0 5 2 5 5v140c0 3-2 5-5 5H25c-3 0-5-2-5-5V25c0-3 2-5 5-5Zm111 126c-7 0-11-4-14-9l-12 7c4 8 13 14 26 14s23-7 23-19-7-17-19-23l-3-1c-6-3-9-4-9-9 0-3 3-6 7-6s7 2 9 6l11-7c-5-8-11-11-20-11-13 0-21 8-21 19s7 17 17 21l4 1c6 3 10 5 10 10 0 4-4 7-9 7Zm-55 0c-5 0-7-4-9-8l-12 7c4 7 10 13 22 13s21-6 21-21V89H88v48c0 7-2 9-7 9Z" clip-rule="evenodd"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/frameworks/lit.svg b/smoke/astro.build-main/src/icons/frameworks/lit.svg deleted file mode 100644 index 6c37291ec..000000000 --- a/smoke/astro.build-main/src/icons/frameworks/lit.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 190 190"> - <path fill="currentColor" d="M95 143V79l33-33v65l-33 32Zm-65 0 32 33v-65H46"/> - <path fill="currentColor" d="M62 111V46l33-32v65l-33 32Zm66 65v-65l32-32v64l-32 33Zm-98-33V79l32 32"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/frameworks/preact.svg b/smoke/astro.build-main/src/icons/frameworks/preact.svg deleted file mode 100644 index d2fb20945..000000000 --- a/smoke/astro.build-main/src/icons/frameworks/preact.svg +++ /dev/null @@ -1,6 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 190 190"> - <path fill="currentColor" d="m101 61 24-10c6-2 12-3 17-2 4 0 7 1 9 4 1 2 2 5 1 9l-6 16-10 13a181 181 0 0 0-35-30ZM54 91l-9-13c-4-6-6-11-7-16 0-4 0-7 2-9 2-3 4-4 9-4 4-1 10 0 17 2l24 10a190 190 0 0 0-36 30Z"/> - <path fill="currentColor" fill-rule="evenodd" d="M58 95a174 174 0 0 1 37-30 182 182 0 0 1 37 30 174 174 0 0 1-37 30 182 182 0 0 1-37-30Zm37 13a13 13 0 1 0 0-26 13 13 0 0 0 0 26Z" clip-rule="evenodd"/> - <path fill="currentColor" d="m54 99-9 13c-4 6-6 11-7 16 0 4 0 7 2 9 2 3 4 4 9 4 4 1 10 0 17-2l24-10a191 191 0 0 1-36-30Zm47 30 24 10c6 2 12 3 17 2 4 0 7-1 9-4 1-2 2-5 1-9l-6-16-10-13a181 181 0 0 1-35 30Z"/> - <path fill="currentColor" fill-rule="evenodd" d="M178 48 95 0 13 48v95l82 47 83-47V48ZM95 58c10-6 20-10 28-13 7-2 14-3 19-2 6 0 10 2 13 6s4 9 3 14c-1 6-4 12-7 18l-11 14 11 14c3 6 6 12 7 18 1 5 0 10-3 14s-7 6-13 6c-5 1-12 0-19-2-8-3-18-7-28-13-10 6-19 10-28 13-7 2-13 3-19 2-5 0-10-2-13-6s-3-9-2-14c1-6 3-12 7-18l10-14-10-14c-4-6-6-12-7-18-1-5-1-10 2-14s8-6 13-6c6-1 12 0 19 2 9 3 18 7 28 13Z" clip-rule="evenodd"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/frameworks/react.svg b/smoke/astro.build-main/src/icons/frameworks/react.svg deleted file mode 100644 index 49a29f662..000000000 --- a/smoke/astro.build-main/src/icons/frameworks/react.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 190 190"> - <path fill="currentColor" d="M190 95c0-13-16-25-40-32 6-25 3-45-8-51l-8-2v9l4 1c5 3 8 14 6 29l-2 11-25-4c-5-7-10-14-16-19 13-12 25-18 33-18v-9c-11 0-25 8-39 21-14-13-28-21-39-21v9c8 0 20 6 33 18L73 56l-25 4-2-11c-2-15 1-26 6-29l4-1v-9l-9 2c-10 7-13 26-7 51C16 70 0 82 0 95c0 12 16 24 40 32-6 24-3 44 8 50 2 2 5 2 8 2 11 0 25-7 39-21 14 14 28 21 39 21l9-2c10-6 13-26 7-51 24-7 40-19 40-31Zm-50-26-6 15a184 184 0 0 0-10-18l16 3Zm-18 41-9 15a202 202 0 0 1-35 0 213 213 0 0 1-18-30 202 202 0 0 1 17-31 202 202 0 0 1 35 0 213 213 0 0 1 18 31l-8 15Zm12-5 6 15-16 4a212 212 0 0 0 10-19Zm-39 41-11-12a240 240 0 0 0 22 0l-11 12Zm-29-22-16-4 6-15a183 183 0 0 0 10 19Zm29-81 11 12a240 240 0 0 0-22 0l11-12ZM66 66a214 214 0 0 0-10 18l-6-15 16-3Zm-35 48c-14-6-22-13-22-19s8-14 22-20l11-4 9 24-9 23-11-4Zm21 56c-5-3-8-15-6-30l2-11 25 4c5 7 10 14 16 19-13 12-25 19-33 19l-4-1Zm92-30c2 15-1 26-6 29l-4 1c-8 0-20-6-33-18 6-5 11-12 16-19l25-4 2 11Zm15-26-11 4-9-23 9-24 11 4c14 6 22 14 22 20s-9 13-22 19Z"/> - <path fill="currentColor" d="M95 112a18 18 0 1 0 0-35 18 18 0 0 0 0 35Z"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/frameworks/solid.svg b/smoke/astro.build-main/src/icons/frameworks/solid.svg deleted file mode 100644 index 98db7ef55..000000000 --- a/smoke/astro.build-main/src/icons/frameworks/solid.svg +++ /dev/null @@ -1,6 +0,0 @@ -<svg width="190" height="190" viewBox="0 0 190 190" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M127.61 135.052C121.624 127.573 113.542 122.052 104.399 119.195C95.2561 116.338 85.4683 116.275 76.2893 119.014L10 140.398C10 140.398 66.6667 183.165 110.503 172.473L113.711 171.404C131.887 166.058 138.302 148.951 127.61 135.052Z" fill="currentColor" fill-opacity="0.85"/> - <path d="M125.783 81.7735C134.926 84.6307 143.008 90.152 148.994 97.6304C154.34 106.184 155.409 114.737 151.132 122.222L129.748 160.712L129.314 160.639C134.288 153.175 134.123 143.518 127.61 135.052C121.624 127.573 113.542 122.052 104.399 119.195C95.2561 116.338 85.4683 116.275 76.2893 119.014L10 140.398L31.3836 102.976L97.673 81.5926C106.852 78.8533 116.64 78.9163 125.783 81.7735Z" fill="currentColor" fill-opacity="0.65"/> - <path d="M57.0441 50.5863L61.3208 49.5171C104.088 39.8945 160.755 81.5926 160.755 81.5926L139.663 88.7366C135.466 85.6958 130.783 83.3362 125.783 81.7735C116.64 78.9163 106.852 78.8533 97.673 81.5926L51.96 96.3387C48.5484 93.9348 45.5491 91.1335 43.1447 88.0077C33.5221 73.0392 38.868 55.9322 57.0441 50.5863Z" fill="currentColor" fill-opacity="0.45"/> - <path d="M79.4969 17.4417C123.333 7.81904 180 49.5172 180 49.5172L160.755 81.5926C160.755 81.5926 104.088 39.8945 61.3208 49.5172L57.0441 50.5863C51.0678 52.344 46.4787 55.3732 43.3525 59.1798C43.2832 59.1664 43.2139 59.1531 43.1447 59.1398L59.1824 31.3411L61.3208 28.1335C64.5283 23.8568 69.8742 20.6492 76.2893 18.5109L79.4969 17.4417Z" fill="currentColor" fill-opacity="0.3"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/frameworks/svelte.svg b/smoke/astro.build-main/src/icons/frameworks/svelte.svg deleted file mode 100644 index c44162190..000000000 --- a/smoke/astro.build-main/src/icons/frameworks/svelte.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 190 190"> - <path fill="currentColor" fill-rule="evenodd" d="M87 14c23-15 56-8 72 15v1a50 50 0 0 1 9 38c-1 6-4 12-7 17a50 50 0 0 1-3 51c-4 5-8 10-14 13l-41 26a54 54 0 0 1-81-33v-20c1-7 3-13 7-18a50 50 0 0 1 2-50c4-6 9-10 14-14l42-26ZM63 161c6 2 13 3 20 1l8-4 41-26a28 28 0 0 0 13-31l-5-11a33 33 0 0 0-35-13l-9 4-15 10a9 9 0 0 1-9 0 10 10 0 0 1-6-6v-4a9 9 0 0 1 4-6l41-26 3-1a10 10 0 0 1 10 4l2 6v1l1 1c6 2 12 4 16 8l3 1v-2l1-4a30 30 0 0 0-5-23 33 33 0 0 0-35-13l-8 4-42 26a28 28 0 0 0-13 19 30 30 0 0 0 6 23 33 33 0 0 0 35 13c3 0 5-2 8-3l16-10 2-2a10 10 0 0 1 12 8l1 3a9 9 0 0 1-4 6l-42 26-2 1a10 10 0 0 1-12-10v-1l-2-1c-6-1-11-4-16-8l-2-1-1 2-1 4a30 30 0 0 0 5 23c4 5 10 10 16 12Z" clip-rule="evenodd"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/frameworks/vue.svg b/smoke/astro.build-main/src/icons/frameworks/vue.svg deleted file mode 100644 index fe70cbc99..000000000 --- a/smoke/astro.build-main/src/icons/frameworks/vue.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg width="190" height="190" viewBox="0 0 190 190" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M149.4 17.0008H185.426L95.3608 172.999L5.2959 17.0008H41.3223L95.3611 110.598L149.4 17.0008Z" fill="currentColor"/> - <path d="M116.16 17.0007L95.3604 53.0268L74.5613 17.0007H41.3223L95.3611 110.598L149.4 17.0007H116.16Z" fill="currentColor" fill-opacity="0.45"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/img.svg b/smoke/astro.build-main/src/icons/img.svg deleted file mode 100644 index 090beabcd..000000000 --- a/smoke/astro.build-main/src/icons/img.svg +++ /dev/null @@ -1,9 +0,0 @@ -<svg width="198" height="156" viewBox="0 0 198 156" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M7.75293 0.613281C3.6836 0.613281 0.384766 3.91212 0.384766 7.98145V148.468C0.384766 152.537 3.68361 155.836 7.75294 155.836H190.483C194.553 155.836 197.852 152.537 197.852 148.468V7.98145C197.852 3.91212 194.553 0.613281 190.483 0.613281H7.75293ZM72.661 19.2793H63.1662V21.6528H58.4188V24.027H53.6714V28.7747H51.2975V33.5212H46.5504V38.2688H44.1766V47.7636H46.5504V52.5108H51.2975V57.2591H53.6714V62.0062H58.4188V64.3794H63.1662V66.7533H72.661V64.3794H77.4084V62.0062H82.1558V57.2591H84.5293V52.5108H89.2771V47.7636H91.6506V38.2688H89.2771V33.5212H84.5293V28.7747H82.1558V24.027H77.4084V21.6528H72.661V19.2793ZM45.09 128.835H38.6992V137.964H166.514V129.748H162.862V121.531H159.21V114.227H154.645V107.837H150.081V98.7069H146.429V91.4032H141.864V81.3606H137.299V74.9699H133.647V69.4921H129.995V63.1014H124.518V69.4921H120.866V74.9699H117.214V81.3606H113.562V91.4032H109.91V98.7069H105.345V107.837H99.8676V114.227H90.738V107.837H85.2603V101.446H77.9566V95.055H67.001V101.446H62.4362V107.837H56.9585V114.227H51.4807V120.618H45.09V128.835Z" fill="url(#paint0_linear_438_862)"/> -<defs> -<linearGradient id="paint0_linear_438_862" x1="70.4264" y1="0.613281" x2="70.4264" y2="155.836" gradientUnits="userSpaceOnUse"> -<stop stop-color="#FFB4B4"/> -<stop offset="1" stop-color="#C487F0"/> -</linearGradient> -</defs> -</svg> diff --git a/smoke/astro.build-main/src/icons/logo-single-color.svg b/smoke/astro.build-main/src/icons/logo-single-color.svg deleted file mode 100644 index 9ada56d3b..000000000 --- a/smoke/astro.build-main/src/icons/logo-single-color.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg width="256" height="256" fill="none" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg"> - <path id="a" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M163.008 18.929c1.944 2.413 2.935 5.67 4.917 12.181l43.309 142.27a180.277 180.277 0 00-51.778-17.53l-28.198-95.29a3.67 3.67 0 00-7.042.01l-27.857 95.232a180.225 180.225 0 00-52.01 17.557l43.52-142.281c1.99-6.502 2.983-9.752 4.927-12.16a15.999 15.999 0 016.484-4.798c2.872-1.154 6.271-1.154 13.07-1.154h31.085c6.807 0 10.211 0 13.086 1.157a16.004 16.004 0 016.487 4.806z" /> - <path id="flame" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M168.19 180.151c-7.139 6.105-21.39 10.268-37.804 10.268-20.147 0-37.033-6.272-41.513-14.707-1.602 4.835-1.961 10.367-1.961 13.902 0 0-1.056 17.355 11.015 29.426 0-6.268 5.081-11.349 11.349-11.349 10.743 0 10.731 9.373 10.721 16.977v.679c0 11.542 7.054 21.436 17.086 25.606a23.27 23.27 0 01-2.339-10.2c0-11.008 6.463-15.107 13.974-19.87 5.976-3.79 12.616-8.001 17.192-16.449a31.024 31.024 0 003.743-14.82c0-3.299-.513-6.479-1.463-9.463z" /> -</svg> diff --git a/smoke/astro.build-main/src/icons/logo.svg b/smoke/astro.build-main/src/icons/logo.svg deleted file mode 100644 index f375b2356..000000000 --- a/smoke/astro.build-main/src/icons/logo.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg width="256" height="256" fill="none" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg"> - <path id="a" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M163.008 18.929c1.944 2.413 2.935 5.67 4.917 12.181l43.309 142.27a180.277 180.277 0 00-51.778-17.53l-28.198-95.29a3.67 3.67 0 00-7.042.01l-27.857 95.232a180.225 180.225 0 00-52.01 17.557l43.52-142.281c1.99-6.502 2.983-9.752 4.927-12.16a15.999 15.999 0 016.484-4.798c2.872-1.154 6.271-1.154 13.07-1.154h31.085c6.807 0 10.211 0 13.086 1.157a16.004 16.004 0 016.487 4.806z" /> - <path id="flame" fill="#FF5D01" fill-rule="evenodd" clip-rule="evenodd" d="M168.19 180.151c-7.139 6.105-21.39 10.268-37.804 10.268-20.147 0-37.033-6.272-41.513-14.707-1.602 4.835-1.961 10.367-1.961 13.902 0 0-1.056 17.355 11.015 29.426 0-6.268 5.081-11.349 11.349-11.349 10.743 0 10.731 9.373 10.721 16.977v.679c0 11.542 7.054 21.436 17.086 25.606a23.27 23.27 0 01-2.339-10.2c0-11.008 6.463-15.107 13.974-19.87 5.976-3.79 12.616-8.001 17.192-16.449a31.024 31.024 0 003.743-14.82c0-3.299-.513-6.479-1.463-9.463z" /> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/alpinejs.svg b/smoke/astro.build-main/src/icons/logos/alpinejs.svg deleted file mode 100644 index 615cb07b3..000000000 --- a/smoke/astro.build-main/src/icons/logos/alpinejs.svg +++ /dev/null @@ -1,12 +0,0 @@ -<svg width="804" height="220" viewBox="0 0 804 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0_643_230)"> -<path d="M268.472 151.666L273.225 136.331H303.375L308.129 151.666H330.074L302.268 64.4639H275.765L246.332 151.666H268.472ZM298.622 120.931H278.5L288.724 89.0262L298.622 120.931ZM364.261 151.666V61.9947H343.423V151.666H364.261ZM407.239 182.727L407.238 148.972L407.303 149.031C407.957 149.634 408.657 150.175 409.402 150.653L409.779 150.887C412.948 152.793 416.898 153.746 421.63 153.746C427.057 153.746 432.147 152.403 436.9 149.717C441.654 147.031 445.496 143.154 448.426 138.086C451.357 133.017 452.822 126.888 452.822 119.697C452.822 112.462 451.378 106.311 448.491 101.242C445.605 96.1739 441.86 92.2968 437.259 89.611C432.657 86.9252 427.795 85.5823 422.672 85.5823C418.808 85.5823 415.162 86.5678 411.732 88.5388C409.263 89.958 407.137 92.0003 405.354 94.6658L405.097 95.0587L403.397 87.6616H386.401V182.727H407.239ZM418.309 134.772C416.312 134.772 414.467 134.404 412.774 133.667C411.081 132.931 409.735 131.913 408.737 130.613C407.738 129.313 407.239 127.797 407.239 126.065H407.238V115.538L407.246 115.091C407.302 113.173 407.725 111.474 408.515 109.995L408.704 109.657C409.681 107.989 411.038 106.701 412.774 105.791C414.511 104.881 416.486 104.426 418.7 104.426C421.435 104.426 423.79 105.054 425.765 106.311C427.74 107.567 429.271 109.343 430.356 111.639C431.441 113.935 431.984 116.621 431.984 119.697C431.984 123.335 431.257 126.259 429.803 128.469C428.348 130.678 426.568 132.281 424.463 133.277C422.357 134.274 420.306 134.772 418.309 134.772ZM481.8 79.4092C485.62 79.4092 488.637 78.402 490.851 76.3877C493.065 74.3733 494.172 71.525 494.172 67.8429C494.172 64.2473 493.065 61.3774 490.851 59.2331C488.637 57.0888 485.62 56.0166 481.8 56.0166C477.849 56.0166 474.799 57.0888 472.65 59.2331C470.501 61.3774 469.427 64.2473 469.427 67.8429C469.427 71.525 470.501 74.3733 472.65 76.3877C474.799 78.402 477.849 79.4092 481.8 79.4092ZM492.218 151.666V87.2717H471.381V151.666H492.218ZM537.02 151.666V124.7L537.024 124.038C537.073 119.668 537.616 116.094 538.652 113.317L538.811 112.906C540.004 109.939 541.6 107.784 543.597 106.441C545.594 105.098 547.786 104.426 550.174 104.426C552.518 104.426 554.515 105.239 556.165 106.863C557.814 108.488 558.639 110.989 558.639 114.368V151.666H579.607V114.368C579.607 108.78 578.782 103.82 577.133 99.4879C575.483 95.1559 572.911 91.7553 569.416 89.2861C565.922 86.8169 561.418 85.5823 555.904 85.5823C551.085 85.5823 546.777 86.9252 542.978 89.611C540.62 91.2781 538.572 93.5376 536.833 96.3896L536.654 96.6891L534.545 87.6616H516.182V151.666H537.02ZM625.646 153.746C630.942 153.746 635.62 152.793 639.679 150.887C643.738 148.981 647.037 146.403 649.577 143.154C652.117 139.905 653.712 136.288 654.363 132.303H633.656C633.091 133.992 632.093 135.227 630.66 136.006C629.227 136.786 627.556 137.176 625.646 137.176C623.302 137.176 621.359 136.624 619.818 135.519C618.277 134.414 617.115 132.866 616.334 130.873C615.553 128.88 615.162 126.519 615.162 123.79L615.163 123.92H653.712C654.74 119.324 654.94 114.854 654.313 110.51L654.2 109.787C653.441 105.217 651.834 101.112 649.382 97.4735C646.929 93.8347 643.705 90.9431 639.712 88.7988C635.718 86.6544 631.029 85.5823 625.646 85.5823C620.219 85.5823 615.14 86.9252 610.408 89.611C605.676 92.2968 601.856 96.1631 598.947 101.21C596.039 106.257 594.584 112.311 594.584 119.372C594.584 126.433 596.05 132.541 598.98 137.696C601.91 142.851 605.741 146.815 610.473 149.587C615.205 152.36 620.263 153.746 625.646 153.746ZM635.543 113.394H615.255L615.257 113.376C615.415 111.599 615.771 110.019 616.325 108.636L616.497 108.228C617.387 106.213 618.646 104.675 620.274 103.614C621.902 102.553 623.823 102.022 626.037 102.022C628.034 102.022 629.672 102.423 630.953 103.224C632.234 104.026 633.221 105.087 633.916 106.408C634.611 107.729 635.077 109.17 635.316 110.729C635.435 111.509 635.509 112.283 635.536 113.052L635.543 113.394ZM676.503 152.836C680.628 152.836 684.035 151.591 686.727 149.1C689.418 146.609 690.764 143.436 690.764 139.58C690.764 135.725 689.418 132.519 686.727 129.963C684.035 127.407 680.628 126.129 676.503 126.129C672.379 126.129 669.026 127.407 666.443 129.963C663.86 132.519 662.568 135.725 662.568 139.58C662.568 143.392 663.86 146.555 666.443 149.067C669.026 151.58 672.379 152.836 676.503 152.836ZM716.291 79.4092C720.111 79.4092 723.128 78.402 725.342 76.3877C727.556 74.3733 728.663 71.525 728.663 67.8429C728.663 64.2473 727.556 61.3774 725.342 59.2331C723.128 57.0888 720.111 56.0166 716.291 56.0166C712.47 56.0166 709.432 57.0888 707.174 59.2331C704.917 61.3774 703.788 64.2473 703.788 67.8429C703.788 71.525 704.917 74.3733 707.174 76.3877C709.432 78.402 712.47 79.4092 716.291 79.4092ZM703.853 185.001C711.45 185.001 717.202 182.932 721.109 178.795C725.017 174.658 726.97 167.673 726.97 157.839V87.4017H706.002V157.45C706.002 161.175 705.34 163.666 704.016 164.922C702.692 166.179 700.684 166.807 697.992 166.807C695.909 166.807 693.651 166.503 691.22 165.897C688.789 165.29 686.64 164.619 684.773 163.883V181.752C687.769 182.575 690.743 183.322 693.695 183.994C696.647 184.665 700.033 185.001 703.853 185.001ZM775.679 153.746C781.062 153.746 785.881 152.749 790.135 150.757C794.389 148.764 797.743 146.176 800.196 142.992C802.648 139.808 803.875 136.44 803.875 132.887C803.875 128.989 802.616 125.74 800.098 123.14C797.58 120.541 794.129 118.375 789.744 116.642L772.032 109.56C769.297 108.607 767.93 107.307 767.93 105.661C767.93 104.448 768.581 103.473 769.883 102.737C771.185 102 772.965 101.632 775.223 101.632C777.958 101.632 779.911 102.141 781.083 103.159C782.256 104.177 782.842 105.379 782.842 106.766H801.921C801.878 100.614 799.555 95.5458 794.954 91.5604C790.352 87.575 783.775 85.5823 775.223 85.5823C766.106 85.5823 758.922 87.3367 753.669 90.8456C748.416 94.3545 745.789 98.9464 745.789 104.621C745.789 108.65 747.037 112.126 749.534 115.05C752.03 117.975 755.579 120.39 760.18 122.296L775.744 128.339C777.393 128.989 778.609 129.638 779.39 130.288C780.172 130.938 780.562 131.804 780.562 132.887C780.562 133.71 780.28 134.479 779.716 135.194C779.152 135.909 778.305 136.483 777.176 136.916C776.048 137.349 774.615 137.566 772.879 137.566C770.013 137.566 767.745 137.133 766.074 136.266C764.402 135.4 763.523 133.84 763.436 131.588H744.617C744.574 136.57 745.865 140.696 748.492 143.966C751.118 147.237 754.776 149.685 759.464 151.309C764.153 152.934 769.557 153.746 775.679 153.746Z" fill="black"/> -<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M165.911 58.6899L213.118 105.59L165.911 152.49L118.704 105.59L165.911 58.6899Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M47.8924 58.6899L145.759 155.92H51.3445L0.685059 105.59L47.8924 58.6899Z" fill="black"/> -</g> -<defs> -<clipPath id="clip0_643_230"> -<rect width="804" height="129.001" fill="white" transform="translate(0 56)"/> -</clipPath> -</defs> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/cloudflare.svg b/smoke/astro.build-main/src/icons/logos/cloudflare.svg deleted file mode 100644 index 35e54bfe2..000000000 --- a/smoke/astro.build-main/src/icons/logos/cloudflare.svg +++ /dev/null @@ -1,16 +0,0 @@ -<svg width="1087" height="220" viewBox="0 0 1087 220" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M1080.97 148.7C1077.57 148.7 1074.87 146 1074.87 142.6C1074.87 139.3 1077.57 136.5 1080.97 136.5C1084.27 136.5 1087.07 139.2 1087.07 142.6C1087.07 146 1084.27 148.7 1080.97 148.7ZM1080.97 137.7C1078.27 137.7 1076.07 139.9 1076.07 142.6C1076.07 145.3 1078.27 147.5 1080.97 147.5C1083.67 147.5 1085.87 145.3 1085.87 142.6C1085.87 139.9 1083.67 137.7 1080.97 137.7ZM1084.07 145.8H1082.67L1081.47 143.5H1079.87V145.8H1078.57V139.1H1081.77C1083.17 139.1 1084.07 140 1084.07 141.3C1084.07 142.3 1083.47 143 1082.67 143.3L1084.07 145.8ZM1081.67 142.3C1082.17 142.3 1082.67 142 1082.67 141.3C1082.67 140.5 1082.27 140.3 1081.67 140.3H1079.67V142.3H1081.67Z" fill="currentColor"/> - <path d="M445.474 135.9H461.074V178.4H488.174V192H445.474V135.9Z" fill="currentColor"/> - <path d="M504.274 164.1V164C504.274 147.9 517.274 134.8 534.574 134.8C551.874 134.8 564.674 147.7 564.674 163.8V164C564.674 180.1 551.674 193.2 534.374 193.2C517.174 193.1 504.274 180.2 504.274 164.1ZM548.874 164.1V164C548.874 155.9 543.074 148.9 534.474 148.9C525.974 148.9 520.274 155.8 520.274 163.9V164.1C520.274 172.2 526.074 179.2 534.574 179.2C543.174 179.1 548.874 172.2 548.874 164.1Z" fill="currentColor"/> - <path d="M583.774 167.4V135.9H599.574V167.1C599.574 175.2 603.674 179 609.874 179C616.074 179 620.174 175.3 620.174 167.5V135.9H635.974V167C635.974 185.1 625.674 193 609.674 193C593.774 193.1 583.774 185 583.774 167.4Z" fill="currentColor"/> - <path d="M659.774 135.9H681.474C701.474 135.9 713.174 147.4 713.174 163.6V163.8C713.174 180 701.374 192 681.174 192H659.874L659.774 135.9ZM681.674 178.2C690.974 178.2 697.174 173.1 697.174 164V163.8C697.174 154.8 690.974 149.6 681.674 149.6H675.374V178.1L681.674 178.2Z" fill="currentColor"/> - <path d="M735.674 135.9H780.574V149.6H751.174V159.1H777.774V172H751.174V192H735.674V135.9Z" fill="currentColor"/> - <path d="M802.174 135.9H817.674V178.4H844.874V192H802.174V135.9Z" fill="currentColor"/> - <path d="M885.474 135.5H900.474L924.374 192H907.674L903.574 182H881.974L877.974 192H861.674L885.474 135.5ZM899.174 169.9L892.974 154L886.674 169.9H899.174Z" fill="currentColor"/> - <path d="M944.374 135.9H970.874C979.474 135.9 985.374 138.1 989.174 142C992.474 145.2 994.174 149.5 994.174 155.1V155.3C994.174 163.9 989.574 169.6 982.674 172.5L996.074 192.1H978.074L966.774 175.1H959.974V192.1H944.474L944.374 135.9ZM970.174 162.9C975.474 162.9 978.474 160.3 978.474 156.3V156C978.474 151.6 975.274 149.4 970.074 149.4H959.874V162.9H970.174Z" fill="currentColor"/> - <path d="M1016.57 135.9H1061.67V149.2H1031.97V157.6H1058.87V169.9H1031.97V178.8H1062.07V192H1016.57V135.9Z" fill="currentColor"/> - <path d="M411.474 170.7C409.274 175.6 404.674 179.1 398.674 179.1C390.174 179.1 384.374 172 384.374 164V163.8C384.374 155.7 390.074 148.8 398.574 148.8C404.974 148.8 409.874 152.7 411.874 158.1H428.274C425.674 144.7 413.874 134.8 398.674 134.8C381.374 134.8 368.374 147.9 368.374 164V164.2C368.374 180.3 381.174 193.2 398.474 193.2C413.274 193.2 424.874 183.6 427.874 170.8L411.474 170.7Z" fill="currentColor"/> - <path d="M313.574 130.6L270.674 106L263.274 102.8L87.7744 104.1V193.1L313.574 193.2V130.6Z" fill="white"/> - <path d="M235.474 185C237.574 177.8 236.774 171.2 233.274 166.3C230.074 161.8 224.674 159.2 218.174 158.9L95.0744 157.3C94.2744 157.3 93.5744 156.9 93.1744 156.3C92.7744 155.7 92.6744 154.9 92.8744 154.1C93.2744 152.9 94.4744 152 95.7744 151.9L219.974 150.3C234.674 149.6 250.674 137.7 256.274 123.1L263.374 104.6C263.674 103.8 263.774 103 263.574 102.2C255.574 66 223.274 39 184.674 39C149.074 39 118.874 62 108.074 93.9C101.074 88.7 92.1744 85.9 82.5744 86.8C65.4744 88.5 51.7744 102.2 50.0744 119.3C49.6744 123.7 49.9744 128 50.9744 132C23.0744 132.8 0.774414 155.6 0.774414 183.7C0.774414 186.2 0.974414 188.7 1.27441 191.2C1.47441 192.4 2.47441 193.3 3.67441 193.3H230.874C232.174 193.3 233.374 192.4 233.774 191.1L235.474 185Z" fill="currentColor"/> - <path d="M274.674 105.9C273.574 105.9 272.374 105.9 271.274 106C270.474 106 269.774 106.6 269.474 107.4L264.674 124.1C262.574 131.3 263.374 137.9 266.874 142.8C270.074 147.3 275.474 149.9 281.974 150.2L308.174 151.8C308.974 151.8 309.674 152.2 310.074 152.8C310.474 153.4 310.574 154.3 310.374 155C309.974 156.2 308.774 157.1 307.474 157.2L280.174 158.8C265.374 159.5 249.474 171.4 243.874 186L241.874 191.1C241.474 192.1 242.174 193.1 243.274 193.1H337.074C338.174 193.1 339.174 192.4 339.474 191.3C341.074 185.5 341.974 179.4 341.974 173.1C341.974 136 311.874 105.9 274.674 105.9Z" fill="currentColor"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/contentful.svg b/smoke/astro.build-main/src/icons/logos/contentful.svg deleted file mode 100644 index b8da2ded5..000000000 --- a/smoke/astro.build-main/src/icons/logos/contentful.svg +++ /dev/null @@ -1,24 +0,0 @@ -<svg width="811" height="220" viewBox="0 0 811 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0_640_499)"> -<path d="M80.3956 193.012C76.3307 192.577 72.2423 192.343 68.2126 191.568C57.4896 189.547 47.2627 185.46 38.1016 179.537C37.7776 179.322 37.4676 179.087 37.1735 178.833C37.0795 178.763 37.056 178.61 36.9033 178.281C38.3366 178.093 39.6994 177.929 41.0622 177.718C44.0459 177.251 46.9047 176.188 49.4683 174.593C52.0319 172.998 54.2476 170.904 55.9833 168.435C57.719 165.966 58.9391 163.172 59.5707 160.222C60.2024 157.272 60.2327 154.224 59.6598 151.262C59.5541 150.698 59.2251 149.959 59.6598 149.583C60.0945 149.208 60.8346 149.806 61.3868 150.088C68.4342 153.992 76.3926 155.956 84.4488 155.781C96.3349 155.638 107.704 150.901 116.169 142.564C123.829 135.252 135.295 135.111 142.579 142.259C144.342 143.96 145.748 145.994 146.716 148.242C147.684 150.491 148.195 152.909 148.219 155.357C148.243 157.805 147.78 160.233 146.856 162.5C145.932 164.767 144.566 166.828 142.838 168.563C131.458 179.995 116.982 187.857 101.19 191.181C96.5298 192.06 91.8227 192.671 87.0922 193.012H80.3956Z" fill="black"/> -<path d="M810.002 143.832C809.379 145.354 808.258 146.621 806.823 147.427C805.387 148.232 803.721 148.529 802.096 148.269C800.416 148.116 798.712 148.269 797.02 148.21C796.137 148.232 795.258 148.076 794.437 147.749C793.616 147.422 792.87 146.932 792.244 146.309C791.618 145.686 791.125 144.942 790.795 144.123C790.465 143.303 790.304 142.426 790.324 141.543C790.324 113.796 790.324 86.0447 790.324 58.2896C790.286 56.572 790.931 54.9095 792.118 53.6664C793.305 52.4233 794.937 51.7011 796.656 51.658C799.062 51.5054 801.475 51.5054 803.881 51.658C805.258 51.7274 806.581 52.2138 807.674 53.0524C808.768 53.891 809.58 55.0422 810.002 56.353V143.832Z" fill="black"/> -<path d="M494.771 117.388H469.336C467.21 117.388 467.151 117.493 467.856 119.442C470.852 127.658 479.451 132.611 488.122 131.836C494.286 131.396 500.289 129.668 505.744 126.766C506.55 126.238 507.515 126.009 508.472 126.119C509.429 126.228 510.318 126.669 510.984 127.364C513.523 129.709 515.879 132.244 518.033 134.947C519.913 137.517 519.666 139.008 517.116 140.874C507.024 148.436 494.393 151.801 481.871 150.264C476.932 149.81 472.103 148.533 467.586 146.485C463.486 144.677 459.787 142.075 456.702 138.83C453.616 135.584 451.206 131.759 449.611 127.576C445.322 116.425 444.453 104.958 448.859 93.6897C454.38 79.5344 464.966 71.1891 480.133 69.3228C487.017 68.4247 494.013 69.0212 500.645 71.0717C514.673 75.5084 521.792 85.6496 524.283 99.6171C524.98 103.785 525.243 108.013 525.07 112.235C524.929 115.956 523.484 117.388 519.736 117.399C511.383 117.399 503.042 117.399 494.689 117.399L494.771 117.388ZM486.888 100.004C492.562 100.004 498.237 100.004 503.911 100.004C505.556 100.004 505.815 99.4528 505.321 98.0443C504.18 94.6916 502.025 91.7756 499.153 89.699C495.347 86.9524 491.082 86.612 486.524 86.8351C478.37 87.2576 472.661 91.0957 468.901 98.1617C468.126 99.6171 468.408 100.028 470.076 100.004C475.668 100.004 481.284 100.004 486.888 100.004Z" fill="black"/> -<path d="M317.042 112.798C317.418 126.601 306.269 142.353 290.279 147.846C285.11 149.599 279.631 150.249 274.194 149.756C268.758 149.262 263.485 147.636 258.717 144.982C253.948 142.328 249.789 138.705 246.508 134.346C243.227 129.987 240.897 124.99 239.668 119.676C236.601 106.683 238.493 94.4292 247.046 83.7716C250.172 79.7856 254.091 76.4898 258.556 74.0919C263.02 71.694 267.933 70.2461 272.986 69.8393C283.759 68.7829 293.639 71.013 302.169 77.7738C312.237 85.8022 316.96 96.4832 317.042 112.798ZM297.951 110.298C297.98 108.283 297.838 106.269 297.528 104.277C296.671 100.098 294.51 96.2976 291.357 93.4213C288.204 90.545 284.22 88.7407 279.976 88.267C276.042 87.9462 272.105 88.8563 268.712 90.8711C265.318 92.8859 262.636 95.9056 261.038 99.5114C258.688 104.476 258.618 109.688 259.405 114.97C259.84 117.642 260.826 120.195 262.302 122.467C263.777 124.738 265.709 126.678 267.975 128.164C270.24 129.649 272.791 130.648 275.464 131.096C278.136 131.545 280.873 131.433 283.501 130.768C287.904 129.547 291.749 126.841 294.383 123.11C297.017 119.379 298.278 114.852 297.951 110.298V110.298Z" fill="black"/> -<path d="M77.9051 26.0587C106.876 26.3639 126.59 34.5449 142.944 50.6369C146.482 54.0704 148.51 58.7676 148.581 63.6949C148.653 68.6223 146.762 73.3763 143.326 76.9111C139.889 80.4458 135.187 82.4718 130.255 82.5434C125.323 82.6149 120.565 80.7261 117.027 77.2925C110.514 70.7183 102.228 66.1793 93.1779 64.2288C82.4931 61.9773 71.3555 63.5782 61.7394 68.7477C61.1755 69.0411 60.5646 69.7454 59.9889 69.3932C59.2018 68.912 59.8597 68.0787 59.9889 67.4331C60.5382 64.461 60.4844 61.409 59.8308 58.4581C59.1771 55.5072 57.937 52.7175 56.1839 50.2545C54.4308 47.7915 52.2004 45.7053 49.625 44.1197C47.0497 42.5341 44.1818 41.4813 41.1916 41.0239C40.5572 40.9183 39.8875 40.9417 39.2414 40.8713C38.5952 40.8009 37.7141 41.1413 37.4791 40.437C37.2441 39.7328 38.1958 39.4863 38.6539 39.1577C42.3869 36.7492 46.317 34.6603 50.4023 32.9133C59.6129 28.9344 71.4318 25.8122 77.9051 26.0587Z" fill="black"/> -<path d="M761.658 138.879C759.051 141.44 756.139 143.671 752.987 145.522C742.179 151.532 727.541 150.816 718.4 143.632C711.257 138.022 707.827 130.287 706.159 121.625C705.554 118.362 705.27 115.048 705.313 111.73C705.313 100.673 705.313 89.6168 705.313 78.5602C705.313 73.6891 707.909 71.1421 712.808 71.1304C714.371 71.1304 715.945 71.1304 717.508 71.1304C722.536 71.1304 725.132 73.6891 725.132 78.6423C725.132 90.3798 725.132 102.188 725.132 113.96C725.141 117.735 726.401 121.401 728.715 124.385C731.03 127.368 734.269 129.502 737.926 130.451C746.984 132.799 757.088 126.766 759.743 117.47C760.292 115.598 760.569 113.657 760.565 111.707C760.565 100.752 760.565 89.8242 760.565 78.924C760.565 73.7478 763.197 71.1421 768.39 71.1304C770.023 71.1304 771.656 71.1304 773.289 71.1304C777.412 71.1304 779.844 73.2196 780.526 77.3043C780.637 78.1406 780.684 78.9843 780.667 79.8278C780.667 99.7345 780.667 119.637 780.667 139.536C780.669 140.768 780.559 141.998 780.338 143.21C780.087 144.595 779.365 145.851 778.295 146.766C777.225 147.681 775.872 148.199 774.463 148.233C772.83 148.292 771.186 148.14 769.564 148.233C765.382 148.597 762.175 145.886 761.857 141.038C761.799 140.51 761.763 139.912 761.658 138.879Z" fill="black"/> -<path d="M549.448 80.4734C552.845 76.993 556.914 74.2377 561.408 72.3746C579.665 65.0152 598.215 74.3347 603.784 93.6545C605.116 98.279 605.789 103.068 605.781 107.88C605.781 118.749 605.781 129.61 605.781 140.463C605.781 145.792 603.338 148.245 598.051 148.257C596.289 148.257 594.526 148.257 592.776 148.257C591.943 148.319 591.105 148.217 590.312 147.956C589.518 147.694 588.784 147.279 588.151 146.734C587.518 146.189 586.999 145.525 586.623 144.779C586.248 144.033 586.023 143.221 585.962 142.388C585.796 141.363 585.705 140.328 585.692 139.29C585.692 129.665 585.692 120.04 585.692 110.416C585.692 107.962 586.267 105.544 585.762 103.044C584.258 95.7085 580.1 90.7201 572.839 88.9595C565.297 87.1872 559.14 90.0276 554.441 96.002C551.897 99.2665 550.56 103.31 550.658 107.446C550.658 118.401 550.658 129.391 550.658 140.416C550.658 145.393 548.062 148.01 543.08 148.081C541.447 148.081 539.814 148.081 538.193 148.081C533.6 147.975 530.933 145.276 530.897 140.71C530.897 137.059 530.897 133.421 530.897 129.782V79.1236C530.897 73.607 533.376 71.1304 538.863 71.1304C540.038 71.1304 541.212 71.1304 542.387 71.1304C546.758 71.1304 549.436 73.8417 549.519 78.1728C549.46 78.748 549.448 79.3348 549.448 80.4734Z" fill="black"/> -<path d="M341.914 80.0508C345.34 76.558 349.479 73.8437 354.05 72.0929C366.186 67.48 379.191 70.1444 387.732 79.2057C393.231 85.0744 396.027 92.1873 397.131 100.016C398.224 107.587 397.789 115.193 397.836 122.799C397.836 128.667 397.836 134.536 397.836 140.405C397.836 143.104 397.178 145.569 394.758 147.201C392.338 148.832 382.939 148.773 380.578 147.083C379.624 146.389 378.863 145.463 378.367 144.393C377.872 143.323 377.658 142.144 377.746 140.968C377.746 129.34 377.746 117.701 377.746 106.049C377.746 97.5748 372.236 90.4619 364.365 88.9243C359.734 88.093 354.959 89.0499 351.008 91.6015C347.056 94.153 344.221 98.1088 343.077 102.669C342.728 104.189 342.571 105.746 342.607 107.305C342.607 117.916 342.607 128.519 342.607 139.114C342.609 140.214 342.523 141.313 342.349 142.4C342.233 143.812 341.628 145.14 340.637 146.154C339.646 147.167 338.331 147.803 336.921 147.952C334.199 148.399 331.425 148.418 328.697 148.01C327.039 147.861 325.503 147.078 324.409 145.825C323.315 144.573 322.747 142.946 322.823 141.285C322.764 136.473 322.823 131.66 322.823 126.848V79.0297C322.823 73.607 325.29 71.1304 330.671 71.1304C331.846 71.1304 333.021 71.1304 334.195 71.1304C338.695 71.1304 341.35 73.7948 341.456 78.2667C341.378 78.8979 341.542 79.535 341.914 80.0508V80.0508Z" fill="black"/> -<path d="M210.979 149.83C201.435 149.785 192.218 146.351 184.975 140.141C177.733 133.931 172.937 125.35 171.446 115.932C169.272 102.117 172.797 89.969 182.806 80.0743C189.139 73.8065 197.116 70.8018 205.962 69.8628C215.178 68.8198 224.468 71.0467 232.208 76.154C238.082 79.91 238.317 82.5978 233.453 87.5158C231.891 89.0886 230.363 90.6967 228.754 92.2108C226.404 94.3939 225.229 94.4879 222.539 92.6803C218.643 89.8879 213.952 88.4227 209.158 88.5018C205.972 88.4519 202.836 89.2898 200.101 90.9214C197.366 92.5531 195.14 94.914 193.673 97.7391C191.669 101.155 190.535 105.009 190.369 108.965C190.203 112.921 191.011 116.856 192.722 120.428C197.421 131.12 210.497 134.677 220.648 128.163C221.822 127.388 222.997 126.472 224.172 125.756C224.957 125.136 225.956 124.851 226.95 124.963C227.945 125.076 228.855 125.576 229.482 126.355C231.973 128.702 234.452 131.144 236.813 133.656C239.433 136.461 239.163 138.468 236.202 140.862C229.092 146.687 220.174 149.858 210.979 149.83V149.83Z" fill="black"/> -<path d="M660.774 103.044C660.774 90.7593 660.774 78.4702 660.774 66.1772C660.805 59.9092 662.97 53.8382 666.914 48.9635C670.858 44.0888 676.346 40.7008 682.474 39.3572C687.106 38.5541 691.829 38.4118 696.501 38.9346C700.343 39.2163 702.446 41.9512 702.481 45.8362C702.481 47.0726 702.481 48.305 702.481 49.5335C702.528 50.432 702.39 51.3304 702.076 52.1736C701.762 53.0168 701.279 53.7869 700.656 54.4367C700.033 55.0864 699.284 55.602 698.454 55.9517C697.624 56.3015 696.732 56.4779 695.831 56.4703C694.339 56.5408 692.836 56.4703 691.332 56.4703C685.458 56.4703 681.569 59.9916 680.958 65.9307C680.382 71.459 680.382 71.459 685.928 71.459C688.536 71.459 691.144 71.459 693.752 71.459C695.433 71.4528 697.047 72.113 698.241 73.2947C699.435 74.4764 700.11 76.0831 700.12 77.762C700.12 79.3818 700.12 81.0133 700.12 82.633C700.148 83.5155 699.994 84.3943 699.667 85.2147C699.34 86.0351 698.848 86.7795 698.221 87.4016C697.594 88.0237 696.845 88.5102 696.022 88.8307C695.199 89.1513 694.318 89.299 693.435 89.2647C689.981 89.2647 686.527 89.3586 683.073 89.2647C681.299 89.206 680.876 89.8633 680.876 91.53C680.876 107.786 680.876 124.031 680.876 140.287C680.976 141.983 680.593 143.672 679.772 145.158C679.253 146.072 678.507 146.835 677.605 147.375C676.703 147.914 675.676 148.209 674.626 148.233C672.546 148.304 670.455 148.233 668.364 148.233C663.394 148.233 660.81 145.675 660.763 140.663C660.763 135.393 660.763 130.099 660.763 124.864V103.044H660.774Z" fill="black"/> -<path d="M614.17 91.1896V59.3929C614.17 54.4163 616.625 51.9866 621.607 51.9749C623.498 51.9749 625.39 51.9749 627.281 51.9749C628.113 51.9702 628.938 52.1308 629.708 52.4472C630.478 52.7636 631.177 53.2296 631.765 53.8182C632.353 54.4067 632.818 55.1061 633.133 55.8757C633.449 56.6453 633.608 57.4698 633.602 58.3014C633.719 62.1278 633.884 65.9542 633.942 69.7806C633.942 71.0482 634.424 71.506 635.681 71.4825C639.723 71.4825 643.764 71.4825 647.805 71.4825C651.847 71.4825 654.337 74.0178 654.349 78.0789C654.349 79.5696 654.349 81.072 654.349 82.5626C654.363 83.3948 654.21 84.2214 653.898 84.9932C653.586 85.765 653.122 86.4663 652.534 87.0554C651.945 87.6445 651.244 88.1093 650.472 88.4223C649.7 88.7353 648.873 88.89 648.04 88.8773C644.14 88.9478 640.216 88.9712 636.292 88.8773C634.565 88.8773 633.942 89.2764 633.942 91.1427C634.036 101.026 633.942 110.908 634.013 120.791C634.013 127.259 636.926 130.181 643.411 130.416C650.766 130.698 652.023 132.001 652.023 139.407C652.023 140.064 652.023 140.71 652.023 141.355C652.023 144.618 649.979 147.412 646.76 147.635C640.474 148.057 634.13 148.363 628.068 145.921C620.608 142.905 616.743 137.059 615.039 129.489C614.46 126.888 614.172 124.231 614.182 121.566C614.193 111.472 614.17 101.331 614.17 91.1896Z" fill="black"/> -<path d="M406.741 90.9432V59.7334C406.741 54.4046 409.185 51.9749 414.495 51.9749C416.328 51.9749 418.149 51.9749 419.981 51.9749C421.463 51.9522 422.903 52.4663 424.035 53.4222C425.166 54.3781 425.913 55.711 426.138 57.1746C426.831 61.1066 426.408 65.0856 426.408 69.0411C426.408 70.8604 426.878 71.5881 428.828 71.506C432.54 71.3769 436.253 71.506 439.965 71.506C440.832 71.4484 441.7 71.5749 442.514 71.8771C443.328 72.1793 444.068 72.6503 444.686 73.2591C445.305 73.868 445.787 74.6008 446.101 75.4093C446.415 76.2178 446.554 77.0837 446.509 77.9498C446.509 79.4405 446.509 80.9429 446.509 82.4335C446.534 83.2981 446.381 84.1586 446.058 84.9614C445.736 85.7642 445.252 86.4921 444.636 87.0999C444.02 87.7076 443.285 88.1822 442.478 88.494C441.67 88.8059 440.807 88.9484 439.942 88.9126C436.159 88.9126 432.376 88.9947 428.593 88.9126C426.948 88.9126 426.478 89.4642 426.478 91.0488C426.478 100.932 426.478 110.815 426.478 120.698C426.478 127.047 428.828 129.688 435.172 130.404C435.495 130.451 435.824 130.451 436.147 130.404C441.516 129.583 445.146 132.693 444.524 138.902C444.441 139.736 444.524 140.592 444.524 141.438C444.552 143.021 443.973 144.555 442.904 145.725C441.836 146.895 440.36 147.612 438.779 147.729C433.446 148.191 428.073 147.758 422.883 146.449C414.084 144.008 409.29 137.975 407.54 129.289C406.968 126.355 406.689 123.37 406.706 120.381C406.745 110.576 406.757 100.763 406.741 90.9432Z" fill="black"/> -<path d="M42.8366 133.503C39.1851 132.711 35.4015 132.755 31.7697 133.632C22.2065 136.191 15.8154 143.891 14.7698 154.008C14.7698 154.548 15.04 155.393 14.3704 155.558C13.7007 155.722 13.3953 154.818 13.0663 154.302C4.53648 140.9 0.0110972 125.344 0.0215023 109.462C0.0319073 93.58 4.57767 78.0306 13.1251 64.6396C13.2895 64.3696 13.4657 64.0879 13.6537 63.818C13.8417 63.548 14.1237 62.8672 14.6171 62.9846C15.1105 63.102 15.0988 63.8414 15.1105 64.3227C15.2314 67.283 15.9354 70.1904 17.1821 72.8786C18.4289 75.5667 20.1939 77.9829 22.3763 79.9889C24.5587 81.9948 27.1156 83.5511 29.9007 84.5688C32.6858 85.5864 35.6443 86.0454 38.6071 85.9195C39.5118 85.9195 40.4047 85.6378 41.3093 85.6144C42.2139 85.5909 43.0128 84.8514 43.518 85.5205C44.0232 86.1895 43.1655 86.9407 42.8131 87.598C40.8989 91.0732 39.4681 94.7931 38.5602 98.6546C35.8333 109.833 37.4143 121.628 42.9893 131.695C43.2712 132.235 43.9056 132.728 43.4945 133.433C43.4122 133.573 42.9188 133.503 42.8366 133.503Z" fill="black"/> -<path d="M18.4121 155.299C18.4493 150.269 20.4763 145.458 24.0506 141.916C27.625 138.374 32.4567 136.387 37.4914 136.39C42.5733 136.39 47.4471 138.407 51.0406 141.998C54.6341 145.588 56.6529 150.457 56.6529 155.534C56.6529 160.611 54.6341 165.481 51.0406 169.071C47.4471 172.661 42.5733 174.678 37.4914 174.678C28.1162 174.889 18.4121 164.936 18.4121 155.299Z" fill="black"/> -<path d="M56.6523 63.4189C57.2514 73.4427 47.7588 82.5274 37.5495 82.4218C29.0202 82.3396 18.6699 75.5789 18.4819 63.3954C18.341 54.1229 28.3975 44.0991 37.7022 44.2282C49.9205 44.3925 57.3219 54.7684 56.6523 63.4189Z" fill="black"/> -</g> -<defs> -<clipPath id="clip0_640_499"> -<rect width="810" height="167" fill="white" transform="translate(0.0136719 26)"/> -</clipPath> -</defs> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/devtoolsfm.svg b/smoke/astro.build-main/src/icons/logos/devtoolsfm.svg deleted file mode 100644 index 7f2a88cd9..000000000 --- a/smoke/astro.build-main/src/icons/logos/devtoolsfm.svg +++ /dev/null @@ -1,13 +0,0 @@ -<svg width="59" height="47" viewBox="0 0 59 47" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M49.524 30.5833C49.5766 30.7452 49.5927 30.7703 49.5927 30.7963C49.5435 33.514 49.4765 36.2316 49.4476 38.9501C49.4213 41.3934 49.4366 43.8367 49.4349 46.2792C49.4349 46.5384 49.5859 46.6609 49.8369 46.66C50.1049 46.66 50.3729 46.6416 50.6409 46.6408C52.8715 46.6324 55.102 46.6248 57.3326 46.6215C57.6481 46.6206 57.8363 46.5258 57.8465 46.1694C57.8694 45.2928 57.9271 44.4163 57.95 43.5398C58.0195 40.9329 58.0925 38.3252 58.1383 35.7183C58.2137 31.4766 58.2629 27.2349 58.3359 22.9932C58.3749 20.7344 58.4402 18.4765 58.4987 16.2176C58.5072 15.8872 58.4249 15.6909 58.0306 15.6917C55.1215 15.6993 52.2133 15.6917 49.3043 15.7051C49.172 15.706 48.9786 15.8394 48.9184 15.961C48.223 17.3701 47.5487 18.7902 46.8651 20.206C46.5488 20.8619 46.2138 21.5095 45.9042 22.1687C45.1884 23.6936 44.487 25.2261 43.7704 26.7509C43.482 27.3641 43.1623 27.963 42.8731 28.5753C42.6474 29.0534 42.4524 29.5466 42.2302 30.0264C42.1895 30.1144 42.0792 30.2318 42.0063 30.2285C41.9291 30.2251 41.8333 30.1052 41.7892 30.0154C41.7289 29.893 41.7281 29.7437 41.6721 29.6187C41.0309 28.1928 40.3872 26.7686 39.7384 25.346C39.2974 24.3797 38.853 23.4151 38.4001 22.4548C38.0176 21.6437 37.6113 20.8443 37.2339 20.0307C36.6267 18.7214 36.0279 17.4079 35.4436 16.0885C35.307 15.7806 35.106 15.6917 34.7863 15.6926C31.9621 15.6993 29.1378 15.6942 26.3136 15.6942C25.7098 15.6942 25.7081 15.6993 25.7089 16.2847C25.7089 21.3526 25.7098 26.4205 25.7106 31.4883C25.7106 36.4027 25.7115 41.3171 25.7098 46.2314C25.7098 46.4655 25.6843 46.6693 26.0405 46.6668C28.5815 46.6491 31.1233 46.6542 33.6642 46.634C34.285 46.629 34.2783 46.5988 34.285 45.9806C34.3351 41.1241 34.3877 36.2668 34.4394 31.4103C34.4411 31.2115 34.4394 31.0119 34.4394 30.8131C34.4945 30.8047 34.5497 30.7972 34.6039 30.7888C34.7176 31.0849 34.8151 31.3885 34.9483 31.6762C35.3325 32.5041 35.7353 33.3244 36.1246 34.1506C36.5766 35.1076 37.0338 36.063 37.4672 37.0284C37.898 37.9888 38.2949 38.9626 38.7181 39.9264C38.9403 40.4313 39.2262 40.9119 39.406 41.4303C39.5111 41.7314 39.6299 41.879 39.9521 41.8782C41.2515 41.874 42.5508 41.8874 43.8492 41.8665C43.9968 41.8639 44.2071 41.713 44.2758 41.5754C44.6761 40.7744 45.0357 39.9541 45.4225 39.1463C45.9008 38.1473 46.3961 37.1568 46.8778 36.1586C47.1721 35.5488 47.4571 34.9348 47.7429 34.3209C48.0033 33.7606 48.2526 33.1944 48.5181 32.6358C48.8336 31.979 49.1584 31.329 49.524 30.5833ZM9.4319 35.3291C9.80253 35.3291 10.096 35.3299 10.3903 35.3291C13.1153 35.3224 15.8403 35.3182 18.5652 35.3064C18.9274 35.3047 19.3048 35.189 19.6474 35.2586C20.013 35.3324 20.0952 35.1957 20.0961 34.9181C20.102 32.8941 20.0969 30.8693 20.1029 28.8454C20.1037 28.5325 19.9646 28.4394 19.6619 28.4427C18.5322 28.4562 17.4033 28.4511 16.2736 28.452C14.1271 28.4545 11.9813 28.4553 9.83475 28.4595C9.62442 28.4595 9.44292 28.4662 9.44123 28.1701C9.43275 26.6486 9.41663 25.1279 9.39543 23.6064C9.39119 23.3002 9.51247 23.2088 9.82542 23.2096C13.8489 23.2197 17.8732 23.2164 21.8966 23.2172C22.4089 23.2172 22.5115 23.1216 22.5107 22.6057C22.5073 20.5122 22.5047 18.4177 22.4979 16.3242C22.4963 15.737 22.4555 15.6968 21.8771 15.6968C15.043 15.6942 8.20892 15.6909 1.37481 15.6959C0.541964 15.6968 0.432557 15.4946 0.529242 16.5724C0.536875 16.6555 0.530091 16.7402 0.531787 16.8241C0.579281 20.4098 0.630168 23.9964 0.675118 27.5822C0.740423 32.8295 0.803183 38.0769 0.8634 43.3242C0.873577 44.2033 0.858311 45.0832 0.865944 45.963C0.871881 46.6458 1.05592 46.8236 1.72339 46.8228C4.12355 46.8211 6.52456 46.8194 8.92473 46.8152C9.43444 46.8144 9.53961 46.7146 9.53537 46.1987C9.53028 45.4874 9.50314 44.7762 9.49636 44.0657C9.47261 41.5117 9.4531 38.9568 9.43275 36.4027C9.42935 36.0672 9.4319 35.735 9.4319 35.3291Z" fill="currentColor"/> - <path d="M49.5236 30.5835C49.1581 31.3291 48.8332 31.98 48.5211 32.636C48.2557 33.1946 48.0063 33.7599 47.7459 34.3211C47.4601 34.935 47.1752 35.549 46.8809 36.1588C46.3991 37.1561 45.9038 38.1475 45.4255 39.1465C45.0388 39.9543 44.6792 40.7746 44.2789 41.5756C44.2102 41.7132 43.9998 41.8641 43.8523 41.8667C42.5538 41.8885 41.2545 41.8742 39.9552 41.8784C39.6329 41.8792 39.5133 41.7316 39.409 41.4305C39.2283 40.913 38.9425 40.4315 38.7212 39.9266C38.2979 38.9637 37.9002 37.989 37.4702 37.0286C37.0368 36.0632 36.5797 35.1078 36.1276 34.1508C35.7383 33.3246 35.3355 32.5051 34.9513 31.6764C34.8181 31.3887 34.7206 31.0851 34.6069 30.789C34.5518 30.7974 34.4967 30.8049 34.4424 30.8133C34.4424 31.0121 34.4441 31.2117 34.4424 31.4105C34.3907 36.267 34.3381 41.1243 34.2881 45.9808C34.2813 46.599 34.2881 46.6301 33.6672 46.6342C31.1263 46.6544 28.5845 46.6493 26.0435 46.667C25.6873 46.6695 25.7128 46.4657 25.7128 46.2316C25.7145 41.3173 25.7145 36.4029 25.7136 31.4885C25.7136 26.4206 25.7128 21.3528 25.7119 16.2849C25.7119 15.6986 25.7128 15.6944 26.3166 15.6944C29.1408 15.6936 31.9651 15.6994 34.7893 15.6927C35.109 15.6919 35.31 15.7808 35.4466 16.0886C36.0309 17.408 36.6305 18.7215 37.237 20.0309C37.6135 20.8445 38.0206 21.6438 38.4031 22.4549C38.856 23.4162 39.3004 24.3799 39.7414 25.3462C40.3902 26.7687 41.034 28.193 41.6751 29.6189C41.7311 29.7439 41.732 29.8932 41.7922 30.0156C41.8363 30.1054 41.9321 30.2253 42.0093 30.2287C42.0822 30.232 42.1925 30.1146 42.2332 30.0265C42.4554 29.5468 42.6505 29.0544 42.8761 28.5755C43.1653 27.9631 43.4859 27.3643 43.7734 26.7511C44.49 25.2262 45.1914 23.6938 45.9072 22.1689C46.2168 21.5096 46.551 20.8621 46.8681 20.2062C47.5517 18.7912 48.2251 17.3711 48.9214 15.9611C48.9816 15.8387 49.175 15.7053 49.3073 15.7053C52.2164 15.6919 55.1245 15.6994 58.0336 15.6919C58.428 15.6911 58.5102 15.8873 58.5017 16.2178C58.4432 18.4766 58.3779 20.7346 58.3389 22.9934C58.2651 27.2351 58.2168 31.4768 58.1413 35.7184C58.0947 38.3262 58.0217 40.9331 57.953 43.54C57.9301 44.4165 57.8724 45.293 57.8495 46.1696C57.8402 46.526 57.6519 46.6208 57.3356 46.6217C55.105 46.625 52.8745 46.6326 50.644 46.641C50.376 46.6418 50.1079 46.6602 49.8399 46.6602C49.5881 46.6602 49.4379 46.5378 49.4379 46.2794C49.4396 43.8361 49.4244 41.3927 49.4507 38.9502C49.4795 36.2326 49.5465 33.515 49.5957 30.7965C49.5923 30.7705 49.5762 30.7445 49.5236 30.5835Z" fill="currentColor"/> - <path d="M9.43145 35.329C9.43145 35.735 9.42891 36.0671 9.43145 36.3993C9.45181 38.9534 9.47132 41.5083 9.49506 44.0623C9.50185 44.7736 9.52899 45.4849 9.53408 46.1953C9.53832 46.7112 9.43315 46.811 8.92343 46.8118C6.52327 46.8152 4.12226 46.8177 1.72209 46.8194C1.05463 46.8202 0.870588 46.6424 0.864651 45.9596C0.857018 45.0798 0.872284 44.2007 0.862106 43.3209C0.80189 38.0735 0.73913 32.8261 0.673825 27.5788C0.628875 23.993 0.578836 20.4064 0.530494 16.8207C0.529646 16.7368 0.535582 16.6529 0.527949 16.569C0.432112 15.4912 0.540671 15.6933 1.37352 15.6925C8.20762 15.6883 15.0417 15.6917 21.8758 15.6933C22.4542 15.6933 22.4941 15.7336 22.4967 16.3207C22.5034 18.4143 22.506 20.5087 22.5094 22.6023C22.5102 23.1182 22.4076 23.2138 21.8953 23.2138C17.8719 23.2129 13.8476 23.2163 9.82413 23.2062C9.51118 23.2054 9.3899 23.2968 9.39414 23.603C9.41534 25.1237 9.43145 26.6452 9.43994 28.1667C9.44163 28.4637 9.62228 28.457 9.83346 28.4561C11.98 28.4519 14.1258 28.4511 16.2723 28.4486C17.402 28.4477 18.5317 28.4528 19.6606 28.4393C19.9633 28.436 20.1033 28.5291 20.1016 28.842C20.0956 30.8659 20.1007 32.8907 20.0948 34.9147C20.0939 35.1931 20.0117 35.3299 19.6461 35.2552C19.3035 35.1856 18.9261 35.3013 18.5639 35.303C15.839 35.3156 13.114 35.319 10.389 35.3257C10.0955 35.3299 9.80208 35.329 9.43145 35.329Z" fill="currentColor"/> - <path d="M6.80319 4.83634C6.81506 4.62664 6.82863 4.49495 6.82863 4.36243C6.83033 3.34332 6.84305 2.32337 6.821 1.30426C6.81336 0.946944 6.90411 0.791771 7.29085 0.823644C7.69795 0.857195 8.11098 0.863067 8.51807 0.837903C8.88276 0.815257 8.96758 0.960364 8.96673 1.29671C8.9557 3.96401 8.96079 6.63047 8.96164 9.29777C8.96164 9.96795 8.94722 10.639 8.96758 11.3083C8.97775 11.6396 8.86326 11.7654 8.5291 11.7336C8.27721 11.7101 8.02108 11.726 7.76665 11.7243C7.25523 11.721 7.18738 11.6572 7.15092 11.1598C7.14498 11.0818 7.12293 11.0047 7.0907 10.8386C6.92871 10.9736 6.7964 11.0475 6.71498 11.1573C6.27651 11.7512 5.60904 11.7923 4.97805 11.7923C4.20457 11.7923 3.50402 11.5155 3.00109 10.8856C2.51597 10.2783 2.20471 9.59134 2.15807 8.81631C2.12414 8.24595 2.0987 7.66636 2.16146 7.10018C2.30903 5.77996 2.78058 4.64258 4.14859 4.09402C4.76856 3.84491 6.00257 4.07557 6.48175 4.54444C6.56656 4.62916 6.65816 4.70549 6.80319 4.83634ZM7.01861 8.60243C6.95415 7.80643 6.89902 7.18406 6.85407 6.56169C6.80658 5.90745 6.32909 5.71789 5.79393 5.57697C5.39956 5.47296 5.08321 5.62646 4.80164 5.86551C4.45985 6.15573 4.36655 6.54911 4.24867 6.97605C4.00356 7.86766 4.13163 8.68547 4.44119 9.51753C4.62099 10.0007 4.9984 10.2062 5.46402 10.2523C6.02123 10.3077 6.57165 10.1852 6.821 9.64502C6.98723 9.28435 6.97705 8.84483 7.01861 8.60243Z" fill="currentColor"/> - <path d="M14.7573 8.54351C14.1645 8.54351 13.5708 8.54351 12.978 8.54351C12.5124 8.54351 12.3826 8.72888 12.5488 9.15497C12.8559 9.94174 13.3249 10.2362 14.1857 10.2638C14.86 10.2856 15.4833 10.1682 16.0702 9.8369C16.1389 9.79831 16.323 9.8218 16.3501 9.87129C16.4883 10.1229 16.602 10.3888 16.7055 10.6572C16.8081 10.9223 16.6834 11.1018 16.4493 11.2335C15.6691 11.6738 14.7955 11.8776 13.9347 11.8558C13.1985 11.8374 12.4505 11.657 11.7881 11.1856C11.1266 10.7159 10.7144 10.1137 10.5447 9.38228C10.1987 7.89178 10.1784 6.41806 11.208 5.12467C11.7567 4.4352 12.4912 4.09214 13.3698 4.0393C14.0636 3.9982 14.7573 4.01749 15.3697 4.37816C16.183 4.8571 16.7631 5.52392 16.8717 6.49858C16.9344 7.05972 16.9769 7.62337 17.0311 8.18535C17.0574 8.45628 16.9404 8.55441 16.6631 8.5477C16.0287 8.5326 15.3926 8.54351 14.7573 8.54351ZM13.6955 7.22915C13.8507 7.22915 14.0059 7.22915 14.1611 7.22915C15.0109 7.22915 15.0482 7.22076 14.8701 6.43148C14.8074 6.15468 14.5623 5.82504 14.3095 5.70174C13.5768 5.34275 12.7091 5.8133 12.5183 6.6051C12.4021 7.08572 12.5166 7.22999 13.0179 7.22999C13.2435 7.22915 13.4699 7.22915 13.6955 7.22915Z" fill="currentColor"/> - <path d="M37.3822 7.83662C37.3152 9.01677 37.0922 10.0191 36.367 10.8285C35.937 11.3091 35.3815 11.6321 34.72 11.7344C34.3774 11.7872 34.0322 11.898 33.6921 11.8837C32.0281 11.8158 30.9187 11.0902 30.426 9.53597C29.9799 8.12851 30.0638 6.69001 30.9357 5.40921C31.3954 4.734 32.0484 4.30454 32.8898 4.19718C33.2324 4.15356 33.5801 4.02188 33.9134 4.05375C35.234 4.18041 36.5765 4.68367 37.0506 6.32095C37.1295 6.59439 37.1965 6.87203 37.2567 7.14966C37.3144 7.41723 37.356 7.68899 37.3822 7.83662ZM35.3145 7.97334C35.2306 7.48182 35.2178 6.95674 35.0363 6.49626C34.9108 6.17836 34.6004 5.83614 34.2866 5.70697C33.4682 5.36979 32.5132 5.94183 32.369 6.79822C32.2486 7.51285 32.1061 8.20987 32.3325 8.96225C32.57 9.74902 32.7786 10.3446 33.9202 10.2674C34.4944 10.228 34.9303 9.93858 35.0609 9.37409C35.1661 8.92115 35.228 8.45983 35.3145 7.97334Z" fill="currentColor"/> - <path d="M41.9972 11.9072C40.4341 11.8753 39.357 11.3309 38.7396 10.1097C38.4928 9.62152 38.3656 9.04864 38.3062 8.50092C38.2061 7.57408 38.2791 6.64136 38.7812 5.81517C39.318 4.9311 40.0474 4.34816 41.1465 4.17117C41.8598 4.05626 42.5069 4.12756 43.1557 4.32886C44.1327 4.63166 44.7637 5.34126 45.0869 6.26308C45.3718 7.07501 45.516 7.89868 45.3176 8.81043C45.1488 9.5863 44.8893 10.2917 44.3829 10.8453C44.0191 11.2429 43.4559 11.4878 42.9428 11.7168C42.6002 11.8678 42.1897 11.872 41.9972 11.9072ZM43.3839 7.8492C43.2787 7.41387 43.2058 6.86615 43.009 6.36457C42.7927 5.81265 42.3068 5.6298 41.7046 5.65832C41.1584 5.68432 40.8141 6.0148 40.6266 6.41573C40.4172 6.86448 40.3281 7.38703 40.2849 7.8861C40.2526 8.25936 40.3798 8.64603 40.4265 9.02767C40.5028 9.6492 40.9065 10.2154 41.3145 10.259C42.3907 10.3739 42.8962 10.1298 43.132 9.31202C43.2566 8.88089 43.2889 8.42376 43.3839 7.8492Z" fill="currentColor"/> - <path d="M53.361 4.21469C54.3635 4.11823 55.2481 4.34721 55.8943 5.09624C56.1488 5.39064 56.2582 5.81926 56.3879 6.20174C56.4575 6.40724 56.3184 6.54228 56.0809 6.53557C55.6297 6.52299 55.1768 6.53221 54.729 6.48692C54.6145 6.47518 54.4695 6.31078 54.422 6.1858C54.1192 5.39316 53.0565 5.31767 52.5103 5.76306C52.0998 6.09773 52.1448 6.69829 52.6265 6.93566C53.0489 7.14452 53.5238 7.25356 53.9801 7.38944C54.6578 7.59158 55.3397 7.76353 55.8935 8.24918C56.6907 8.94788 56.5652 10.4736 55.6806 11.1606C54.7477 11.8844 53.6434 12.0186 52.5383 11.8626C51.6359 11.736 50.7997 11.3518 50.3408 10.4652C50.3281 10.4409 50.2933 10.4241 50.2891 10.4006C50.2289 10.0978 50.1721 9.7942 50.1152 9.4914C50.3731 9.47211 50.6309 9.44863 50.8896 9.43437C51.0583 9.4243 51.228 9.43101 51.3967 9.42346C51.7317 9.4092 51.9743 9.45282 52.0744 9.86717C52.194 10.362 53.121 10.7261 53.6239 10.5298C53.9903 10.3864 54.4135 10.3159 54.444 9.78162C54.4661 9.39998 54.2905 9.14331 53.9767 9.02505C53.4526 8.82877 52.9013 8.70715 52.367 8.53772C51.6096 8.29783 50.8565 8.05039 50.4791 7.25272C50.2408 6.74946 50.4197 5.58272 50.7869 5.1734C51.4841 4.39251 52.3543 4.09139 53.361 4.21469Z" fill="currentColor"/> - <path d="M17.5889 4.20057C18.2029 4.20057 18.794 4.1838 19.3826 4.21315C19.5132 4.21986 19.7151 4.36749 19.7482 4.48659C19.9933 5.37905 20.1926 6.28409 20.4292 7.17906C20.6302 7.93563 20.8626 8.68382 21.106 9.52007C21.3664 8.47664 21.5928 7.52882 21.8422 6.58688C22.0338 5.86302 22.2501 5.14587 22.4681 4.4304C22.4944 4.34316 22.597 4.21483 22.6665 4.21315C23.295 4.19638 23.9235 4.20309 24.6164 4.20309C24.1278 5.6072 23.6554 6.94252 23.2 8.28204C22.854 9.29864 22.5224 10.3194 22.1975 11.3427C22.1144 11.6044 21.9838 11.7462 21.6929 11.7361C21.3545 11.7244 21.0093 11.6917 20.6785 11.7437C20.2146 11.8166 20.0348 11.5935 19.9102 11.2094C19.4785 9.87655 19.0383 8.54542 18.5879 7.21764C18.2623 6.25808 17.9162 5.30524 17.5804 4.3482C17.5719 4.32471 17.5821 4.29452 17.5889 4.20057Z" fill="currentColor"/> - <path d="M28.036 5.69951C28.0207 5.80603 27.9995 5.88739 27.9995 5.96792C27.9987 7.19672 27.997 8.42468 28.0038 9.65349C28.0063 10.0175 28.2455 10.2842 28.6017 10.2465C29.0045 10.2037 29.1648 10.369 29.2098 10.7246C29.2378 10.9444 29.2675 11.1641 29.2912 11.3839C29.3175 11.6196 29.2412 11.732 28.9672 11.742C28.639 11.7546 28.3057 11.9106 27.9885 11.8771C27.4126 11.8167 26.8334 11.7034 26.4161 11.2279C26.0183 10.7741 25.9047 10.2113 25.8843 9.656C25.8411 8.47081 25.864 7.28311 25.8758 6.09625C25.8792 5.79093 25.8258 5.64415 25.462 5.65589C24.7377 5.67854 24.7368 5.65589 24.7377 4.93455C24.7377 4.80873 24.747 4.68291 24.7377 4.55794C24.7173 4.28869 24.8301 4.19643 25.1066 4.19391C25.8708 4.1872 25.8708 4.17546 25.8708 3.40966C25.8708 2.28822 25.8708 2.28822 26.9928 2.28906C27.1336 2.28906 27.2761 2.28318 27.416 2.29325C27.8859 2.32596 27.9953 2.44758 27.9961 2.91897C27.9961 3.00285 27.9927 3.08673 27.9961 3.17061C28.0089 3.49018 27.913 3.89195 28.0733 4.10164C28.1946 4.26101 28.6432 4.18972 28.9469 4.19643C29.1776 4.20146 29.2938 4.28282 29.2709 4.51935C29.2361 4.88422 29.3302 5.36987 29.1292 5.57789C28.9435 5.7708 28.4431 5.66847 28.036 5.69951Z" fill="currentColor"/> - <path d="M48.7733 5.80194C48.7733 7.27986 48.781 8.75778 48.7682 10.2349C48.7649 10.6358 48.7233 11.0401 48.6563 11.4351C48.6376 11.5467 48.4739 11.7103 48.3679 11.717C47.9049 11.748 47.4367 11.748 46.9736 11.717C46.871 11.7103 46.6946 11.5282 46.6963 11.4284C46.7234 9.63262 46.7828 7.83764 46.8125 6.04183C46.8379 4.52281 46.8354 3.00295 46.843 1.4831C46.8464 0.900987 46.8439 0.899309 47.4477 0.915246C47.7717 0.923634 48.0965 0.965573 48.4188 0.948797C48.7487 0.931183 48.8259 1.07126 48.8234 1.36734C48.8132 2.84526 48.8191 4.32318 48.8191 5.8011C48.8039 5.80194 48.7886 5.80194 48.7733 5.80194Z" fill="currentColor"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/divriots.svg b/smoke/astro.build-main/src/icons/logos/divriots.svg deleted file mode 100644 index 0698f25f6..000000000 --- a/smoke/astro.build-main/src/icons/logos/divriots.svg +++ /dev/null @@ -1 +0,0 @@ -<svg viewBox="0 0 703.85 121.18" xmlns="http://www.w3.org/2000/svg"><path d="m297 132.57 44.39-44.38a6.22 6.22 0 0 0 0-8.8l-44.39-44.39" fill="none" stroke="currentColor" stroke-width="13.05" transform="translate(0 -29.1)"/><path d="m55.79 39-44.39 44.39a6.22 6.22 0 0 0 0 8.8l44.39 44.38" fill="none" stroke="currentColor" stroke-width="11.05" transform="translate(0 -29.1)"/><g fill="currentColor"><rect height="20" rx="3" width="20" x="40" y="5.9"/><rect height="20" rx="3" width="20" y="48.9"/><rect height="20" rx="3" width="20" x="40" y="91.9"/><path d="m154 29.14v96.86h-15.69v-9a25.12 25.12 0 0 1 -10.05 7.44 33.14 33.14 0 0 1 -13 2.48 37.1 37.1 0 0 1 -18.15-4.44 32.05 32.05 0 0 1 -12.53-12.53 38 38 0 0 1 -4.58-18.8 37.27 37.27 0 0 1 4.57-18.67 32.12 32.12 0 0 1 12.49-12.48 37.1 37.1 0 0 1 18.15-4.44 33.07 33.07 0 0 1 12.66 2.35 25.34 25.34 0 0 1 9.79 7v-35.77zm-36.83 83.86a21.3 21.3 0 0 0 10.57-2.62 19.76 19.76 0 0 0 7.44-7.7 23.29 23.29 0 0 0 2.74-11.48 23.33 23.33 0 0 0 -2.74-11.49 18.9 18.9 0 0 0 -7.44-7.57 21.78 21.78 0 0 0 -21.15 0 18.9 18.9 0 0 0 -7.44 7.57 23.33 23.33 0 0 0 -2.74 11.49 23.29 23.29 0 0 0 2.74 11.48 19.76 19.76 0 0 0 7.44 7.7 21.31 21.31 0 0 0 10.58 2.62zm58.15-56.66h16.32v69.66h-16.32zm103 0-29.89 69.66h-16.83l-29.9-69.71h17l21.64 51.71 22.32-51.7z" transform="translate(0 -29.1)"/><path d="m398.77 120.21a.39.39 0 0 0 -.15.28c0 .09 0 .14-.13.14s-.28-.14-.28-.42.14-.28.41-.28.38.07.15.28zm.55 0q1.13-2 .84 1.26a40.18 40.18 0 0 1 -.56 4.89q-.14 1.26-.42 1.26c-.37 0-.51-.56-.41-1.68a7.37 7.37 0 0 0 .13-1.4 9.93 9.93 0 0 1 .28-1.25c0-.84-.18-1.31-.56-1.4s-.55-.1-.55 0l.28.7c.18.46.14.51-.14.14a1 1 0 0 1 -.7-1q0-.28.42-.42c.37-.19.65-.14.84.14a.39.39 0 0 1 .28.14h.41c.19 0 .19-.1 0-.28a1 1 0 0 1 -.14-1.1zm1.68 6.57q.42-.15.42.42a.37.37 0 0 1 -.42.42.25.25 0 0 1 -.28-.28.78.78 0 0 1 .28-.56zm51.13 16.34c-.18-.28-.14-.42.14-.42a.37.37 0 0 1 .42.42.36.36 0 0 1 -.14.28.46.46 0 0 1 -.42-.28zm-50.71-20.12c.28 0 .42.33.42 1s-.14.84-.42.84-.42-.28-.42-.84.14-1 .42-1zm50.58 10.62q6.43 8 6.15 8.53c0 .09-.23-.05-.7-.42a12.61 12.61 0 0 1 -1.25-1.12 12.82 12.82 0 0 1 -1.12-1.26 2.18 2.18 0 0 1 -.56-1 3.59 3.59 0 0 0 -.7-1 18.59 18.59 0 0 0 -1.54-1.68l-.83-.84a2 2 0 0 1 -.42-.56c.56.75.69 1.12.42 1.12-.1 0 0 .14.27.42a10 10 0 0 1 .7.84c.47.46.94 1 1.4 1.53a11.54 11.54 0 0 1 1.4 1.68c.46.56.84 1 1.12 1.4a4.33 4.33 0 0 1 .55 1.81c0 .38 0 .56-.14.56s-.13 0-.41-.28a.79.79 0 0 0 -1-.14c-.28.19-.52.1-.7-.28-.09-.09-.14 0-.14.14a.64.64 0 0 1 -.42.7c-.19.09-.28 0-.28-.28a54.08 54.08 0 0 0 -4.19-5.31 3.67 3.67 0 0 1 -1.26-1.39c-.18-.28-.32-.52-.42-.7s-.37-.42-.56-.42c-.46 0 .05.84 1.54 2.51a9.69 9.69 0 0 1 1.4 2.1c0 .65.18.88.56.7.18 0 .23.28.14.84q-.15.56.42.42c.27-.1.42 0 .42.14s-.1.27 0 .55l.55.84.7.7c.19.19.33.23.42.14s.19-.09 0 .28c0 .19-.14.37-.42.56l-.84.56c-.65.46-1 .79-1 1s-.19.28-.56.28-.56.13-.56.41-.19.42-.56.7a9.48 9.48 0 0 1 -1 .84 7.14 7.14 0 0 1 -1.12.7c-.37.28-.6.37-.69.28l-.77-.22c-.19 0-.56-.33-1.12-1a28.65 28.65 0 0 1 -2-2.23l-3.32-3.77q-2.1-2.37-4.05-4.75t-3.91-4.33c-1.21-1.39-2.05-2.37-2.52-2.93a20.11 20.11 0 0 1 -1.81-2.24c-.75-.93-1.45-1.77-2.1-2.51q-1.82-2-4.05-4.75-2.1-2.94-5.87-8.11c-1.3-1.67-2.33-3-3.07-4s-1.35-1.86-1.82-2.51l-1.12-1.54a8 8 0 0 0 -.56-1c-.65-1-1.11-1.58-1.39-1.67s-.75-.1-1.4.28a2.74 2.74 0 0 0 -.84 1.39c-.09.38-.32 1.49-.7 3.36a5.9 5.9 0 0 1 -.14 1.25 4.34 4.34 0 0 0 -.14 1c-.09.28-.23.93-.42 2s-.37 2.14-.55 3.35-.38 2.33-.56 3.35-.14 1.45-.14 1.54a.13.13 0 0 1 -.14.14 5 5 0 0 1 -.28-2.37c.09-1.4.28-3 .56-4.75.18-.84.32-1.59.42-2.24s.09-1 0-1.12c-.28-.28-.24-.42.14-.42.18 0 .28-.56.28-1.67.18-1.21.09-1.82-.28-1.82-.19 0-.28.23-.28.7s-.14.7-.42.7-.19.23 0 .7c.18.65.23 1 .14 1.11a7.25 7.25 0 0 0 -.56 2.24 30.9 30.9 0 0 1 -.42 3.35c0 1.21-.19 1.91-.56 2.1s-.37.37 0 .56.33.51.14 1-.42.61-.7.42a1.42 1.42 0 0 0 -1 .28c0 .19 0 .24-.14.14a1.17 1.17 0 0 1 .14-.42c.1-.56 0-.83-.28-.83-.37.18-.46.51-.28 1 0 .47-.09.7-.28.7s-.37-.56-.27-1.67 0-1.63-.14-1.54-.1-.33.28-1a2 2 0 0 0 .41-2.1 6.38 6.38 0 0 1 -.13-2.37 4.26 4.26 0 0 1 .69-2.24 4.38 4.38 0 0 0 .42-1.67.62.62 0 0 0 -.7-.7c-.37 0-.56.09-.56.28s-.23.42-.69.42-.47.14-.28.42a1.42 1.42 0 0 1 -.28 1q-.57.55 0 .27a.45.45 0 0 1 .7.14c.18.19.14.47-.14.84a3.23 3.23 0 0 0 -.7 1.26c-.09.56-.05.75.14.56.37-.37.56-.37.56 0a.37.37 0 0 1 -.42.42c.09 0-.09.23-.56.7a1.32 1.32 0 0 1 -.14.56 1.61 1.61 0 0 0 -.28.41c0 .28.09.38.28.28.37-.28.37-.09 0 .56a1 1 0 0 1 -1 .7c-.28 0-.28.19 0 .56.47.19.56.89.28 2.1a9.57 9.57 0 0 1 -.7 2c-.37.38-.46.33-.28-.14s.19-.65 0-.84c-.28 0-.42.24-.42.7s.14.84.42.84.28.19-.28.56c-.37.37-.46.56-.28.56.84-.09 1.17.14 1 .7-.37 1-.7 1-1 0-.09-.28-.18-.19-.28.28s.19.69.56.69.56.29.28.84a3.41 3.41 0 0 1 -.14.84 4.27 4.27 0 0 0 -.14 1 2.94 2.94 0 0 1 -.14 1v.42c0 .09-.23.14-.69.14s-.66-.19-.56-.84a1.29 1.29 0 0 0 .14-.56.56.56 0 0 1 .28-.56c.55-.37.65-1.12.27-2.24s-.83-1.25-1.67-.41a1.55 1.55 0 0 0 -.56 1c0 .19.23.19.7 0s.65.19.56.84a12.11 12.11 0 0 0 -.28 2.38 1 1 0 0 1 -1.12 1.11 12.72 12.72 0 0 0 -2.24.28 4 4 0 0 1 -2.65-.42c-.84-.27-1.35-.46-1.54-.55a3.35 3.35 0 0 1 0-1.4q.57-4.76.7-6.57c.19-1.21.33-2.23.42-3.07.09-.47.19-1.07.28-1.82s.19-1.44.28-2.09c.46-3.08.79-5.68 1-7.83s.32-3.49.14-3.77c-.19-.56-.38-.84-.56-.84a1.67 1.67 0 0 1 -.84-.42 11.9 11.9 0 0 1 -1.12-1l-1-1.26a2.6 2.6 0 0 1 -.42-1 1 1 0 0 1 .42-.84 14.5 14.5 0 0 1 2.1-.7c1.68-.65 2.56-1.21 2.65-1.67a8.73 8.73 0 0 0 .7-2.8q.42-2.51.84-5.72.71-3.36 1.54-8.11t1.56-8.48l1.67-8.24-1.1-.86a4.64 4.64 0 0 0 -.69-.56c-.19-.19-.28-.33-.28-.42s-.33-.61-1-1.26a5.35 5.35 0 0 0 -1.68-1.25 18.93 18.93 0 0 1 -1.54-1.12c-.74-.65-1.58-1.45-2.51-2.38a36 36 0 0 1 -2.87-2.91 1.69 1.69 0 0 1 -.14-1.54 7.1 7.1 0 0 1 2.23-2.37 35.62 35.62 0 0 1 4.75-3.08 52.08 52.08 0 0 1 6-2.79 43.88 43.88 0 0 1 6.43-2.24q2.65-.69 5.72-1.25c2.15-.38 4.24-.66 6.29-.84s4.15-.28 6-.28a23.47 23.47 0 0 1 4.61.14 20.3 20.3 0 0 1 5 1.67 19.34 19.34 0 0 1 4.89 2.8 36.27 36.27 0 0 1 3.22 2.93c1.4 1.31 2.8 2.7 4.19 4.19s2.7 2.94 3.92 4.34a26.33 26.33 0 0 1 2.37 2.79 13 13 0 0 1 2 3.91 17.45 17.45 0 0 1 .69 4.05q.28 6.28-4.19 12.58-4.36 6.14-13.98 12.89l-2.37 1.68c-.93.56-1.91 1.16-2.94 1.81s-1.81 1.26-2.65 1.82-1.44.79-1.82 1c-.84.46-1.49.84-1.95 1.11a1.3 1.3 0 0 0 -.84.7 2.37 2.37 0 0 0 .42 1.12 12.71 12.71 0 0 1 1.36 1.76c.56.74 1.26 1.72 2.1 2.93s1.58 2 2.24 2.79 1.35 1.92 2.37 3.22 2.1 2.47 2.93 3.49l3.78 4.61q2.5 2.94 4.61 5.59t3.63 4.47c.93 1.12 1.77 2.1 2.51 2.94s1.59 1.81 2.24 2.65 1.44 1.82 2.38 2.93zm-58.11-76.7.14-.28c0-.18-.14-.28-.42-.28s-.19.1 0 .28c0 .28.09.42.28.42zm-1.4 61.61c0-.28-.09-.42-.28-.42s-.28.14-.28.42a.4.4 0 0 0 .14.28c.08 0 .22-.09.41-.28zm1.67 2.66a2.74 2.74 0 0 0 .14-1.54q0-.84-.27-.84a.37.37 0 0 0 -.42.42v.56a4 4 0 0 1 -.14.84c-.1.56 0 .93.14 1.12s.39-.1.54-.56zm0-3.77c.38 0 .56-.1.56-.28a.42.42 0 1 0 -.83 0c-.11.18-.01.28.26.28zm6-3.92c.19-.18.14-.28-.14-.28s-.42.1-.42.28v.28a.12.12 0 0 0 .14.14q.15 0 .42-.42zm.7-3.35c.09-.46.09-.7 0-.7l-.28.42a2.76 2.76 0 0 0 -.56 1.4c0 .47.1.61.28.42a5.38 5.38 0 0 0 .56-1.54zm.14-2.37c.28-.47.28-.79 0-1-.19-.47-.28-.37-.28.28s.09.94.28.72zm1.54-30.6c-.37.37-.52.61-.42.7a2.49 2.49 0 0 0 1-.42c.28-.28.37-.47.28-.56s-.3-.09-.86.28zm.56 4.75c.28 0 .42-.05.42-.14l-.42-.42a.28.28 0 1 0 0 .56zm.55 23c.1 0 .15-.18.15-.56-.19-.56-.28-.51-.28.14v.56c.09.14.13.1.13-.07zm.7-28.64c0-.46 0-.6-.14-.42-.28 0-.41.24-.41.7s0 .56.13.56a2.74 2.74 0 0 0 .42-.79zm2.38 25.15c0-.19-.14-.28-.42-.28s-.47-.09-.56 0-.05.28.42.28zm19.14-15.93c.09-.37.05-.51-.14-.42s-.37.19-.56.56 0 .42.28.42c.09.05.23-.13.42-.51zm-11.6-5.73q13.56-8.52 19.42-15.08 6-6.57 6-13.14c0-1.3-.28-2.14-.84-2.51s-1.68-.89-3.63-1.26q-5.44-.84-14.39.7a29.89 29.89 0 0 0 -4.75 1.12 1.2 1.2 0 0 0 -1 1.26 17.79 17.79 0 0 1 -.28 2.09c-.19 1.12-.46 2.52-.84 4.19s-.6 3.31-1 5.17-.75 3.63-1.12 5.31-.75 3.54-1.12 5.31-.7 3.4-1 4.89-.51 2.7-.7 3.63-.28 1.4-.28 1.4c0 .18.28.14.84-.14s2.27-1.3 4.69-2.89zm27 49.6c.56.28.65.09.28-.56a7.18 7.18 0 0 1 -.7-.83 2.34 2.34 0 0 0 -.7-.7l-1-1 .84 1a2 2 0 0 1 .7 1.39c-.01.52.17.75.55.75zm5.44 5.73a.4.4 0 0 1 -.13-.28.38.38 0 0 1 -.14-.28 1.17 1.17 0 0 0 -.14-.42 14.85 14.85 0 0 1 -1-1.12c-.47-.55-.93-1.07-1.4-1.53a8.15 8.15 0 0 0 -1.4-1.4c-.09-.09.05.14.42.7a8.19 8.19 0 0 0 .7 1.12 8.5 8.5 0 0 0 .7.84c.47.46.7.74.7.83 0 .28.23.65.7 1.12s.78.66.96.47zm.84-5c.19 0 0-.33-.69-1a2.85 2.85 0 0 1 -.7-.56l-.28-.28c-.19 0 0 .28.56.84s.8 1.02 1.08 1.02zm6.71 11.74a.83.83 0 0 0 -.56-.56c-.19 0-.28.14-.28.42a.62.62 0 0 0 .7.7c.25.02.3-.17.11-.54zm-5.31-9.78c.47.56.75.83.84.83s-.09-.27-.56-.83a4.28 4.28 0 0 0 -.56-.7c-.09-.1-.19-.19-.28-.28-.31.02-.12.34.53 1zm7.71-.56c-.19 0-.28-.28-.28-.84a3.22 3.22 0 0 0 .14-1 1.62 1.62 0 0 1 .14-.7c0-.46.09-.7.28-.7s.19.24 0 .7a2.39 2.39 0 0 0 -.14.7v.7a1.59 1.59 0 0 1 -.17 1.16zm10-9.79a.31.31 0 0 1 -.35-.35c0-.08.11-.12.35-.12.16.16.24.27.24.35s-.07.14-.23.14zm-7 14.68c.19 0 .28.14.28.42s-.14.28-.42.28c-.09.09-.14 0-.14-.28l.14-.28a.12.12 0 0 1 .18-.12zm24-81.68c0 .47 0 1.34-.12 2.6s-.2 2.56-.36 4.14-.23 3.07-.47 4.72-.35 3.11-.59 4.38q-.94 6.38-1.54 10.28c-.31 2.6-.59 4.53-.82 5.79s-.4 3-.71 5.2-.59 4.21-.83 6a16.72 16.72 0 0 0 -.35 1.66 7 7 0 0 0 -.12.94 3.71 3.71 0 0 0 -.24 1.06c-.16.87-.31 1.86-.47 3s-.28 1.85-.36 2.24a1.18 1.18 0 0 1 -.23.36v.35a.92.92 0 0 0 -.12.36 1.08 1.08 0 0 1 0 .71c0 .15-.08.19-.24.11-.31-.15-.39-.35-.23-.59s-.12-.47-.59-.47-.71.2-.71.59a.92.92 0 0 0 -.12.36c.08 0 .12 0 .12.11v.12c.15 0 .23.16.23.48s-.08.47-.23.47c-.32 0-.32.08 0 .23q0 .48-.24.48a.52.52 0 0 0 -.12.59c.16.16.08.23-.23.23a.48.48 0 0 0 -.48.24 2.68 2.68 0 0 0 0 1.18c.16.87.16 1.3 0 1.3s-.19.32-.35 1a1.85 1.85 0 0 1 -.24 1.18c-.23 0-.35-.63-.35-1.89a3.51 3.51 0 0 0 0-1.42c-.08-.16-.24-.12-.47.12a4.37 4.37 0 0 0 -.24 1.42c0 .63-.12.94-.36.94s-.23-.31-.23-.94l.23-.83a1 1 0 0 0 .24-.71c0-.39-.08-.51-.24-.35s-.31 0 0-.48l.24-.47q.12 0 .36.24c.23.39.47.31.7-.24a2.59 2.59 0 0 0 -.11-1.06c-.08-.08-.12 0-.12.23s-.16.36-.47.36-.36-.2-.12-.59c.31-.79.27-1.07-.12-.83s-.47.12-.47-.12.15-.35.47-.35.27-.24-.12-.71a1.21 1.21 0 0 1 -.24-1.18q.48-.36.48 0c0 .23.08.35.23.35s.32-.31.24-.94a3.73 3.73 0 0 0 -.35-1.42q-.36-.36-.12-.36c.15 0 .39-.23.71-.71s.19-.82-.12-.82-.47.23-.47.71c-.08.23-.12.31-.12.23a1.92 1.92 0 0 0 -.12-.47c0-.71.16-1.06.47-1.06s.36-.08.36-.24v-.35a1.2 1.2 0 0 0 .11-.48c.08-.15.08-.23 0-.23a.14.14 0 0 0 -.23 0c-.16.15-.24 0-.24-.48s.2-1.61.36-3.42c.07-.55 0-.71-.24-.48a1.63 1.63 0 0 0 -.35 1.19c0 .47-.12.67-.36.59s-.16.19 0 .59c0 .39-.08.59-.24.59s-.27.23-.11.71.08.63-.24.47c-.16-.16-.28-.2-.35-.12l.11.12a.86.86 0 0 1 -.11.95c-.71.86-.71 1.14 0 .82.31-.15.39-.08.23.24s-.31.51-.47.35-.24 0-.24.59a1.34 1.34 0 0 0 .48 1c.07.31 0 .51-.24.59s-.39.59-.24 1.3c.16.87.12 1.18-.12 1a.42.42 0 0 0 -.59 0c0 .23.08.35.24.35s.2.16.35.47-.11.48-.35.24c-.16-.08-.2.2-.12.83s0 .82-.12.82-.27-.11-.35.12a.75.75 0 0 0 0 .59q.12.36-.24.24a.81.81 0 0 1 -.35-.47c-.16-.24-.24-.16-.24.23a1.07 1.07 0 0 0 .12.48.39.39 0 0 0 .36.23c.15.16 0 .24-.48.24a1.7 1.7 0 0 1 -1.06-.36c-.24-.23-.2-.39.12-.47a.55.55 0 0 0 .35-.59c0-.32.08-.47.24-.47s.19-.08.12-.24-.12-.31-.36-.47c-.23-.32-.39-.43-.47-.36a9.51 9.51 0 0 1 -.24 1.07 13.22 13.22 0 0 0 -.23 2.48 5.91 5.91 0 0 1 -.12 1.18 1.62 1.62 0 0 1 -.12.71 1.25 1.25 0 0 0 -.12 1.18c.16.47.12.71-.12.71s-.31.55-.47 1.42a23.71 23.71 0 0 0 -.35 3.07q-.24 1.65-.36 2.13c-.08.23-.23.23-.47 0s-.63-.12-.71.35q-.36.7.12.36a1.36 1.36 0 0 1 .71.11c.23.16.08.28-.48.36a1.41 1.41 0 0 0 -.94.94q.12.48.12.36c0-.24.19-.47.59-.71s.47.2.47 1.3a6.53 6.53 0 0 1 -.12 1.3v.71c-.47.63-.78.39-.94-.71 0-.63-.12-1-.36-1s-.27.2-.35.83v.83a2.64 2.64 0 0 1 -.12.83 4.29 4.29 0 0 0 -.12 1.06 3 3 0 0 1 -.12.94 2.88 2.88 0 0 1 -.11.83 3.58 3.58 0 0 1 -.24.71c-.16.08-.24.28-.24.59s.08.4 0 .47c-.23.08-.27.36-.12.83s.08.59-.23.59-.36.2-.12.59q.12.36-.12.36c-.08.08-.39.08-.94 0a2.61 2.61 0 0 0 -1.66.35 1 1 0 0 1 -.71.24 1.11 1.11 0 0 1 -.82-.36c-.32-.31-.28-.47.11-.47s.36-.16.12-.47c-.39-.55-.23-.75.48-.59.31.23.35.12.11-.36s-.23-.82 0-1.06.24-.2 0-.12-.31-.27-.23-1.3a5.91 5.91 0 0 1 .12-1.18 3.74 3.74 0 0 0 .11-.71 4.07 4.07 0 0 0 0-3.07c-.08-.32-.15-.71-.23-1.18v-1.42a8.92 8.92 0 0 1 .23-.95c.08-.23.2-.27.36-.11a1.05 1.05 0 0 1 0 .7.21.21 0 0 0 .23.24c.16 0 .24-.31.24-.94-.16-.63-.31-1-.47-1v-.24a.35.35 0 0 0 -.12-.23 1 1 0 0 1 .12-.47c0-.24 0-.83.12-1.78s.31-2.12.47-3.31c.16-1.41.27-2.4.35-3s.32-1 .48-1h.35c0-.31-.12-.47-.35-.47a49.41 49.41 0 0 1 .35-5.55c.16-1.5.32-2.88.47-4.14s.24-2 .24-2.36c.08-.71.24-1.81.47-3.31s.44-3 .59-4.61.44-3 .59-4.37.28-2.29.36-2.84.39-2 .71-4.25.67-4.53 1.06-7q.6-3.9 1.18-7.57c.4-2.44.75-4.68 1.07-6.73s.59-3.78.82-5.2.44-2.52.59-3.07a3.43 3.43 0 0 1 .48-1.42 1.68 1.68 0 0 1 .94-.35 5.9 5.9 0 0 1 2.37 0 6.91 6.91 0 0 1 2.59.7c.87.56 1.38.67 1.54.36s.51-.08 1.3.47a3.8 3.8 0 0 0 .95.59c.15 0 .31-.16.47-.47s.39-.55.71-.47a13 13 0 0 1 2.83.94c.32.08.6.44.83 1.07a6.26 6.26 0 0 1 .39 2.32zm-25.24 69.52c.09-.46.09-.7 0-.7s-.14 0-.42.28l-.28.56q-.15.15 0 .42l.28.56a4.09 4.09 0 0 0 .45-1.1zm1.11-8.94c.19-.37.1-.46-.28-.28-.37 0-.55.1-.55.28s.13.42.41.42a.37.37 0 0 0 .45-.4zm0-2.23c.1 0 .14-.1.14-.28s-.09-.42-.28-.42-.32.23-.14.42c0 .18.05.28.14.28zm3.78-2.66c.18-.18.14-.28-.14-.28s-.42.1-.42.28.09.42.28.42h.14v-.14zm1.67 2.24a.86.86 0 0 0 .56.28q.29-.15 0-.42c0-.28-.18-.42-.56-.42s-.25.2.02.58zm1.54-10.06c.19 0 .28-.14.28-.42s-.05-.42-.14-.42l-.42.42c.03.3.12.44.31.44zm0 1.88q.36-.48 0-.12a1.13 1.13 0 0 1 -.83.12c-.07-.08-.11-.08-.11 0l.11.12c.19.49.47.41.86-.1zm1.66.12c.07-.32.23-.48.47-.48s.24-.07.24-.23l-.24-.12h-.47c-.16 0-.24.2-.24.59q.06 1.21.27.26zm.59 1.06a.65.65 0 0 0 .47.24c.16-.08.24-.28.24-.59s-.16-.36-.48-.12-.36.33-.2.49zm3.9-10.52c-.16.95-.16 1.3 0 1.07.15-.08.27-.32.35-.71a9.26 9.26 0 0 0 .12-1.54 7.76 7.76 0 0 0 .12-1.3c0-.39 0-.59-.12-.59s-.24.28-.24.83a6.89 6.89 0 0 1 -.12 1.06 6.64 6.64 0 0 1 -.08 1.2zm.82 12.41q.12-.12 0-.12c0-.08-.08 0-.23.12q-.48.12-.48.24t.24.12c.35.02.5-.1.5-.34zm.24-1.77q.12-.12 0-.12t-.24 0c-.31.08-.47.2-.47.36s.12.11.35.11.39-.12.39-.33zm-.24-13.94q.12 0 .12-.36c0-.16-.12-.24-.35-.24s-.28.08-.12.24.23.38.38.38zm.12-1.54c.16-.08.24-.28.24-.59 0-.47-.08-.71-.24-.71-.16-.16-.24 0-.24.59s.11.73.27.73zm2.39 10.89c-.23 0-.35.08-.35.24a.31.31 0 0 0 .35.35c.16 0 .32-.12.48-.35q0-.36-.48-.24zm-1.89-15.72c-.31.32-.35.59-.11.83s.27.32.35.24a1.16 1.16 0 0 0 .24-.83 1.76 1.76 0 0 1 -.24-.71.11.11 0 0 0 -.12.12.35.35 0 0 1 -.12.24zm-.11 2.37a.7.7 0 0 0 .35.35c.24.08.35 0 .35-.12s-.11-.19-.35-.35-.43-.04-.35.12zm2 15.17c.24-.15.2-.23-.11-.23s-.63.31-.71.94c.08.16 0 .36-.24.59s-.31.24 0 .24.32.27.24.83a1.91 1.91 0 0 1 -.24 1.06.94.94 0 0 0 -.35.59c0 .16.15.24.47.24a.93.93 0 0 0 .83-.36 1.73 1.73 0 0 0 .23-.71 5.83 5.83 0 0 0 .12-1.18 4.93 4.93 0 0 0 -.12-1.18c-.08-.32-.19-.47-.35-.47a.11.11 0 0 1 -.12-.12 1.51 1.51 0 0 1 .35-.24zm.12-.59c.32 0 .48-.12.48-.35s-.16-.16-.48 0a.33.33 0 0 0 -.23.12h-.12l-.12.11c0 .03.16.07.47.07zm.48-2.24c.23 0 .35-.24.35-.71a1 1 0 0 0 -.47-1q-.36 0 0 .24t.12.24c-.24 0-.36.23-.36.7q0 .48.36.48zm.59-2.72c.15-.39.11-.55-.12-.47s-.36.19-.59.59-.24.67.23.59a.77.77 0 0 0 .48-.76zm1.3-11c0-.32-.08-.47-.24-.47s-.28.15-.12.47.28.47.36.47zm-2.6 22.92c.15 0 .19.56.11 1.66a2.73 2.73 0 0 1 -.47 1.89c-.16.31-.23.23-.23-.24a1.52 1.52 0 0 0 -.12-.94 1.17 1.17 0 0 1 .23-1.18c.24-.56.32-.87.24-1s-.08-.23.24-.23zm-9.46 13.36c0-.4.12-.63.36-.71s.39.08.47.47 0 .47-.35.47c-.32.12-.48.04-.48-.27zm5.68-5.2c0-.4.11-.44.35-.12a2.05 2.05 0 0 1 .24.94q0 .36-.24.12a1.24 1.24 0 0 1 -.35-.98zm-5.56 1.89a.63.63 0 0 1 .47-.71c.32-.16.52 0 .6.35a.42.42 0 0 1 -.48.48c-.39.11-.59.07-.59-.16zm-.23 4.37c.15-.16.35-.16.59 0q.12 0 0 .12h-.71q-.12-.16.12-.16zm8.74-9.57c0-.4.08-.51.24-.36s.19.24.11.48c-.23.66-.35.66-.35-.16zm-4.61 7.56q.24-.24.24-.12v.71c0 .71-.08 1.07-.24 1.07s-.24-.16-.24-.48a3.84 3.84 0 0 1 .24-1.22zm.95 5.32c.15-.16.27-.2.35-.12s0 .08-.12.24c-.31.86-.63.9-.94.12q-.36-.36.12-.12c.07.04.27 0 .59-.16zm-.12-8.75q-.12.72-.36.12a2.93 2.93 0 0 1 .24-1.89l.24-1.18.11 1.06a7.64 7.64 0 0 1 -.23 1.85zm1.18 1.07c.24 0 .2.39-.12 1.18-.16.79-.23 1.22-.23 1.3s.07.59-.24 1.3l-.47 1.06.11-1.3a5.29 5.29 0 0 0 .12-1.06 3.58 3.58 0 0 1 .24-.71.68.68 0 0 0 .12-.47v-1.77q.12-.24.12 0c.15.27.27.43.35.43zm2.13-2.13c.08 0 .11.08.11.24s-.27.35-.35.35a.11.11 0 0 1 -.12-.12v-.23q0-.28.36-.28zm-4.14 2.84q0-.36.24-.12c.23.16.35.27.35.35s-.12.12-.35.12-.24-.16-.24-.39zm-2.95-3.9c.23 0 .43.15.59.47s.19.63.12.71-.16.2-.48.35-.63.12-.71-.11a.91.91 0 0 1 .12-.71q.12 0 .12-.48c-.08 0-.12 0-.12-.11a.49.49 0 0 1 .36-.16zm-3.33 12c.28-.28.47-.32.56-.13s.19.46 0 .83-.46.28-.56 0c-.28-.24-.28-.48 0-.76zm-.83 4.2c-.1-.56 0-.7.27-.42a1.24 1.24 0 0 1 .28 1.39c-.09.47-.28.75-.55.84s-.28-.09-.28-.56c0-.28.09-.42.28-.42.37-.06.37-.34 0-.89zm4.87-19.85c.23 0 .35.08.35.24a3.41 3.41 0 0 1 .12 1.18c-.08 1.66-.36 2.21-.83 1.66-.16-.48-.23-.52-.23-.12a.42.42 0 0 1 -.48.47c-.23 0-.35-.08-.35-.24a.94.94 0 0 1 .12-.35c.08-.16.15-.32.23-.47.32-.32.48-.55.48-.71-.08-1.16.11-1.72.59-1.72zm-5 22.36c.28.09.37.37.28.84s-.33.7-.7.7a.25.25 0 0 1 -.28-.28 2.9 2.9 0 0 1 .14-1c.17-.32.35-.41.55-.32zm.84-5.31a.37.37 0 0 1 .41.42c0 .19-.14.28-.41.28s-.43-.09-.43-.28a.38.38 0 0 1 .38-.48zm102.16-74.8a36.07 36.07 0 0 1 6 15.78q.84 7.83-2.52 17.75a64.09 64.09 0 0 1 -4.19 10.2 67.2 67.2 0 0 1 -5.59 9.08 56 56 0 0 1 -6.28 7.54 42.1 42.1 0 0 1 -6.71 5.31 18.37 18.37 0 0 1 -3.63 2 2.16 2.16 0 0 1 -1.54 0c-.28-.28-.42-.19-.42.28s-.56.88-1.67 1.25a27.37 27.37 0 0 1 -6.85 1.68 19.08 19.08 0 0 1 -6.15-.14 26.9 26.9 0 0 0 -2.93-.7c-1.4-.28-2.75-.51-4-.7q-4.2-.84-6.85-1.39a46 46 0 0 1 -4.47-1.4 29 29 0 0 1 -2.93-1.4 23.25 23.25 0 0 1 -2.38-2.09 22.49 22.49 0 0 1 -2.51-3.08q-1.26-1.82-2.38-3.77c-.65-1.4-1.25-2.75-1.81-4a22.51 22.51 0 0 1 -1-3.49 6.1 6.1 0 0 0 -.28-2c-.19-.74-.37-1.77-.56-3.07a44.1 44.1 0 0 1 0-4.89 66.17 66.17 0 0 1 2-14.53 77.67 77.67 0 0 1 4.89-14.25 66.71 66.71 0 0 1 7.26-12.3 42.2 42.2 0 0 1 9.08-9.08 35.29 35.29 0 0 1 7.83-4.47 20.5 20.5 0 0 1 7.68-1.4h2.23a8.08 8.08 0 0 1 1.54.14 4.56 4.56 0 0 1 1.4.56 15.88 15.88 0 0 1 2 .84 46.33 46.33 0 0 0 4.9 2c1.67.55 3.44 1.07 5.3 1.53a19.11 19.11 0 0 1 8.25 3.77 34.6 34.6 0 0 1 7.29 8.44zm-59.79 37.58c.28 0 .41-.19.41-.56 0-.19-.13-.28-.41-.28s-.28.19-.28.56.09.47.28.28zm.56-3.35c.37 0 .55 0 .55-.14s-.14-.33-.42-.42a.26.26 0 0 0 -.41.14c-.19.28-.1.42.3.42zm3.77 1.11c.18 0 .28-.14.28-.42s0-.41-.14-.41-.33.13-.42.41.09.42.28.42zm44.56-20.25v-3.36a10.14 10.14 0 0 0 -.28-2.51 13 13 0 0 0 -.42-2.24 11.75 11.75 0 0 0 -.83-2.09c-.1-.19-.24-.52-.42-1s-.38-1-.56-1.54a23.41 23.41 0 0 0 -2.24-4.18 32.63 32.63 0 0 0 -2.93-4.47l-1.54-2-2 .14q-4.47.42-9.92 4.33a48.69 48.69 0 0 0 -9.78 9.78 65.79 65.79 0 0 0 -3.77 5.59 45.24 45.24 0 0 0 -2.94 5.73 68 68 0 0 0 -5.68 22.12q-.69 10.77 3.08 18.31c.28.56.6 1.21 1 2s.93 1.45 1.39 2.1a19.64 19.64 0 0 1 1.4 1.53c.37.47.61.7.7.7a3.56 3.56 0 0 0 .84-.14 8.57 8.57 0 0 0 1.67-.56c.56-.18 1.17-.37 1.82-.55a10.41 10.41 0 0 0 1.4-.7l1.39-.56a3.9 3.9 0 0 0 1-.56q1-.55 2.1-1.26l2.51-1.67c.84-.66 1.58-1.21 2.24-1.68a48.94 48.94 0 0 0 8.38-8.52 67.11 67.11 0 0 0 6.85-11.88 70.27 70.27 0 0 0 4.19-11.31 34.57 34.57 0 0 0 1.35-9.55zm6.29 23.47c0-.28-.09-.42-.28-.42a.55.55 0 0 0 -.56.42c0 .18 0 .28.14.28.38 0 .61-.1.7-.28zm.56-1.26a1.14 1.14 0 0 0 .28-.84c0-.37-.09-.46-.28-.28a1.72 1.72 0 0 0 -.28.7c0 .29.12.42.28.42zm2.51-6.29a2.41 2.41 0 0 0 .28-1.12c-.09-.18-.18-.14-.28.14a2.48 2.48 0 0 0 -.41 1.12c0 .28.14.23.41-.14zm1.4-5.17c.19-.74.23-1.11.14-1.11s-.09 0-.28.41a3.92 3.92 0 0 0 -.7 2c0 .75-.09 1.12-.28 1.12-.18.37-.23.6-.14.7s.42 0 .7-.56a8.27 8.27 0 0 0 .56-2.56zm.7-2.79a9 9 0 0 0 .28-2.66 2.41 2.41 0 0 0 -.14-1v.14c-.19.65-.37 1-.56 1.11a4.4 4.4 0 0 1 -.14.7 6.36 6.36 0 0 0 .14 1.12c.09 1.24.23 1.43.42.59zm3.63 2.65c.1 0 .24-.28.42-.83s.14-.7-.14-.7c-.09 0-.23.23-.42.7s-.14.83.14.83zm72-37.86c.19.37.28.51.28.42 0 .09-.09.14-.28.14s-.28 0-.28-.14a.13.13 0 0 1 -.12-.09c0-.23.12-.33.4-.33zm-8.38 2c.37 0 .56.09.56.28s-.23.42-.7.42-.56-.14-.56-.42a.94.94 0 0 1 .68-.32zm6.15-2.67a1.23 1.23 0 0 0 .14 1c.18.19.18.28 0 .28l-1.82.14a3.63 3.63 0 0 1 -1.4 0c-.28-.09-.37-.19-.28-.28a1.21 1.21 0 0 1 .84-.42c.56-.09.84-.32.84-.7s.28-.56.84-.56c.74-.05 1.02.14.84.54zm-2.8-3.21c0-.37.14-.56.42-.56a1.27 1.27 0 0 1 1 .14c.37.19.42.28.14.28a5.59 5.59 0 0 0 -1 .28c-.37.16-.56.07-.56-.17zm.42 3.07c0 .19-.51.28-1.53.28s-1.36 0-1.26-.14a2.57 2.57 0 0 1 1.53-.28c.84-.12 1.26-.07 1.26.11zm-2.79 1.14c.46 0 .74.09.84.28s.09.33-.28.42h-.7a6.36 6.36 0 0 0 -1.12.14l-3.07.28a3.31 3.31 0 0 0 -1.68.42c-.47.18-.51.37-.14.56a8 8 0 0 0 2.1 0c1.3-.19 1.95-.14 1.95.14s-.51.37-1.54.56a22.37 22.37 0 0 0 -2.65.28c-1.3.09-2.65.23-4.05.41s-2.65.38-3.77.56a7.23 7.23 0 0 0 -1.82.42 14.31 14.31 0 0 0 -.56 2.66c-.18 1.58-.42 3.49-.7 5.72-.18 1.12-.42 2.43-.7 3.92s-.37 2.84-.55 4.33-.42 2.93-.7 4.33-.33 2.51-.42 3.63q-.56 3.21-1 6.71c-.28 2.23-.51 3.86-.7 4.89q-.13.84-.42 2.79c-.18 1.21-.42 2.7-.7 4.47s-.46 3.59-.83 5.73-.61 4.1-1 6.15q-.84 6.42-1.68 11.59-.69 5.18-.84 6.15c-.18.65-.42 1.77-.7 3.35s-.37 3.22-.55 4.89q-.84 4.89-1.4 7.27a8.27 8.27 0 0 1 -1.26 3.21 1.66 1.66 0 0 1 -1 1c-.37.19-.46.05-.28-.42.19-.28.14-.28-.14 0-.83.65-1.39.56-1.67-.28q-.15-.42-.42 0c-.19.19-.37.14-.56-.14s-.7-.37-1.54-.28a5.67 5.67 0 0 1 -1.81 0c-.84 0-1.73 0-2.66-.14a16.59 16.59 0 0 1 -2.51-.42c-.75-.18-1.17-.37-1.26-.56q-1.26-1.81-.56-6.42c.09-1.21.33-3 .7-5.45s.79-5.26 1.26-8.52 1.12-6.8 1.67-10.62 1.31-7.69 2-11.6q.71-3.63 1.12-6.42a33.83 33.83 0 0 1 .56-3.36c.09-.56.23-1.72.42-3.49s.6-3.82 1-6.15.8-5 1.26-7.68.89-5.26 1.26-7.68.7-4.52 1-6.29.6-3.12.69-3.77c.19-.47.24-.75.14-.84s-.41-.1-1 0l-3.08.56q-2.37.42-5.45.83-2.93.42-6.14 1t-5.59.84q-2.79.42-4.89.84c-1.31.19-2 .28-2.24.28-.46.18-.7.18-.7 0s.1-.61.56-1c.28-.19.24-.23-.14-.14-.56.09-.83 0-.83-.42a1.52 1.52 0 0 1 .41-1.12l.28-.28c0-.09-.14 0-.42.14-.46.1-.69-.14-.69-.69a3.23 3.23 0 0 0 -.56-1.82 9.32 9.32 0 0 1 -.7-1.4c-.28-.65-.56-1.35-.84-2.09s-.51-1.45-.7-2.1a4.49 4.49 0 0 1 -.42-1.26c0-.46.38-.88 1.12-1.25a7.75 7.75 0 0 1 2.52-1.12c.93-.19 2.56-.47 4.88-.84s4.8-.93 7.41-1.4 5.31-.88 7.82-1.25 4.57-.8 5.87-1a19.64 19.64 0 0 0 2.38-.28c1.3-.19 2.74-.37 4.33-.56s2.93-.33 4.33-.42a14.39 14.39 0 0 0 2.93-.56 18 18 0 0 0 2.1-.14 16.59 16.59 0 0 0 2.51-.42q2.24-.27 6.85-.56t8.66-.69h2.66c.55 0 .83.09.83.28q0 .69.42 0a.44.44 0 0 1 .42-.28h.56c.28 0 .61.23 1 .69a2.15 2.15 0 0 1 .56 1.26c-.19.28-.14.42.14.42s.28.75.28 2.24c.09 1.77-.05 2.37-.42 1.81a4.32 4.32 0 0 0 -2-.28c-.93 0-1.49.14-1.67.42q0 .42.27.42a.37.37 0 0 1 .42.42c0 .37-.46.56-1.39.56a2.9 2.9 0 0 0 -1.68.28h-.42a.79.79 0 0 1 -.56-.28 3.4 3.4 0 0 0 -1.53.28 2 2 0 0 1 -1.4.42c-.28-.28-.61-.24-1 .14-.28.18-.42.23-.42.14s-.14-.14-.42-.14a.79.79 0 0 0 -.56.28q-.84.27-.84 0c0-.38-.18-.38-.55 0a1.88 1.88 0 0 1 -1.4 0 3.11 3.11 0 0 0 -1-.28q-.13 0-.42.42 0 .56.42.42c.28-.1.42 0 .42.14 0 .46-.51.46-1.54 0a1.18 1.18 0 0 0 -1.12.27 1.1 1.1 0 0 1 -.83.28.52.52 0 0 0 -.7 0c-.47.19-.47.38 0 .56a4.64 4.64 0 0 0 1.95-.14c1.12 0 1.68.1 1.68.28s0 0 .14-.14c.37-.37 1-.42 1.82-.14.93 0 1.49-.09 1.67-.28 0-.28.24-.42.7-.42s.51.14.14.42l-.28.28h.7c.65 0 1-.09 1-.28s.33-.14 1-.14a1.54 1.54 0 0 1 .69.14h.56c.28 0 .24.19-.14.56s-.23.56.14.56a.49.49 0 0 0 .56-.56c0-.37.37-.56 1.12-.56s.93.19.84.56.02.56.58.56zm-4.47-4.75c-1 .09-1.45.33-1.26.7s.32.42.42.14a1.13 1.13 0 0 1 .7-.14l1.39-.28a4.34 4.34 0 0 1 1.54 0h1a.69.69 0 0 0 .84 0 .91.91 0 0 0 .56-.84c0-.18-.33-.23-1-.14a32.63 32.63 0 0 0 -4.19.51zm-24.73 65.2a1.8 1.8 0 0 0 0-1c-.37-.47-.56-.09-.56 1.11 0 .94 0 1.22.14.84a1.07 1.07 0 0 0 .14-.42zm3.07-22.08c.1 0 .14 0 .14-.14a.56.56 0 0 0 -.14-.42c-.18-.37-.28-.32-.28.14s.1.61.28.42zm.28-2.79a.84.84 0 0 0 .14-.56c-.19-.28-.28-.23-.28.14s.05.51.14.42zm13-32.83c.47 0 .61-.1.42-.28h-.28q-.13-.15-.42 0c-.38.18-.28.28.27.28zm1.26 0a.42.42 0 1 0 -.42-.42.37.37 0 0 0 .41.42zm1.54-.42q.42-.42-.42-.42a.37.37 0 0 0 -.42.42c0 .28.09.42.28.42s.36-.14.55-.42zm1.95-.14c1-.28 1.31-.47.84-.56a2.39 2.39 0 0 0 -1.39-.14c-.47.09-.7.28-.7.56s-.1.42 0 .42a6.88 6.88 0 0 0 1.24-.28zm2.8-2c.28 0 .42-.09.42-.28a.13.13 0 0 0 -.14-.14v-.28q-.29 0-.42.42c-.2.23-.15.32.13.32zm3.63-.28c.37 0 .56-.09.56-.28h-.42q-.13-.14-.42 0c-.2.23-.05.37.27.37zm69.2-4.89a2.41 2.41 0 0 1 1.25 1.54 4.41 4.41 0 0 1 -.42 2.65q-.69 2.1-1.67 5l-1.69 5.66c-.47 1.86-.93 3.63-1.4 5.31s-.65 3-.83 4c-.19.75-.33 1.4-.42 2a8.11 8.11 0 0 1 -.42 1.53 7.68 7.68 0 0 0 -.42 1.4c-.37 0-.42.14-.14.42a1.47 1.47 0 0 1 .14.84 6.82 6.82 0 0 1 -.14 1.26c-.09.46-.19.93-.28 1.39a4.34 4.34 0 0 1 -.28 1c-.19.37-.33.56-.42.56a5.59 5.59 0 0 0 -.28-1 1 1 0 0 0 -.56-.84q-.42-.27-.42.42c.1.47 0 .65-.42.56s-.46-.37-.55-.84a5.11 5.11 0 0 0 -.42-1.39c0-.1-.1 0-.28.42-.38.65-.66.79-.84.41a22.1 22.1 0 0 1 0-3.63l.14-1.26-.42 1.4c-.28 1.68-.75 2.33-1.4 2h-.56a.92.92 0 0 0 -.42-.14 7.57 7.57 0 0 1 -2.23-.7 5.23 5.23 0 0 1 -1.82-1h-.28a.4.4 0 0 0 -.28-.14 1.3 1.3 0 0 1 -.69-.28c-.28-.18-.61-.37-1-.56-.84-.56-1.31-.74-1.4-.56a18.37 18.37 0 0 1 -.28-3.91 6.16 6.16 0 0 1 .14-1.11 9.51 9.51 0 0 1 .28-1.12 9.25 9.25 0 0 0 .28-1.54c.09-.74.19-1.63.28-2.65.18-.84.32-1.59.42-2.24a2.77 2.77 0 0 1 .28-1.12 1.08 1.08 0 0 0 .28-1c-.1-.28-.33-.38-.7-.28h-.84a2.1 2.1 0 0 0 -.7-.14h-.42c0-.1 0-.14-.14-.14h-.14c0 .28-.46.51-1.4.7a35.33 35.33 0 0 0 -12 4.33c-1.58.83-2.93 1.63-4.05 2.37s-2.42 1.86-4.19 3.35c-.93.84-2 1.87-3.22 3.08s-2.18 2.47-3.21 3.77a32 32 0 0 0 -2.51 3.35 4.74 4.74 0 0 0 -1 1.82c0 .19 1 .51 3.07 1s4.24.88 6.57 1.25c5.59.94 8.43 1.68 8.52 2.24 0 .19.23.28.7.28a4.08 4.08 0 0 1 2.37.7 21.77 21.77 0 0 1 3.5 2.23 38.75 38.75 0 0 1 3.85 3.08 20.68 20.68 0 0 1 3.21 3.07c.56.75 1.21 1.54 2 2.38s1.49 1.53 2 2.09a36.13 36.13 0 0 1 4.75 6.15 12.38 12.38 0 0 1 2 5.31 14 14 0 0 1 -.84 6.56 32.37 32.37 0 0 1 -3.35 7.13 39.2 39.2 0 0 1 -5.31 6.85 35.4 35.4 0 0 1 -6.71 5.72 34.3 34.3 0 0 1 -7.82 4.05 46.33 46.33 0 0 1 -8.52 2 27.16 27.16 0 0 1 -3.91.28c-1.31.09-2.29.14-2.94.14a15.43 15.43 0 0 1 -4.75-1 8.63 8.63 0 0 1 -3.21-2.37l-2.6-2.4a27.36 27.36 0 0 0 -2.93-2.79c-.84-.93-1.68-1.82-2.52-2.66a22.53 22.53 0 0 1 -1.67-1.81c-1.4-1.59-1.68-3-.84-4.34l.56-.83 1.53 1.53a27.44 27.44 0 0 0 3.08 2.8 6.86 6.86 0 0 0 2.65.42h2.38c1-.1 2.09-.19 3.21-.28l3.08-.28a12.54 12.54 0 0 0 2.23-.56 1.87 1.87 0 0 1 1-.42l1.4-.56a9.19 9.19 0 0 1 1.39-.42 1.87 1.87 0 0 0 1-.42 17.78 17.78 0 0 0 3.49-1.53c1.68-.94 3.17-1.82 4.47-2.66a44 44 0 0 0 5.45-4.47 31.56 31.56 0 0 0 4.33-5.17 23.72 23.72 0 0 0 2.24-3.63 22.76 22.76 0 0 0 1.68-3.91 14.68 14.68 0 0 0 .83-3.36 3.38 3.38 0 0 0 -.13-2.23 2.94 2.94 0 0 0 -1.26-.84 14.54 14.54 0 0 0 -2.24-.84 28 28 0 0 0 -2.93-1c-1-.27-2-.51-2.94-.69q-4.47-.7-7.26-1.26c-1.86-.37-3.87-.89-6-1.54-1.58-.46-2.89-.88-3.91-1.26s-1.91-.88-2.65-1.25a17.19 17.19 0 0 1 -2.1-1.54c-.65-.65-1.35-1.4-2.1-2.23-.55-.66-1.39-1.59-2.51-2.8s-2-2.33-3.07-3.35a60 60 0 0 1 -4.2-4.89 4.29 4.29 0 0 1 -.83-2.94 17.29 17.29 0 0 1 .42-2.79 16.71 16.71 0 0 1 1.67-3.05 22.35 22.35 0 0 1 2.8-3.92q1.82-2.09 3.91-4.19a56.59 56.59 0 0 1 4.29-3.91 42 42 0 0 1 4.33-3.35 44.8 44.8 0 0 1 15.37-6.57 37.13 37.13 0 0 1 15.93-.42q1.11.28 2 .42h1a11.48 11.48 0 0 1 1.26-3.07 16.47 16.47 0 0 1 1.81-3.49c.56-.84.93-1.08 1.12-.7 0 .28.19.42.56.42a2.44 2.44 0 0 1 1 .42 12.47 12.47 0 0 1 1.53 1.11 9.64 9.64 0 0 1 1.4 1.12 11.75 11.75 0 0 1 1 .84c.28.56.65.7 1.12.42.28-.09.46-.09.56 0s.18.23.27.7c0 .74.1 1 .28.83a.25.25 0 0 1 .28.28l.28.28q0 .84.42 0c.28-.46.56-.65.84-.56a14.38 14.38 0 0 1 2.16 1.54zm-52.4 23.33c-.65.47-.83.7-.55.7s.36-.19.54-.66zm42.2 1.4c0-.74-.1-1-.28-.7a2.72 2.72 0 0 0 -.28 1.26q.13.28 0 .42c-.1.09-.23.09-.42 0-.37-.09-.56-.05-.56.14s.19.42.56.7.46.18.56 0a4.92 4.92 0 0 0 .41-1.78zm.42-3.07a4.89 4.89 0 0 0 .25-1.08.13.13 0 0 0 -.14-.14.12.12 0 0 0 -.14.14 1.61 1.61 0 0 0 -.28 1.12c.11.46.2.46.3 0zm.69-3.08a1.85 1.85 0 0 0 .28-1.25c0-.28-.14-.24-.42.14a1.23 1.23 0 0 1 -.13.55v.56q-.01.61.26.04zm9.36-17c.28 0 .38-.19.28-.56a.12.12 0 0 0 -.14-.14v-.42c.1 0 0 .19-.41.56-.01.37.08.56.26.56zm-215.44-7.6c-.55 3.72-1 6.49-1.39 8.3a10.46 10.46 0 0 1 -1.25 3.67 1.85 1.85 0 0 1 -1 1.12c-.38.21-.47 0-.28-.48.18-.32.14-.32-.14 0-.84.74-1.39.64-1.67-.32-.1-.32-.23-.32-.42 0s-.37.16-.56-.16-.69-.42-1.53-.32a4.65 4.65 0 0 1 -1.81 0 22.47 22.47 0 0 1 -2.64-.16 14.35 14.35 0 0 1 -2.51-.48c-.74-.21-1.16-.42-1.25-.64q-1.24-2.07-.56-7.34.14-1.95.64-5.75c0-.05-.23-.47 2-.24.38 0 .83.45 1.34.51 1.47.18 3.59.07 5.54.3.7.08.33.32 1 .44 1.77.32 4.4.6 5.55.85s.93.73.93.7" transform="translate(0 -29.1)"/><path d="m175.29 0h16.35v16.35h-16.35z"/></g></svg> diff --git a/smoke/astro.build-main/src/icons/logos/github.svg b/smoke/astro.build-main/src/icons/logos/github.svg deleted file mode 100644 index 03efc48b9..000000000 --- a/smoke/astro.build-main/src/icons/logos/github.svg +++ /dev/null @@ -1,9 +0,0 @@ -<svg width="518" height="220" viewBox="0 0 518 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M100.175 105.932H56.6557C56.1182 105.932 55.6028 106.146 55.2227 106.526C54.8427 106.906 54.6292 107.421 54.6292 107.959V129.23C54.6292 129.768 54.8422 130.285 55.2219 130.668C55.6015 131.05 56.1169 131.267 56.6557 131.271H73.6293V157.672C73.6293 157.672 69.8207 158.98 59.2571 158.98C46.8251 158.98 29.4634 154.439 29.4634 116.251C29.4634 78.0645 47.5437 73.0486 64.5173 73.0486C79.2057 73.0486 85.5439 75.6356 89.5681 76.8716C89.8619 76.9285 90.1645 76.9201 90.4547 76.847C90.7448 76.774 91.0153 76.638 91.2471 76.4487C91.4789 76.2595 91.6662 76.0216 91.7957 75.7519C91.9253 75.4823 91.9941 75.1874 91.997 74.8882L96.898 54.3359C96.9097 54.0267 96.8449 53.7193 96.7096 53.4411C96.5742 53.1628 96.3724 52.9222 96.1219 52.7406C94.4834 51.5764 84.5091 46 59.3002 46C30.2539 46 0.474609 58.3457 0.474609 117.746C0.474609 177.147 34.5799 185.986 63.31 185.986C87.1105 185.986 101.555 175.824 101.555 175.824C101.782 175.642 101.96 175.406 102.073 175.137C102.185 174.869 102.23 174.576 102.201 174.287V107.944C102.198 107.409 101.982 106.898 101.603 106.521C101.223 106.144 100.71 105.932 100.175 105.932Z" fill="currentColor"/> -<path d="M324.353 53.1143C324.357 52.8476 324.308 52.5829 324.209 52.3354C324.109 52.088 323.962 51.8628 323.774 51.6729C323.587 51.483 323.364 51.3322 323.118 51.2293C322.872 51.1264 322.608 51.0734 322.341 51.0734H297.908C297.641 51.0734 297.376 51.1263 297.13 51.229C296.883 51.3318 296.659 51.4823 296.47 51.672C296.282 51.8617 296.133 52.0868 296.032 52.3344C295.931 52.5819 295.88 52.847 295.882 53.1143V100.442H257.652V53.1143C257.654 52.847 257.603 52.5819 257.502 52.3344C257.401 52.0868 257.252 51.8617 257.063 51.672C256.875 51.4823 256.651 51.3318 256.404 51.229C256.157 51.1263 255.893 51.0734 255.625 51.0734H231.193C230.925 51.0734 230.661 51.1263 230.414 51.229C230.167 51.3318 229.943 51.4823 229.755 51.672C229.566 51.8617 229.417 52.0868 229.316 52.3344C229.215 52.5819 229.164 52.847 229.166 53.1143V181.286C229.166 181.825 229.379 182.342 229.759 182.724C230.138 183.106 230.654 183.323 231.193 183.327H255.625C256.164 183.323 256.68 183.106 257.059 182.724C257.439 182.342 257.652 181.825 257.652 181.286V126.456H295.825L295.753 181.286C295.756 181.826 295.973 182.343 296.355 182.725C296.737 183.107 297.253 183.323 297.794 183.327H322.341C322.607 183.325 322.871 183.271 323.116 183.167C323.361 183.063 323.583 182.913 323.77 182.723C323.957 182.534 324.105 182.309 324.205 182.063C324.305 181.816 324.355 181.552 324.353 181.286V53.1143Z" fill="currentColor"/> -<path d="M146.396 70.0016C146.367 66.8811 145.416 63.8387 143.662 61.2579C141.907 58.677 139.428 56.673 136.537 55.4985C133.646 54.3239 130.472 54.0312 127.415 54.6574C124.358 55.2835 121.554 56.8005 119.357 59.0171C117.161 61.2337 115.669 64.0508 115.071 67.1135C114.472 70.1763 114.794 73.3477 115.994 76.2281C117.195 79.1085 119.221 81.5692 121.818 83.3001C124.415 85.031 127.465 85.9547 130.586 85.9548C132.674 85.9549 134.742 85.5413 136.67 84.7378C138.597 83.9343 140.346 82.7569 141.816 81.2736C143.286 79.7903 144.448 78.0305 145.234 76.0958C146.02 74.1611 146.415 72.0898 146.396 70.0016Z" fill="currentColor"/> -<path d="M144.642 154.237V95.0811C144.642 94.5424 144.429 94.0254 144.05 93.6431C143.67 93.2608 143.155 93.0441 142.616 93.0403H118.183C117.612 93.09 117.08 93.3498 116.69 93.7693C116.3 94.1888 116.079 94.7382 116.07 95.3111V180.107C116.07 182.594 117.623 183.341 119.62 183.341H141.624C144.039 183.341 144.628 182.148 144.628 180.064L144.642 154.237Z" fill="currentColor"/> -<path d="M417.398 93.2272H393.138C392.598 93.2347 392.082 93.4546 391.703 93.8392C391.324 94.2238 391.111 94.7423 391.111 95.2824V158.132C386.675 161.05 381.488 162.617 376.178 162.645C367.411 162.645 365.083 158.664 365.083 150.084V95.2824C365.087 94.7436 364.878 94.2251 364.501 93.8401C364.124 93.4551 363.61 93.2347 363.071 93.2272H338.351C337.811 93.2347 337.295 93.4546 336.916 93.8392C336.537 94.2238 336.324 94.7423 336.324 95.2824V154.209C336.324 179.691 350.538 185.928 370.085 185.928C386.11 185.928 399.03 177.075 399.03 177.075C399.238 178.829 399.54 180.571 399.936 182.292C400.111 182.616 400.367 182.888 400.68 183.082C400.992 183.276 401.35 183.385 401.718 183.399H417.412C417.952 183.391 418.468 183.171 418.847 182.787C419.226 182.402 419.439 181.884 419.439 181.343V95.2824C419.441 95.0132 419.389 94.7463 419.288 94.497C419.186 94.2477 419.036 94.021 418.846 93.83C418.657 93.639 418.431 93.4873 418.182 93.3839C417.934 93.2804 417.667 93.2272 417.398 93.2272Z" fill="currentColor"/> -<path d="M483.87 90.3528C475.731 90.3037 467.727 92.4325 460.687 96.5184V53.1143C460.689 52.847 460.638 52.5819 460.537 52.3344C460.436 52.0868 460.287 51.8617 460.099 51.672C459.911 51.4823 459.687 51.3318 459.44 51.229C459.193 51.1263 458.928 51.0734 458.661 51.0734H434.099C433.831 51.0734 433.567 51.1263 433.32 51.229C433.073 51.3318 432.849 51.4823 432.661 51.672C432.472 51.8617 432.323 52.0868 432.222 52.3344C432.121 52.5819 432.07 52.847 432.072 53.1143V181.286C432.072 181.825 432.285 182.342 432.665 182.724C433.045 183.106 433.56 183.323 434.099 183.327H451.144C451.511 183.324 451.87 183.222 452.183 183.032C452.497 182.843 452.754 182.572 452.926 182.249C453.416 180.303 453.762 178.324 453.961 176.327C453.961 176.327 464.022 185.856 483.008 185.856C505.328 185.856 518.133 174.531 518.133 135.022C518.133 95.5124 497.696 90.3528 483.87 90.3528ZM474.284 162.573C469.296 162.443 464.426 161.033 460.141 158.477V117.89C464.005 115.686 468.281 114.302 472.703 113.823C481.455 113.032 489.949 115.677 489.949 136.56C489.892 158.578 486.083 162.918 474.284 162.573Z" fill="currentColor"/> -<path d="M215.037 92.9972H196.669V68.7225C196.669 67.8027 196.195 67.2853 195.132 67.2853H170.066C169.089 67.2853 168.629 67.7164 168.629 68.7225V93.8021C168.629 93.8021 156.082 96.8346 155.234 97.0789C154.817 97.2081 154.452 97.4677 154.194 97.8195C153.935 98.1713 153.796 98.5969 153.797 99.0336V114.843C153.795 115.11 153.846 115.375 153.947 115.623C154.048 115.87 154.197 116.096 154.385 116.285C154.574 116.475 154.798 116.626 155.045 116.728C155.291 116.831 155.556 116.884 155.823 116.884H168.658V154.798C168.658 182.953 188.405 185.727 201.714 185.727C206.623 185.561 211.49 184.749 216.187 183.312C216.542 183.158 216.843 182.9 217.048 182.571C217.253 182.243 217.354 181.86 217.337 181.473V164.14C217.333 163.601 217.119 163.084 216.741 162.701C216.362 162.317 215.849 162.096 215.31 162.085C214.232 162.085 211.501 162.53 208.67 162.53C199.659 162.53 196.597 158.333 196.597 152.901V116.855H215.037C215.304 116.855 215.569 116.802 215.816 116.7C216.063 116.597 216.287 116.446 216.475 116.257C216.663 116.067 216.812 115.842 216.913 115.594C217.014 115.347 217.065 115.082 217.064 114.814V95.0668C217.067 94.7976 217.018 94.5303 216.918 94.2803C216.818 94.0303 216.669 93.8026 216.481 93.6102C216.293 93.4178 216.068 93.2646 215.82 93.1594C215.572 93.0542 215.306 92.9991 215.037 92.9972Z" fill="currentColor"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/google.svg b/smoke/astro.build-main/src/icons/logos/google.svg deleted file mode 100644 index 58afaf5df..000000000 --- a/smoke/astro.build-main/src/icons/logos/google.svg +++ /dev/null @@ -1 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="74" height="24" viewBox="0 0 74 24" fill="currentColor"><path d="M9.24 8.19v2.46h5.88c-.18 1.38-.64 2.39-1.34 3.1-.86.86-2.2 1.8-4.54 1.8-3.62 0-6.45-2.92-6.45-6.54s2.83-6.54 6.45-6.54c1.95 0 3.38.77 4.43 1.76L15.4 2.5C13.94 1.08 11.98 0 9.24 0 4.28 0 .11 4.04.11 9s4.17 9 9.13 9c2.68 0 4.7-.88 6.28-2.52 1.62-1.62 2.13-3.91 2.13-5.75 0-.57-.04-1.1-.13-1.54H9.24z"/><path d="M25 6.19c-3.21 0-5.83 2.44-5.83 5.81 0 3.34 2.62 5.81 5.83 5.81s5.83-2.46 5.83-5.81c0-3.37-2.62-5.81-5.83-5.81zm0 9.33c-1.76 0-3.28-1.45-3.28-3.52 0-2.09 1.52-3.52 3.28-3.52s3.28 1.43 3.28 3.52c0 2.07-1.52 3.52-3.28 3.52z"/><path d="M53.58 7.49h-.09c-.57-.68-1.67-1.3-3.06-1.3C47.53 6.19 45 8.72 45 12c0 3.26 2.53 5.81 5.43 5.81 1.39 0 2.49-.62 3.06-1.32h.09v.81c0 2.22-1.19 3.41-3.1 3.41-1.56 0-2.53-1.12-2.93-2.07l-2.22.92c.64 1.54 2.33 3.43 5.15 3.43 2.99 0 5.52-1.76 5.52-6.05V6.49h-2.42v1zm-2.93 8.03c-1.76 0-3.1-1.5-3.1-3.52 0-2.05 1.34-3.52 3.1-3.52 1.74 0 3.1 1.5 3.1 3.54.01 2.03-1.36 3.5-3.1 3.5z"/><path d="M38 6.19c-3.21 0-5.83 2.44-5.83 5.81 0 3.34 2.62 5.81 5.83 5.81s5.83-2.46 5.83-5.81c0-3.37-2.62-5.81-5.83-5.81zm0 9.33c-1.76 0-3.28-1.45-3.28-3.52 0-2.09 1.52-3.52 3.28-3.52s3.28 1.43 3.28 3.52c0 2.07-1.52 3.52-3.28 3.52z"/><path d="M58 .24h2.51v17.57H58z"/><path d="M68.26 15.52c-1.3 0-2.22-.59-2.82-1.76l7.77-3.21-.26-.66c-.48-1.3-1.96-3.7-4.97-3.7-2.99 0-5.48 2.35-5.48 5.81 0 3.26 2.46 5.81 5.76 5.81 2.66 0 4.2-1.63 4.84-2.57l-1.98-1.32c-.66.96-1.56 1.6-2.86 1.6zm-.18-7.15c1.03 0 1.91.53 2.2 1.28l-5.25 2.17c0-2.44 1.73-3.45 3.05-3.45z"/></svg> diff --git a/smoke/astro.build-main/src/icons/logos/javascript.svg b/smoke/astro.build-main/src/icons/logos/javascript.svg deleted file mode 100644 index 6cf9bdb96..000000000 --- a/smoke/astro.build-main/src/icons/logos/javascript.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg width="173" height="220" viewBox="0 0 173 220" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" d="M16.8527 35H156.388C159.277 35 161.62 37.3427 161.62 40.2326V179.767C161.62 182.657 159.277 185 156.388 185H16.8527C13.9628 185 11.6201 182.657 11.6201 179.767V40.2326C11.6201 37.3427 13.9628 35 16.8527 35ZM127.159 160.748C120.207 160.748 116.276 157.121 113.254 152.188L101.8 158.843C105.938 167.019 114.395 173.257 127.485 173.257C140.873 173.257 150.842 166.305 150.842 153.614C150.842 141.843 144.08 136.607 132.104 131.471L128.58 129.962C122.533 127.343 119.914 125.631 119.914 121.402C119.914 117.981 122.53 115.362 126.659 115.362C130.707 115.362 133.314 117.069 135.73 121.402L146.707 114.355C142.064 106.188 135.621 103.069 126.659 103.069C114.071 103.069 106.016 111.117 106.016 121.688C106.016 133.164 112.773 138.593 122.945 142.926L126.469 144.438C132.897 147.25 136.73 148.962 136.73 153.795C136.73 157.829 133 160.748 127.159 160.748ZM72.5329 160.66C67.69 160.66 65.6757 157.338 63.4614 153.41L51.9876 160.356C55.3114 167.39 61.8472 173.231 73.1329 173.231C85.6233 173.231 94.1805 166.588 94.1805 151.993V103.874H80.0852V151.802C80.0852 158.848 77.1638 160.66 72.5329 160.66Z" fill="black" /> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/lit.svg b/smoke/astro.build-main/src/icons/logos/lit.svg deleted file mode 100644 index b5ea826cd..000000000 --- a/smoke/astro.build-main/src/icons/logos/lit.svg +++ /dev/null @@ -1,12 +0,0 @@ -<svg width="307" height="220" viewBox="0 0 307 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0_463_513)"> -<path d="M284.508 70.3435V91.1473H306.54V102.416H284.508V128.132C284.508 130.732 284.58 133.333 284.869 135.572C285.447 139.4 287.758 143.157 290.937 144.601C295.054 146.48 297.944 146.118 306.54 145.829L304.445 158.254C303.867 158.543 301.555 158.471 299.388 158.471C294.332 158.471 275.262 160.276 271.361 140.628C270.711 137.233 270.855 133.766 270.855 128.421V102.56H261.031L261.176 91.0751H270.855V70.3435H284.508ZM247.162 91.0751V157.17H233.582V91.0751H247.162ZM247.162 70.3435V82.1179H233.437V70.3435H247.162ZM186.773 144.168H221.591L208.589 157.17H172.904V70.3435H186.773V144.168Z" fill="black"/> -<path d="M57.3273 129.576V71.7882L86.2214 42.8941V100.682L57.3273 129.576ZM-0.460938 129.576L28.4332 158.471V129.576V100.682H13.9861" fill="black"/> -<path d="M28.4332 100.682V42.8941L57.3273 14V71.7882L28.4332 100.682ZM86.2214 158.471V100.682L115.116 71.7882V129.576L86.2214 158.471ZM-0.460938 129.576V71.7882L28.4332 100.682" fill="black"/> -</g> -<defs> -<clipPath id="clip0_463_513"> -<rect width="307" height="220" fill="white"/> -</clipPath> -</defs> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/markdown.svg b/smoke/astro.build-main/src/icons/logos/markdown.svg deleted file mode 100644 index e7f117eb8..000000000 --- a/smoke/astro.build-main/src/icons/logos/markdown.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg width="308" height="220" viewBox="0 0 308 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M286.062 22.4219H21.8437C13.6458 22.4219 7 29.0676 7 37.2656V182.734C7 190.932 13.6458 197.578 21.8437 197.578H286.062C294.26 197.578 300.906 190.932 300.906 182.734V37.2656C300.906 29.0676 294.26 22.4219 286.062 22.4219Z" stroke="#222222" stroke-width="13.3475"/> -<path d="M44.1099 160.469V59.5313H73.7974L103.485 96.6407L133.172 59.5313H162.86V160.469H133.172V102.578L103.485 139.688L73.7974 102.578V160.469H44.1099ZM229.657 160.469L185.125 111.484H214.813V59.5313H244.5V111.484H274.188L229.657 160.469Z" fill="#222222"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/monogram.svg b/smoke/astro.build-main/src/icons/logos/monogram.svg deleted file mode 100644 index 1bdbcb3ae..000000000 --- a/smoke/astro.build-main/src/icons/logos/monogram.svg +++ /dev/null @@ -1,11 +0,0 @@ -<svg width="240" height="40" viewBox="0 0 240 40" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M31 40L27 29.4L23 40H21L26 26.8L22 16.3L13 40H11L21 13.6L16.5 1.8L2 40H0L15.2 0H17.8L22 11L26.2 0H28.8L32.5 9.7L36.2 0H38.8L43 11L47.2 0H49.8L65 40H63L48.5 1.8L44 13.6L54 40H52L43 16.3L39 26.8L44 40H42L38 29.4L34 40H31ZM32.5 15L28 26.7L32.5 38.6L37 26.8L32.5 15ZM27.5 1.8L23 13.6L27 24.2L31.5 12.3L27.5 1.8ZM37.5 1.8L33.5 12.3L38 24.2L42 13.6L37.5 1.8Z" fill="currentColor"/> -<path d="M97.7259 17.956V29H100.432V13.6H97.5499L92.8639 20.882L88.1779 13.6H85.2959V29H87.9579V18L92.7759 25.216H92.8639L97.7259 17.956Z" fill="currentColor"/> -<path d="M121.687 21.278C121.687 20.1927 121.489 19.166 121.093 18.198C120.697 17.23 120.147 16.3867 119.443 15.668C118.739 14.9493 117.896 14.3847 116.913 13.974C115.931 13.5487 114.845 13.336 113.657 13.336C112.469 13.336 111.384 13.5487 110.401 13.974C109.419 14.3993 108.568 14.9787 107.849 15.712C107.131 16.4307 106.573 17.274 106.177 18.242C105.781 19.21 105.583 20.2367 105.583 21.322C105.583 22.4073 105.781 23.434 106.177 24.402C106.573 25.37 107.123 26.2133 107.827 26.932C108.531 27.6507 109.375 28.2227 110.357 28.648C111.34 29.0587 112.425 29.264 113.613 29.264C114.801 29.264 115.887 29.0513 116.869 28.626C117.852 28.2007 118.703 27.6287 119.421 26.91C120.14 26.1767 120.697 25.326 121.093 24.358C121.489 23.39 121.687 22.3633 121.687 21.278ZM118.849 21.322C118.849 22.07 118.717 22.7813 118.453 23.456C118.204 24.116 117.852 24.6953 117.397 25.194C116.943 25.678 116.393 26.0667 115.747 26.36C115.117 26.6387 114.42 26.778 113.657 26.778C112.895 26.778 112.191 26.6313 111.545 26.338C110.9 26.0447 110.343 25.6487 109.873 25.15C109.419 24.6513 109.059 24.072 108.795 23.412C108.546 22.7373 108.421 22.026 108.421 21.278C108.421 20.53 108.546 19.826 108.795 19.166C109.059 18.4913 109.419 17.912 109.873 17.428C110.328 16.9293 110.871 16.5407 111.501 16.262C112.147 15.9687 112.851 15.822 113.613 15.822C114.376 15.822 115.08 15.9687 115.725 16.262C116.371 16.5553 116.921 16.9513 117.375 17.45C117.845 17.9487 118.204 18.5353 118.453 19.21C118.717 19.87 118.849 20.574 118.849 21.322Z" fill="currentColor"/> -<path d="M137.585 24.248L129.335 13.6H126.827V29H129.489V18.044L137.981 29H140.247V13.6H137.585V24.248Z" fill="currentColor"/> -<path d="M161.5 21.278C161.5 20.1927 161.302 19.166 160.906 18.198C160.51 17.23 159.96 16.3867 159.256 15.668C158.552 14.9493 157.708 14.3847 156.726 13.974C155.743 13.5487 154.658 13.336 153.47 13.336C152.282 13.336 151.196 13.5487 150.214 13.974C149.231 14.3993 148.38 14.9787 147.662 15.712C146.943 16.4307 146.386 17.274 145.99 18.242C145.594 19.21 145.396 20.2367 145.396 21.322C145.396 22.4073 145.594 23.434 145.99 24.402C146.386 25.37 146.936 26.2133 147.64 26.932C148.344 27.6507 149.187 28.2227 150.17 28.648C151.152 29.0587 152.238 29.264 153.426 29.264C154.614 29.264 155.699 29.0513 156.682 28.626C157.664 28.2007 158.515 27.6287 159.234 26.91C159.952 26.1767 160.51 25.326 160.906 24.358C161.302 23.39 161.5 22.3633 161.5 21.278ZM158.662 21.322C158.662 22.07 158.53 22.7813 158.266 23.456C158.016 24.116 157.664 24.6953 157.21 25.194C156.755 25.678 156.205 26.0667 155.56 26.36C154.929 26.6387 154.232 26.778 153.47 26.778C152.707 26.778 152.003 26.6313 151.358 26.338C150.712 26.0447 150.155 25.6487 149.686 25.15C149.231 24.6513 148.872 24.072 148.608 23.412C148.358 22.7373 148.234 22.026 148.234 21.278C148.234 20.53 148.358 19.826 148.608 19.166C148.872 18.4913 149.231 17.912 149.686 17.428C150.14 16.9293 150.683 16.5407 151.314 16.262C151.959 15.9687 152.663 15.822 153.426 15.822C154.188 15.822 154.892 15.9687 155.538 16.262C156.183 16.5553 156.733 16.9513 157.188 17.45C157.657 17.9487 158.016 18.5353 158.266 19.21C158.53 19.87 158.662 20.574 158.662 21.322Z" fill="currentColor"/> -<path d="M180.367 26.866V20.398H173.811V22.752H177.749V25.634C177.28 25.986 176.722 26.272 176.077 26.492C175.446 26.6973 174.764 26.8 174.031 26.8C173.239 26.8 172.52 26.6607 171.875 26.382C171.244 26.1033 170.694 25.722 170.225 25.238C169.77 24.7393 169.418 24.1527 169.169 23.478C168.92 22.8033 168.795 22.07 168.795 21.278C168.795 20.53 168.92 19.826 169.169 19.166C169.433 18.506 169.785 17.9267 170.225 17.428C170.68 16.9293 171.208 16.5407 171.809 16.262C172.425 15.9687 173.085 15.822 173.789 15.822C174.273 15.822 174.713 15.866 175.109 15.954C175.52 16.0273 175.894 16.1373 176.231 16.284C176.568 16.416 176.891 16.5847 177.199 16.79C177.507 16.9953 177.808 17.2227 178.101 17.472L179.817 15.426C179.421 15.0887 179.01 14.7953 178.585 14.546C178.174 14.282 177.734 14.062 177.265 13.886C176.796 13.71 176.282 13.578 175.725 13.49C175.182 13.3873 174.574 13.336 173.899 13.336C172.74 13.336 171.67 13.5487 170.687 13.974C169.719 14.3993 168.883 14.9787 168.179 15.712C167.475 16.4307 166.925 17.274 166.529 18.242C166.148 19.21 165.957 20.2367 165.957 21.322C165.957 22.4513 166.148 23.5 166.529 24.468C166.91 25.436 167.446 26.2793 168.135 26.998C168.839 27.702 169.682 28.2593 170.665 28.67C171.648 29.066 172.74 29.264 173.943 29.264C174.618 29.264 175.263 29.198 175.879 29.066C176.495 28.9487 177.067 28.78 177.595 28.56C178.138 28.34 178.636 28.0833 179.091 27.79C179.56 27.4967 179.986 27.1887 180.367 26.866Z" fill="currentColor"/> -<path d="M198.829 29L194.671 23.17C195.214 23.0233 195.705 22.818 196.145 22.554C196.6 22.2753 196.988 21.9453 197.311 21.564C197.634 21.168 197.883 20.7207 198.059 20.222C198.25 19.7087 198.345 19.1293 198.345 18.484C198.345 17.736 198.213 17.0613 197.949 16.46C197.685 15.844 197.304 15.3307 196.805 14.92C196.321 14.4947 195.72 14.172 195.001 13.952C194.297 13.7173 193.505 13.6 192.625 13.6H185.761V29H188.467V23.632H191.855L195.639 29H198.829ZM195.595 18.638C195.595 19.43 195.309 20.0607 194.737 20.53C194.165 20.9993 193.395 21.234 192.427 21.234H188.467V16.064H192.405C193.417 16.064 194.202 16.284 194.759 16.724C195.316 17.1493 195.595 17.7873 195.595 18.638Z" fill="currentColor"/> -<path d="M211.934 13.49H209.426L202.65 29H205.422L207.006 25.282H214.288L215.85 29H218.71L211.934 13.49ZM213.298 22.884H207.996L210.636 16.724L213.298 22.884Z" fill="currentColor"/> -<path d="M236.31 17.956V29H239.016V13.6H236.134L231.448 20.882L226.762 13.6H223.88V29H226.542V18L231.36 25.216H231.448L236.31 17.956Z" fill="currentColor"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/navillus.svg b/smoke/astro.build-main/src/icons/logos/navillus.svg deleted file mode 100644 index f1038797d..000000000 --- a/smoke/astro.build-main/src/icons/logos/navillus.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg width="512" height="128" viewBox="0 0 512 128" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M128 64C128 99.3462 99.3462 128 64 128C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0C99.3462 0 128 28.6538 128 64ZM74.8254 25.25L64.0001 6.5L53.1748 25.25H58V52.3438L44.1562 38.5L38.4994 44.1569L52.3425 58H25.25V53.1748L6.5 64.0001L25.25 74.8254V70H52.2549L38.5 83.7549L44.1569 89.4117L58 75.5686V102.75H53.1748L64.0001 121.5L74.8254 102.75H70V75.6575L83.7542 89.4117L89.4111 83.7548L75.6562 70H102.75V74.8254L121.5 64.0001L102.75 53.1748V58H75.5686L89.4117 44.1569L83.7548 38.5L70 52.2549V25.25H74.8254Z" fill="currentColor"/> -<path d="M222.457 96H214.267L181.327 46.05V96H173.137V33.18H181.327L214.267 83.04V33.18H222.457V96ZM233.358 71.16C233.358 66.12 234.378 61.71 236.418 57.93C238.458 54.09 241.248 51.12 244.788 49.02C248.388 46.92 252.378 45.87 256.758 45.87C261.078 45.87 264.828 46.8 268.008 48.66C271.188 50.52 273.558 52.86 275.118 55.68V46.68H283.398V96H275.118V86.82C273.498 89.7 271.068 92.1 267.828 94.02C264.648 95.88 260.928 96.81 256.668 96.81C252.288 96.81 248.328 95.73 244.788 93.57C241.248 91.41 238.458 88.38 236.418 84.48C234.378 80.58 233.358 76.14 233.358 71.16ZM275.118 71.25C275.118 67.53 274.368 64.29 272.868 61.53C271.368 58.77 269.328 56.67 266.748 55.23C264.228 53.73 261.438 52.98 258.378 52.98C255.318 52.98 252.528 53.7 250.008 55.14C247.488 56.58 245.478 58.68 243.978 61.44C242.478 64.2 241.728 67.44 241.728 71.16C241.728 74.94 242.478 78.24 243.978 81.06C245.478 83.82 247.488 85.95 250.008 87.45C252.528 88.89 255.318 89.61 258.378 89.61C261.438 89.61 264.228 88.89 266.748 87.45C269.328 85.95 271.368 83.82 272.868 81.06C274.368 78.24 275.118 74.97 275.118 71.25ZM315.599 88.44L330.899 46.68H339.629L320.279 96H310.739L291.389 46.68H300.209L315.599 88.44ZM351.918 38.67C350.358 38.67 349.038 38.13 347.958 37.05C346.878 35.97 346.338 34.65 346.338 33.09C346.338 31.53 346.878 30.21 347.958 29.13C349.038 28.05 350.358 27.51 351.918 27.51C353.418 27.51 354.678 28.05 355.698 29.13C356.778 30.21 357.318 31.53 357.318 33.09C357.318 34.65 356.778 35.97 355.698 37.05C354.678 38.13 353.418 38.67 351.918 38.67ZM355.878 46.68V96H347.688V46.68H355.878ZM378.026 29.4V96H369.836V29.4H378.026ZM400.175 29.4V96H391.985V29.4H400.175ZM457.873 46.68V96H449.683V88.71C448.123 91.23 445.933 93.21 443.113 94.65C440.353 96.03 437.293 96.72 433.933 96.72C430.093 96.72 426.643 95.94 423.583 94.38C420.523 92.76 418.093 90.36 416.293 87.18C414.553 84 413.683 80.13 413.683 75.57V46.68H421.783V74.49C421.783 79.35 423.013 83.1 425.473 85.74C427.933 88.32 431.293 89.61 435.553 89.61C439.933 89.61 443.383 88.26 445.903 85.56C448.423 82.86 449.683 78.93 449.683 73.77V46.68H457.873ZM489.161 96.81C485.381 96.81 481.991 96.18 478.991 94.92C475.991 93.6 473.621 91.8 471.881 89.52C470.141 87.18 469.181 84.51 469.001 81.51H477.461C477.701 83.97 478.841 85.98 480.881 87.54C482.981 89.1 485.711 89.88 489.071 89.88C492.191 89.88 494.651 89.19 496.451 87.81C498.251 86.43 499.151 84.69 499.151 82.59C499.151 80.43 498.191 78.84 496.271 77.82C494.351 76.74 491.381 75.69 487.361 74.67C483.701 73.71 480.701 72.75 478.361 71.79C476.081 70.77 474.101 69.3 472.421 67.38C470.801 65.4 469.991 62.82 469.991 59.64C469.991 57.12 470.741 54.81 472.241 52.71C473.741 50.61 475.871 48.96 478.631 47.76C481.391 46.5 484.541 45.87 488.081 45.87C493.541 45.87 497.951 47.25 501.311 50.01C504.671 52.77 506.471 56.55 506.711 61.35H498.521C498.341 58.77 497.291 56.7 495.371 55.14C493.511 53.58 490.991 52.8 487.811 52.8C484.871 52.8 482.531 53.43 480.791 54.69C479.051 55.95 478.181 57.6 478.181 59.64C478.181 61.26 478.691 62.61 479.711 63.69C480.791 64.71 482.111 65.55 483.671 66.21C485.291 66.81 487.511 67.5 490.331 68.28C493.871 69.24 496.751 70.2 498.971 71.16C501.191 72.06 503.081 73.44 504.641 75.3C506.261 77.16 507.101 79.59 507.161 82.59C507.161 85.29 506.411 87.72 504.911 89.88C503.411 92.04 501.281 93.75 498.521 95.01C495.821 96.21 492.701 96.81 489.161 96.81Z" fill="currentColor"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/netlify-grid.svg b/smoke/astro.build-main/src/icons/logos/netlify-grid.svg deleted file mode 100644 index d58e4b8d2..000000000 --- a/smoke/astro.build-main/src/icons/logos/netlify-grid.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg width="650" height="220" viewBox="0 0 650 220" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" d="M236.162 85.4277L236.706 95.1538C242.914 87.6313 251.065 83.8701 261.154 83.8701C278.637 83.8701 287.536 93.906 287.846 113.978V169.591H268.995V115.066C268.995 109.725 267.845 105.774 265.544 103.203C263.243 100.636 259.477 99.3531 254.251 99.3531C246.645 99.3531 240.976 102.805 237.259 109.699V169.591H218.4V85.4277H236.171H236.162ZM344.035 171.149C332.087 171.149 322.396 167.379 314.976 159.834C307.55 152.289 303.838 142.24 303.838 129.691V127.359C303.838 118.96 305.453 111.451 308.688 104.84C311.918 98.2292 316.462 93.0829 322.308 89.3969C328.153 85.7197 334.671 83.8789 341.866 83.8789C353.296 83.8789 362.133 87.534 368.363 94.8441C374.602 102.159 377.718 112.5 377.718 125.881V133.505H322.848C323.423 140.453 325.733 145.948 329.795 149.993C333.857 154.037 338.968 156.06 345.123 156.06C353.761 156.06 360.796 152.564 366.23 145.559L376.395 155.285C373.032 160.312 368.545 164.215 362.934 166.989C357.318 169.764 351.022 171.149 344.039 171.149H344.035ZM341.787 99.0478C336.609 99.0478 332.437 100.862 329.255 104.491C326.069 108.119 324.042 113.177 323.162 119.659H359.093V118.257C358.677 111.929 356.995 107.15 354.048 103.906C351.097 100.667 347.013 99.0478 341.787 99.0478ZM415.972 64.9753V85.4321H430.796V99.4328H415.972V146.413C415.972 149.626 416.609 151.944 417.874 153.374C419.14 154.798 421.406 155.511 424.667 155.511C426.887 155.505 429.099 155.243 431.26 154.732V169.357C426.968 170.551 422.83 171.144 418.844 171.144C404.361 171.144 397.117 163.135 397.117 147.112V99.4284H383.293V85.4277H397.108V64.9709H415.963L415.972 64.9753ZM465.253 169.596H446.394V50.1206H465.253V169.596ZM505.839 169.596H486.98V85.4321H505.839V169.596ZM485.816 63.5726C485.816 60.6742 486.732 58.2626 488.568 56.3421C490.409 54.4261 493.033 53.4659 496.445 53.4659C499.861 53.4659 502.498 54.4261 504.366 56.3421C506.224 58.2626 507.153 60.6742 507.153 63.577C507.153 66.4267 506.224 68.7985 504.366 70.6924C502.498 72.5863 499.861 73.5333 496.445 73.5333C493.033 73.5333 490.409 72.5863 488.568 70.6924C486.732 68.8029 485.816 66.4267 485.816 63.577V63.5726ZM533 169.596V99.4284H520.194V85.4277H533V77.7282C533 68.3914 535.584 61.1875 540.757 56.1032C545.934 51.0233 553.173 48.4833 562.483 48.4833C565.798 48.4833 569.316 48.948 573.042 49.8816L572.577 64.6611C570.197 64.2195 567.78 64.012 565.36 64.0416C556.355 64.0416 551.855 68.679 551.855 77.9627V85.4277H568.926V99.4284H551.855V169.591H533V169.596ZM612.074 142.528L629.146 85.4321H649.244L615.88 182.353C610.756 196.508 602.065 203.588 589.803 203.588C587.06 203.588 584.033 203.119 580.723 202.186V187.561L584.294 187.796C589.051 187.796 592.635 186.928 595.043 185.189C597.445 183.455 599.348 180.539 600.746 176.441L603.459 169.206L573.971 85.4321H594.304L612.074 142.528Z" fill="currentColor"/> - <path d="M123.399 90.5473L123.338 90.5208C123.302 90.5075 123.267 90.4942 123.236 90.4632C123.185 90.4087 123.147 90.3432 123.126 90.2719C123.104 90.2006 123.1 90.1252 123.112 90.0517L126.532 69.1392L142.573 85.1842L125.891 92.2819C125.844 92.3006 125.795 92.3097 125.745 92.3085H125.678C125.656 92.2952 125.634 92.2775 125.59 92.2332C124.969 91.542 124.227 90.9706 123.399 90.5473ZM146.666 89.2729L163.817 106.424C167.38 109.991 169.163 111.77 169.813 113.832C169.911 114.137 169.99 114.442 170.052 114.757L129.063 97.3972C129.041 97.3881 129.019 97.3793 128.997 97.3707C128.833 97.3043 128.643 97.2291 128.643 97.0609C128.643 96.8928 128.838 96.8131 129.002 96.7467L129.055 96.7246L146.666 89.2729ZM169.353 120.261C168.468 121.925 166.742 123.651 163.822 126.576L144.485 145.909L119.474 140.7L119.342 140.674C119.12 140.638 118.886 140.598 118.886 140.399C118.791 139.368 118.485 138.367 117.986 137.458C117.487 136.55 116.807 135.754 115.988 135.12C115.886 135.019 115.912 134.859 115.943 134.713C115.943 134.691 115.943 134.669 115.952 134.651L120.656 105.774L120.674 105.676C120.7 105.455 120.74 105.198 120.939 105.198C121.947 105.073 122.92 104.748 123.801 104.243C124.683 103.738 125.455 103.062 126.072 102.256C126.112 102.212 126.139 102.163 126.192 102.136C126.333 102.07 126.501 102.136 126.647 102.198L169.349 120.261H169.353ZM140.037 150.356L108.239 182.154L113.682 148.701L113.691 148.656C113.695 148.612 113.704 148.568 113.718 148.528C113.762 148.422 113.877 148.378 113.987 148.333L114.041 148.311C115.232 147.803 116.286 147.019 117.116 146.024C117.222 145.9 117.35 145.78 117.514 145.758C117.557 145.751 117.6 145.751 117.643 145.758L140.033 150.36L140.037 150.356ZM101.509 188.884L97.9247 192.468L58.2989 135.2C58.2845 135.179 58.2698 135.158 58.2546 135.138C58.1927 135.054 58.1263 134.97 58.1396 134.873C58.1396 134.802 58.1882 134.74 58.2369 134.687L58.2812 134.629C58.4006 134.452 58.5024 134.275 58.613 134.085L58.7015 133.93L58.7148 133.917C58.7768 133.811 58.8343 133.709 58.9405 133.651C59.0334 133.607 59.1617 133.625 59.2635 133.647L103.164 142.7C103.287 142.719 103.402 142.77 103.5 142.846C103.558 142.904 103.571 142.966 103.584 143.037C103.891 144.195 104.46 145.267 105.25 146.169C106.039 147.071 107.026 147.779 108.133 148.236C108.257 148.298 108.204 148.435 108.146 148.581C108.118 148.645 108.096 148.712 108.08 148.78C107.527 152.143 102.783 181.074 101.509 188.884ZM94.0219 196.367C91.3802 198.982 89.8226 200.367 88.0614 200.925C86.3249 201.474 84.4613 201.474 82.7249 200.925C80.6628 200.27 78.8795 198.491 75.3174 194.924L35.5234 155.13L45.9177 139.01C45.9664 138.93 46.0151 138.859 46.0947 138.802C46.2053 138.722 46.3646 138.758 46.4974 138.802C48.8832 139.522 51.4447 139.392 53.7455 138.435C53.865 138.39 53.9845 138.359 54.0774 138.444C54.1239 138.486 54.1654 138.533 54.2013 138.585L94.0219 196.367ZM31.6825 151.294L22.5581 142.165L40.5856 134.474C40.6317 134.454 40.6813 134.444 40.7316 134.443C40.8821 134.443 40.9706 134.594 41.0502 134.731C41.2314 135.01 41.4233 135.281 41.6255 135.545L41.683 135.616C41.7361 135.691 41.7007 135.766 41.6476 135.837L31.6913 151.294H31.6825ZM18.5137 138.125L6.96444 126.576C4.99974 124.611 3.57489 123.186 2.58369 121.96L37.7005 129.244C37.7446 129.252 37.7889 129.26 37.8332 129.266C38.0501 129.301 38.289 129.341 38.289 129.545C38.289 129.766 38.0279 129.868 37.8067 129.952L37.7049 129.996L18.5137 138.125ZM0.574738 116.022C0.614758 115.278 0.748566 114.542 0.972988 113.832C1.62789 111.77 3.40674 109.991 6.97329 106.424L21.7528 91.6447C28.5577 101.521 35.3811 111.384 42.2228 121.235C42.3423 121.394 42.4751 121.571 42.3379 121.704C41.6918 122.416 41.0458 123.195 40.59 124.04C40.5406 124.149 40.4645 124.243 40.3688 124.315C40.3112 124.35 40.2493 124.337 40.1829 124.323H40.1741L0.570312 116.018L0.574738 116.022ZM25.7087 87.6888L45.577 67.8161C47.4488 68.6347 54.25 71.5065 60.3255 74.073C64.9275 76.02 69.1224 77.79 70.4411 78.3653C70.5738 78.4184 70.6933 78.4715 70.7508 78.6042C70.7862 78.6839 70.7685 78.7857 70.7508 78.8697C70.4362 80.3042 70.483 81.7944 70.887 83.2063C71.291 84.6182 72.0394 85.9076 73.0651 86.9586C73.1978 87.0914 73.0651 87.2817 72.95 87.4454L72.8881 87.5383L52.7101 118.792C52.657 118.881 52.6083 118.956 52.5198 119.013C52.4136 119.08 52.2632 119.049 52.1393 119.018C51.3545 118.812 50.5477 118.702 49.7365 118.69C49.0108 118.69 48.2231 118.823 47.4266 118.969H47.4222C47.3337 118.982 47.2541 119 47.1833 118.947C47.1051 118.883 47.0378 118.807 46.9841 118.721L25.7087 87.6888ZM49.5949 63.8026L75.3218 38.0757C78.884 34.5135 80.6672 32.7303 82.7293 32.0798C84.4658 31.5307 86.3294 31.5307 88.0658 32.0798C90.1279 32.7303 91.9112 34.5135 95.4733 38.0757L101.049 43.6512L82.747 71.9844C82.7017 72.0669 82.64 72.1392 82.5656 72.1968C82.4549 72.2721 82.3001 72.2411 82.1673 72.1968C80.7247 71.7591 79.1972 71.6793 77.7168 71.9646C76.2365 72.2499 74.8479 72.8916 73.6713 73.8341C73.5518 73.958 73.3748 73.8872 73.2244 73.8208C70.8349 72.7809 52.2499 64.9266 49.5905 63.7982L49.5949 63.8026ZM104.934 47.5363L121.829 64.431L117.758 89.6446V89.711C117.754 89.7685 117.742 89.8251 117.722 89.8791C117.678 89.9676 117.589 89.9853 117.501 90.0119C116.631 90.2755 115.811 90.6839 115.076 91.2199C115.044 91.2424 115.015 91.2676 114.988 91.2951C114.939 91.3482 114.89 91.3969 114.811 91.4058C114.746 91.4078 114.681 91.3973 114.62 91.3748L88.8756 80.4362L88.8269 80.4141C88.6632 80.3477 88.4685 80.268 88.4685 80.0999C88.3172 78.6652 87.8486 77.2822 87.0968 76.051C86.9729 75.8475 86.8357 75.6351 86.9419 75.4271L104.934 47.5363ZM87.526 85.6134L111.66 95.8352C111.793 95.8971 111.939 95.9547 111.996 96.0918C112.019 96.1743 112.019 96.2616 111.996 96.3441C111.925 96.6981 111.863 97.1007 111.863 97.5078V98.1849C111.863 98.353 111.691 98.4238 111.532 98.4902L111.483 98.5079C107.66 100.141 57.8077 121.398 57.7325 121.398C57.6572 121.398 57.5776 121.398 57.5024 121.323C57.3696 121.19 57.5024 121.005 57.6218 120.836C57.643 120.807 57.6636 120.778 57.6838 120.748L77.5166 90.0384L77.552 89.9853C77.6671 89.7995 77.7998 89.5915 78.0122 89.5915L78.2114 89.6225C78.6627 89.6844 79.061 89.742 79.4636 89.742C82.4726 89.742 85.2604 88.2773 86.9419 85.7727C86.982 85.7059 87.0328 85.6461 87.0923 85.5957C87.2118 85.5072 87.3888 85.5515 87.526 85.6134ZM59.8874 126.257L114.226 103.083C114.226 103.083 114.306 103.083 114.381 103.159C114.678 103.455 114.93 103.654 115.173 103.84L115.293 103.915C115.403 103.977 115.514 104.048 115.523 104.163C115.523 104.207 115.523 104.234 115.514 104.274L110.863 132.872L110.846 132.987C110.815 133.209 110.784 133.461 110.576 133.461C109.335 133.545 108.133 133.93 107.074 134.583C106.015 135.236 105.132 136.137 104.5 137.209L104.478 137.244C104.416 137.346 104.359 137.443 104.257 137.497C104.164 137.541 104.045 137.523 103.947 137.501L60.6131 128.562C60.5689 128.554 59.9405 126.266 59.8919 126.261L59.8874 126.257Z" fill="currentColor"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/netlify.svg b/smoke/astro.build-main/src/icons/logos/netlify.svg deleted file mode 100644 index 55d4cb0e3..000000000 --- a/smoke/astro.build-main/src/icons/logos/netlify.svg +++ /dev/null @@ -1,6 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="147" height="40"> - <g fill="currentColor" fill-rule="evenodd"> - <path d="m53.37 12.978.123 2.198c1.403-1.7 3.245-2.55 5.525-2.55 3.951 0 5.962 2.268 6.032 6.804v12.568h-4.26v-12.322c0-1.207-.26-2.1-.78-2.681-.52-.58-1.371-.87-2.552-.87-1.719 0-3 .78-3.84 2.338v13.535h-4.262v-19.02h4.016zm24.378 19.372c-2.7 0-4.89-.852-6.567-2.557-1.678-1.705-2.517-3.976-2.517-6.812v-.527c0-1.898.365-3.595 1.096-5.089.73-1.494 1.757-2.657 3.078-3.49 1.321-.831 2.794-1.247 4.42-1.247 2.583 0 4.58.826 5.988 2.478 1.41 1.653 2.114 3.99 2.114 7.014v1.723h-12.4c.13 1.57.652 2.812 1.57 3.726s2.073 1.371 3.464 1.371c1.952 0 3.542-.79 4.77-2.373l2.297 2.198c-.76 1.136-1.774 2.018-3.042 2.645-1.269.627-2.692.94-4.27.94zm-.508-16.294c-1.17 0-2.113.41-2.832 1.23-.72.82-1.178 1.963-1.377 3.428h8.12v-.317c-.094-1.43-.474-2.51-1.14-3.243-.667-.732-1.59-1.098-2.771-1.098zm16.765-7.7v4.623h3.35v3.164h-3.35v10.617c0 .726.144 1.25.43 1.573.286.322.798.483 1.535.483a6.55 6.55 0 0 0 1.49-.176v3.305c-.97.27-1.905.404-2.806.404-3.273 0-4.91-1.81-4.91-5.431v-10.776h-3.124v-3.164h3.122v-4.623h4.261zm11.137 23.643h-4.262v-27h4.262zm9.172 0h-4.262v-19.02h4.262zm-4.525-23.96c0-.655.207-1.2.622-1.634.416-.433 1.009-.65 1.78-.65.772 0 1.368.217 1.79.65.42.434.63.979.63 1.635 0 .644-.21 1.18-.63 1.608-.422.428-1.018.642-1.79.642-.771 0-1.364-.214-1.78-.642-.415-.427-.622-.964-.622-1.608zm10.663 23.96v-15.857h-2.894v-3.164h2.894v-1.74c0-2.11.584-3.738 1.753-4.887 1.17-1.148 2.806-1.722 4.91-1.722.749 0 1.544.105 2.386.316l-.105 3.34a8.375 8.375 0 0 0 -1.631-.14c-2.035 0-3.052 1.048-3.052 3.146v1.687h3.858v3.164h-3.858v15.856h-4.261zm17.87-6.117 3.858-12.903h4.542l-7.54 21.903c-1.158 3.199-3.122 4.799-5.893 4.799-.62 0-1.304-.106-2.052-.317v-3.305l.807.053c1.075 0 1.885-.196 2.429-.589.543-.392.973-1.051 1.289-1.977l.613-1.635-6.664-18.932h4.595z"/> - <path fill-rule="nonzero" d="m27.887 14.135-.014-.006c-.008-.003-.016-.006-.023-.013a.11.11 0 0 1 -.028-.093l.773-4.726 3.625 3.626-3.77 1.604a.083.083 0 0 1 -.033.006h-.015c-.005-.003-.01-.007-.02-.017a1.716 1.716 0 0 0 -.495-.381zm5.258-.288 3.876 3.876c.805.806 1.208 1.208 1.355 1.674.022.069.04.138.054.209l-9.263-3.923a.728.728 0 0 0 -.015-.006c-.037-.015-.08-.032-.08-.07s.044-.056.081-.071l.012-.005zm5.127 7.003c-.2.376-.59.766-1.25 1.427l-4.37 4.369-5.652-1.177-.03-.006c-.05-.008-.103-.017-.103-.062a1.706 1.706 0 0 0 -.655-1.193c-.023-.023-.017-.059-.01-.092 0-.005 0-.01.002-.014l1.063-6.526.004-.022c.006-.05.015-.108.06-.108a1.73 1.73 0 0 0 1.16-.665c.009-.01.015-.021.027-.027.032-.015.07 0 .103.014l9.65 4.082zm-6.625 6.801-7.186 7.186 1.23-7.56.002-.01c.001-.01.003-.02.006-.029.01-.024.036-.034.061-.044l.012-.005a1.85 1.85 0 0 0 .695-.517c.024-.028.053-.055.09-.06a.09.09 0 0 1 .029 0l5.06 1.04zm-8.707 8.707-.81.81-8.955-12.942a.424.424 0 0 0 -.01-.014c-.014-.019-.029-.038-.026-.06 0-.016.011-.03.022-.042l.01-.013c.027-.04.05-.08.075-.123l.02-.035.003-.003c.014-.024.027-.047.051-.06.021-.01.05-.006.073-.001l9.921 2.046a.164.164 0 0 1 .076.033c.013.013.016.027.019.043a1.757 1.757 0 0 0 1.028 1.175c.028.014.016.045.003.078a.238.238 0 0 0 -.015.045c-.125.76-1.197 7.298-1.485 9.063zm-1.692 1.691c-.597.591-.949.904-1.347 1.03a2 2 0 0 1 -1.206 0c-.466-.148-.869-.55-1.674-1.356l-8.993-8.993 2.349-3.643c.011-.018.022-.034.04-.047.025-.018.061-.01.091 0a2.434 2.434 0 0 0 1.638-.083c.027-.01.054-.017.075.002a.19.19 0 0 1 .028.032zm-14.088-10.186-2.062-2.063 4.074-1.738a.084.084 0 0 1 .033-.007c.034 0 .054.034.072.065a2.91 2.91 0 0 0 .13.184l.013.016c.012.017.004.034-.008.05l-2.25 3.493zm-2.976-2.976-2.61-2.61c-.444-.444-.766-.766-.99-1.043l7.936 1.646a.84.84 0 0 0 .03.005c.049.008.103.017.103.063 0 .05-.059.073-.109.092l-.023.01zm-4.054-4.995a2 2 0 0 1 .09-.495c.148-.466.55-.868 1.356-1.674l3.34-3.34a2175.525 2175.525 0 0 0 4.626 6.687c.027.036.057.076.026.106-.146.161-.292.337-.395.528a.16.16 0 0 1 -.05.062c-.013.008-.027.005-.042.002h-.002l-8.95-1.877zm5.68-6.403 4.49-4.491c.423.185 1.96.834 3.333 1.414 1.04.44 1.988.84 2.286.97.03.012.057.024.07.054.008.018.004.041 0 .06a2.003 2.003 0 0 0 .523 1.828c.03.03 0 .073-.026.11l-.014.021-4.56 7.063c-.012.02-.023.037-.043.05-.024.015-.058.008-.086.001a2.274 2.274 0 0 0 -.543-.074c-.164 0-.342.03-.522.063h-.001c-.02.003-.038.007-.054-.005a.21.21 0 0 1 -.045-.051l-4.808-7.013zm5.398-5.398 5.814-5.814c.805-.805 1.208-1.208 1.674-1.355a2 2 0 0 1 1.206 0c.466.147.869.55 1.674 1.355l1.26 1.26-4.136 6.403a.155.155 0 0 1 -.041.048c-.025.017-.06.01-.09 0a2.097 2.097 0 0 0 -1.92.37c-.027.028-.067.012-.101-.003-.54-.235-4.74-2.01-5.341-2.265zm12.506-3.676 3.818 3.818-.92 5.698v.015a.135.135 0 0 1 -.008.038c-.01.02-.03.024-.05.03a1.83 1.83 0 0 0 -.548.273.154.154 0 0 0 -.02.017c-.011.012-.022.023-.04.025a.114.114 0 0 1 -.043-.007l-5.818-2.472-.011-.005c-.037-.015-.081-.033-.081-.071a2.198 2.198 0 0 0 -.31-.915c-.028-.046-.059-.094-.035-.141zm-3.934 8.605 5.454 2.31c.03.014.063.027.076.058a.106.106 0 0 1 0 .057c-.016.08-.03.171-.03.263v.153c0 .038-.039.054-.075.069l-.011.004c-.864.369-12.13 5.173-12.147 5.173s-.035 0-.052-.017c-.03-.03 0-.072.027-.11a.76.76 0 0 0 .014-.02l4.482-6.94.008-.012c.026-.042.056-.089.104-.089l.045.007c.102.014.192.027.283.027.68 0 1.31-.331 1.69-.897a.16.16 0 0 1 .034-.04c.027-.02.067-.01.098.004zm-6.246 9.185 12.28-5.237s.018 0 .035.017c.067.067.124.112.179.154l.027.017c.025.014.05.03.052.056 0 .01 0 .016-.002.025l-1.051 6.463-.004.026c-.007.05-.014.107-.061.107a1.729 1.729 0 0 0 -1.373.847l-.005.008c-.014.023-.027.045-.05.057-.021.01-.048.006-.07.001l-9.793-2.02c-.01-.002-.152-.519-.163-.52z"/> - </g> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/postcss.svg b/smoke/astro.build-main/src/icons/logos/postcss.svg deleted file mode 100644 index c5e0809d3..000000000 --- a/smoke/astro.build-main/src/icons/logos/postcss.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg width="253" height="96" viewBox="0 0 253 96" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M25.496 25.648C31.3413 25.648 35.8853 26.864 39.128 29.296C42.3707 31.728 43.992 35.3333 43.992 40.112C43.992 45.104 42.392 48.88 39.192 51.44C36.0347 53.9573 31.7893 55.216 26.456 55.216H21.656V70H11.16V25.648H25.496ZM25.56 47.664C28.0347 47.664 29.912 47.088 31.192 45.936C32.5147 44.7413 33.176 42.8 33.176 40.112C33.176 35.4613 30.5733 33.136 25.368 33.136H21.656V47.664H25.56ZM62.1255 34.928C67.3308 34.928 71.4055 36.528 74.3495 39.728C77.2935 42.8853 78.7655 47.3227 78.7655 53.04C78.7655 56.6667 78.0828 59.8453 76.7175 62.576C75.3948 65.264 73.4748 67.3547 70.9575 68.848C68.4828 70.3413 65.5388 71.088 62.1255 71.088C56.9628 71.088 52.8882 69.5093 49.9015 66.352C46.9575 63.152 45.4855 58.6933 45.4855 52.976C45.4855 49.3493 46.1468 46.192 47.4695 43.504C48.8348 40.7733 50.7548 38.6613 53.2295 37.168C55.7468 35.6747 58.7122 34.928 62.1255 34.928ZM62.1255 42.352C60.0775 42.352 58.5415 43.2267 57.5175 44.976C56.4935 46.6827 55.9815 49.3493 55.9815 52.976C55.9815 56.688 56.4722 59.3973 57.4535 61.104C58.4775 62.8107 60.0348 63.664 62.1255 63.664C64.1735 63.664 65.7095 62.8107 66.7335 61.104C67.7575 59.3547 68.2695 56.6667 68.2695 53.04C68.2695 49.328 67.7575 46.6187 66.7335 44.912C65.7522 43.2053 64.2162 42.352 62.1255 42.352ZM96.7485 34.928C99.1805 34.928 101.463 35.2907 103.597 36.016C105.73 36.7413 107.607 37.7653 109.229 39.088L105.517 44.784C102.743 43.0347 99.9485 42.16 97.1325 42.16C95.8098 42.16 94.7858 42.3947 94.0605 42.864C93.3778 43.2907 93.0365 43.9093 93.0365 44.72C93.0365 45.36 93.1858 45.8933 93.4845 46.32C93.8258 46.704 94.4872 47.1093 95.4685 47.536C96.4498 47.9627 97.9645 48.4747 100.013 49.072C103.554 50.096 106.178 51.44 107.885 53.104C109.634 54.7253 110.509 56.9867 110.509 59.888C110.509 62.192 109.847 64.1973 108.525 65.904C107.202 67.568 105.389 68.848 103.085 69.744C100.781 70.64 98.2205 71.088 95.4045 71.088C92.5458 71.088 89.8792 70.64 87.4045 69.744C84.9725 68.848 82.9032 67.6107 81.1965 66.032L86.1245 60.528C88.9832 62.7467 91.9912 63.856 95.1485 63.856C96.6845 63.856 97.8792 63.5787 98.7325 63.024C99.6285 62.4693 100.077 61.68 100.077 60.656C100.077 59.8453 99.9058 59.2053 99.5645 58.736C99.2232 58.2667 98.5618 57.84 97.5805 57.456C96.5992 57.0293 95.0418 56.5173 92.9085 55.92C89.5378 54.9387 87.0205 53.5733 85.3565 51.824C83.6925 50.0747 82.8605 47.8987 82.8605 45.296C82.8605 43.3333 83.4152 41.584 84.5245 40.048C85.6765 38.4693 87.2978 37.232 89.3885 36.336C91.5218 35.3973 93.9752 34.928 96.7485 34.928ZM137.03 68.4C135.793 69.2533 134.342 69.9147 132.678 70.384C131.057 70.8533 129.435 71.088 127.814 71.088C120.39 71.0453 116.678 66.9493 116.678 58.8V43.056H111.878V36.016H116.678V28.656L126.79 27.504V36.016H134.598L133.51 43.056H126.79V58.672C126.79 60.2507 127.046 61.3813 127.558 62.064C128.07 62.7467 128.881 63.088 129.99 63.088C131.142 63.088 132.358 62.7253 133.638 62L137.03 68.4ZM158.71 24.56C161.483 24.56 163.936 24.9653 166.07 25.776C168.246 26.5867 170.294 27.8027 172.214 29.424L167.222 35.376C165.899 34.352 164.598 33.584 163.318 33.072C162.038 32.56 160.672 32.304 159.222 32.304C156.235 32.304 153.867 33.5627 152.118 36.08C150.411 38.5973 149.558 42.48 149.558 47.728C149.558 52.8907 150.411 56.7307 152.118 59.248C153.867 61.7227 156.278 62.96 159.35 62.96C160.971 62.96 162.443 62.6613 163.766 62.064C165.088 61.424 166.518 60.528 168.054 59.376L172.726 65.392C171.062 67.056 169.035 68.4213 166.646 69.488C164.299 70.5547 161.696 71.088 158.838 71.088C154.742 71.088 151.179 70.192 148.15 68.4C145.12 66.608 142.752 63.9627 141.046 60.464C139.382 56.9227 138.549 52.6773 138.549 47.728C138.549 42.9067 139.403 38.7467 141.11 35.248C142.859 31.7493 145.248 29.104 148.278 27.312C151.35 25.4773 154.827 24.56 158.71 24.56ZM191.057 24.56C194.385 24.56 197.265 25.0293 199.697 25.968C202.172 26.9067 204.412 28.336 206.417 30.256L201.553 35.952C198.524 33.4773 195.281 32.24 191.825 32.24C189.99 32.24 188.54 32.624 187.473 33.392C186.406 34.1173 185.873 35.184 185.873 36.592C185.873 37.5733 186.108 38.384 186.577 39.024C187.046 39.6213 187.878 40.1973 189.073 40.752C190.268 41.3067 192.06 41.968 194.449 42.736C198.972 44.1867 202.3 45.9787 204.433 48.112C206.566 50.2027 207.633 53.1893 207.633 57.072C207.633 59.8453 206.929 62.2987 205.521 64.432C204.113 66.5227 202.086 68.1653 199.441 69.36C196.796 70.512 193.66 71.088 190.033 71.088C186.406 71.088 183.185 70.512 180.369 69.36C177.596 68.208 175.206 66.672 173.201 64.752L178.513 58.928C180.22 60.3787 181.969 61.4667 183.761 62.192C185.596 62.9173 187.58 63.28 189.713 63.28C191.889 63.28 193.596 62.8107 194.833 61.872C196.113 60.8907 196.753 59.5467 196.753 57.84C196.753 56.7307 196.518 55.8133 196.049 55.088C195.58 54.32 194.769 53.6373 193.617 53.04C192.465 52.4427 190.801 51.8027 188.625 51.12C183.718 49.6267 180.22 47.792 178.129 45.616C176.081 43.44 175.057 40.688 175.057 37.36C175.057 34.8 175.74 32.56 177.105 30.64C178.47 28.6773 180.369 27.184 182.801 26.16C185.233 25.0933 187.985 24.56 191.057 24.56ZM226.995 24.56C230.323 24.56 233.203 25.0293 235.635 25.968C238.109 26.9067 240.349 28.336 242.354 30.256L237.491 35.952C234.461 33.4773 231.219 32.24 227.763 32.24C225.928 32.24 224.477 32.624 223.411 33.392C222.344 34.1173 221.811 35.184 221.811 36.592C221.811 37.5733 222.045 38.384 222.515 39.024C222.984 39.6213 223.816 40.1973 225.01 40.752C226.205 41.3067 227.997 41.968 230.387 42.736C234.909 44.1867 238.237 45.9787 240.371 48.112C242.504 50.2027 243.571 53.1893 243.571 57.072C243.571 59.8453 242.867 62.2987 241.458 64.432C240.051 66.5227 238.024 68.1653 235.379 69.36C232.733 70.512 229.597 71.088 225.971 71.088C222.344 71.088 219.123 70.512 216.307 69.36C213.533 68.208 211.144 66.672 209.139 64.752L214.451 58.928C216.157 60.3787 217.907 61.4667 219.699 62.192C221.533 62.9173 223.517 63.28 225.651 63.28C227.827 63.28 229.533 62.8107 230.771 61.872C232.051 60.8907 232.691 59.5467 232.691 57.84C232.691 56.7307 232.456 55.8133 231.987 55.088C231.517 54.32 230.707 53.6373 229.555 53.04C228.403 52.4427 226.739 51.8027 224.562 51.12C219.656 49.6267 216.157 47.792 214.067 45.616C212.019 43.44 210.995 40.688 210.995 37.36C210.995 34.8 211.677 32.56 213.043 30.64C214.408 28.6773 216.307 27.184 218.739 26.16C221.171 25.0933 223.923 24.56 226.995 24.56Z" fill="black"/> - </svg> - \ No newline at end of file diff --git a/smoke/astro.build-main/src/icons/logos/preact.svg b/smoke/astro.build-main/src/icons/logos/preact.svg deleted file mode 100644 index 8fe8c57b8..000000000 --- a/smoke/astro.build-main/src/icons/logos/preact.svg +++ /dev/null @@ -1,14 +0,0 @@ -<svg width="659" height="220" viewBox="0 0 659 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M88.0223 76.4142C96.53 71.6257 104.685 68.0807 111.941 65.923C118.491 63.9752 124.153 63.2049 128.607 63.566C133.06 63.927 135.97 65.3773 137.621 67.5294C139.273 69.6815 139.92 72.8672 139.116 77.2624C138.313 81.6576 136.103 86.9273 132.526 92.7503C130.009 96.8479 126.858 101.151 123.143 105.534C116.835 98.7604 109.376 91.9737 101.023 85.5641C96.7043 82.2505 92.3504 79.1937 88.0223 76.4142Z" fill="black"/> -<path d="M41.4016 105.534C37.6872 101.151 34.5355 96.8479 32.0186 92.7503C28.4417 86.9273 26.2322 81.6576 25.4284 77.2624C24.6245 72.8672 25.2723 69.6815 26.9237 67.5294C28.575 65.3773 31.4845 63.927 35.938 63.566C40.3915 63.2049 46.0535 63.9752 52.6039 65.923C59.8598 68.0807 68.0148 71.6257 76.5225 76.4142C72.1944 79.1937 67.8405 82.2505 63.5221 85.5641C55.1688 91.9738 47.7098 98.7604 41.4016 105.534Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M45.3576 110C51.4867 103.367 58.8272 96.6507 67.1366 90.2746C72.1884 86.3983 77.2691 82.9004 82.2724 79.809C87.2758 82.9004 92.3565 86.3983 97.4082 90.2746C105.718 96.6507 113.058 103.367 119.187 110C113.058 116.633 105.718 123.349 97.4082 129.725C92.3564 133.602 87.2757 137.1 82.2724 140.191C77.2691 137.1 72.1884 133.602 67.1366 129.725C58.8272 123.349 51.4867 116.633 45.3576 110ZM82.2724 122.617C89.2406 122.617 94.8896 116.968 94.8896 110C94.8896 103.032 89.2406 97.3828 82.2724 97.3828C75.3041 97.3828 69.6552 103.032 69.6552 110C69.6552 116.968 75.3041 122.617 82.2724 122.617Z" fill="black"/> -<path d="M41.4016 114.466C37.6871 118.849 34.5355 123.152 32.0185 127.25C28.4417 133.073 26.2322 138.342 25.4283 142.738C24.6244 147.133 25.2722 150.319 26.9236 152.471C28.575 154.623 31.4845 156.073 35.9379 156.434C40.3914 156.795 46.0534 156.025 52.6038 154.077C59.8597 151.919 68.0148 148.374 76.5225 143.586C72.1944 140.806 67.8405 137.75 63.5221 134.436C55.1689 128.026 47.7098 121.24 41.4016 114.466Z" fill="black"/> -<path d="M88.0223 143.586C96.53 148.374 104.685 151.919 111.941 154.077C118.491 156.025 124.153 156.795 128.607 156.434C133.06 156.073 135.97 154.623 137.621 152.471C139.273 150.319 139.92 147.133 139.117 142.738C138.313 138.342 136.103 133.073 132.526 127.25C130.009 123.152 126.858 118.849 123.143 114.466C116.835 121.24 109.376 128.026 101.023 134.436C96.7043 137.75 92.3504 140.806 88.0223 143.586Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M164.545 62.5L82.2724 15L0 62.5V157.5L82.2724 205L164.545 157.5V62.5ZM82.2724 72.8745C92.1235 67.0712 101.696 62.7752 110.249 60.2318C117.207 58.1628 123.646 57.2068 129.087 57.6479C134.527 58.089 139.304 59.9696 142.332 63.9149C145.359 67.8602 145.939 72.9612 144.957 78.3306C143.975 83.6999 141.385 89.6726 137.585 95.858C134.779 100.427 131.265 105.189 127.138 110C131.265 114.811 134.779 119.573 137.586 124.142C141.385 130.327 143.975 136.3 144.957 141.669C145.939 147.039 145.359 152.14 142.332 156.085C139.304 160.03 134.527 161.911 129.087 162.352C123.646 162.793 117.207 161.837 110.249 159.768C101.696 157.225 92.1236 152.929 82.2724 147.125C72.4212 152.929 62.8491 157.225 54.2962 159.768C47.3381 161.837 40.8986 162.793 35.4581 162.352C30.0175 161.911 25.2404 160.03 22.2131 156.085C19.1857 152.14 18.6056 147.039 19.5877 141.669C20.5697 136.3 23.1598 130.327 26.9593 124.142C29.766 119.573 33.2796 114.811 37.4068 110C33.2796 105.189 29.7661 100.427 26.9593 95.858C23.1599 89.6726 20.5698 83.6999 19.5877 78.3306C18.6057 72.9612 19.1858 67.8602 22.2131 63.9149C25.2405 59.9696 30.0175 58.089 35.4581 57.6479C40.8987 57.2067 47.3382 58.1628 54.2962 60.2318C62.8492 62.7752 72.4213 67.0712 82.2724 72.8745Z" fill="black"/> -<path d="M205.249 107.129V69.7527H235.201C241.26 69.7527 246.166 71.2887 249.921 74.3607C253.676 77.4327 255.553 82.126 255.553 88.4407C255.553 94.7554 253.676 99.4487 249.921 102.521C246.166 105.593 241.26 107.129 235.201 107.129H205.249ZM196.545 62.3287V153.721H205.249V114.553H237.121C241.217 114.553 244.929 113.998 248.257 112.889C251.585 111.694 254.444 109.987 256.833 107.769C259.222 105.465 261.057 102.691 262.337 99.4487C263.617 96.206 264.257 92.5367 264.257 88.4407C264.257 84.3447 263.617 80.6754 262.337 77.4327C261.057 74.19 259.222 71.4594 256.833 69.2407C254.444 66.9367 251.585 65.23 248.257 64.1207C244.929 62.926 241.217 62.3287 237.121 62.3287H196.545Z" fill="black"/> -<path d="M283.314 105.721V69.7527H315.826C322.482 69.7527 327.431 71.374 330.674 74.6167C333.917 77.8594 335.538 82.2967 335.538 87.9287C335.538 90.7447 334.983 93.262 333.874 95.4807C332.85 97.614 331.442 99.4487 329.65 100.985C327.858 102.521 325.767 103.715 323.378 104.569C320.989 105.337 318.471 105.721 315.826 105.721H283.314ZM274.61 62.3287V153.721H283.314V113.145H316.338C320.434 112.974 323.634 113.657 325.938 115.193C328.327 116.729 330.119 118.777 331.314 121.337C332.594 123.811 333.405 126.67 333.746 129.913C334.173 133.07 334.471 136.27 334.642 139.513C334.727 140.451 334.813 141.561 334.898 142.841C334.983 144.121 335.069 145.443 335.154 146.809C335.325 148.089 335.538 149.369 335.794 150.649C336.135 151.843 336.562 152.867 337.074 153.721H346.674C345.735 152.611 344.967 151.075 344.37 149.113C343.858 147.065 343.474 144.931 343.218 142.713C342.962 140.409 342.791 138.147 342.706 135.929C342.621 133.71 342.535 131.833 342.45 130.297C342.279 127.566 341.895 125.049 341.298 122.745C340.786 120.355 339.89 118.265 338.61 116.473C337.415 114.681 335.837 113.23 333.874 112.121C331.911 110.926 329.437 110.115 326.45 109.689V109.433C332.338 108.238 336.775 105.507 339.762 101.241C342.749 96.974 344.242 91.9394 344.242 86.1367C344.242 82.0407 343.474 78.4994 341.938 75.5127C340.487 72.4407 338.482 69.966 335.922 68.0887C333.447 66.126 330.503 64.6754 327.09 63.7367C323.762 62.798 320.221 62.3287 316.466 62.3287H274.61Z" fill="black"/> -<path d="M357.425 62.3287V153.721H421.169V146.297H366.129V110.201H417.073V102.777H366.129V69.7527H420.529V62.3287H357.425Z" fill="black"/> -<path d="M446.228 117.881L464.532 71.0327L482.196 117.881H446.228ZM460.052 62.3287L423.316 153.721H432.532L443.54 125.305H485.14L496.276 153.721H505.62L469.78 62.3287H460.052Z" fill="black"/> -<path d="M576.901 89.9767H585.605C585.008 85.198 583.557 80.974 581.253 77.3047C579.034 73.6354 576.218 70.5634 572.805 68.0887C569.477 65.5287 565.722 63.6087 561.541 62.3287C557.445 61.0487 553.221 60.4087 548.869 60.4087C541.701 60.4087 535.386 61.7314 529.925 64.3767C524.549 66.9367 520.069 70.4354 516.485 74.8727C512.901 79.2247 510.213 84.2594 508.421 89.9767C506.629 95.694 505.733 101.71 505.733 108.025C505.733 114.339 506.629 120.355 508.421 126.073C510.213 131.79 512.901 136.825 516.485 141.177C520.069 145.529 524.549 149.027 529.925 151.673C535.386 154.233 541.701 155.513 548.869 155.513C554.245 155.513 559.109 154.659 563.461 152.953C567.898 151.246 571.738 148.814 574.981 145.657C578.224 142.499 580.869 138.659 582.917 134.137C584.965 129.614 586.288 124.537 586.885 118.905H578.181C577.754 123.001 576.773 126.841 575.237 130.425C573.701 133.923 571.696 136.995 569.221 139.641C566.746 142.286 563.802 144.377 560.389 145.913C556.976 147.449 553.136 148.217 548.869 148.217C542.81 148.217 537.605 147.065 533.253 144.761C528.901 142.457 525.317 139.427 522.501 135.673C519.77 131.833 517.722 127.523 516.357 122.745C515.077 117.881 514.437 112.974 514.437 108.025C514.437 102.99 515.077 98.0834 516.357 93.3047C517.722 88.526 519.77 84.2594 522.501 80.5047C525.317 76.6647 528.901 73.5927 533.253 71.2887C537.605 68.9847 542.81 67.8327 548.869 67.8327C552.197 67.8327 555.354 68.3447 558.341 69.3687C561.413 70.3074 564.186 71.7154 566.661 73.5927C569.221 75.47 571.354 77.8167 573.061 80.6327C574.853 83.3634 576.133 86.478 576.901 89.9767Z" fill="black"/> -<path d="M586.642 62.3287V69.7527H618.386V153.721H627.09V69.7527H658.962V62.3287H586.642Z" fill="black"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/prismic.svg b/smoke/astro.build-main/src/icons/logos/prismic.svg deleted file mode 100644 index cf1fc7534..000000000 --- a/smoke/astro.build-main/src/icons/logos/prismic.svg +++ /dev/null @@ -1,11 +0,0 @@ -<svg width="685" height="220" viewBox="0 0 685 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M225.788 77.7337H230.033C232.931 77.7337 235.279 80.0824 235.279 82.9796V87.9466C235.279 88.1006 235.404 88.2255 235.558 88.2255C237.975 83.9511 241.228 80.8424 245.317 78.8995C249.407 76.9566 253.822 75.9851 258.563 75.9851C263.675 75.9851 268.275 76.9323 272.365 78.8267C276.455 80.721 279.94 83.3196 282.822 86.6226C285.703 89.9255 287.887 93.8113 289.374 98.28C290.861 102.749 291.605 107.557 291.605 112.706C291.605 117.854 290.815 122.663 289.235 127.132C287.655 131.601 285.448 135.487 282.613 138.79C279.778 142.092 276.362 144.691 272.365 146.585C268.368 148.48 264 149.427 259.26 149.427C256.1 149.427 253.311 149.087 250.894 148.407C248.478 147.727 246.34 146.853 244.481 145.784C242.622 144.715 241.042 143.574 239.741 142.36C238.439 141.145 237.371 139.955 236.534 138.79C236.303 138.79 236.116 138.977 236.116 139.208V174.5C236.116 178.035 233.25 180.902 229.714 180.902H225.788C222.252 180.902 219.386 178.035 219.386 174.5V84.1359C219.386 80.6001 222.252 77.7337 225.788 77.7337ZM274.874 112.706C274.874 109.986 274.433 107.363 273.55 104.837C272.667 102.311 271.366 100.077 269.646 98.1343C267.927 96.1914 265.859 94.6371 263.442 93.4713C261.026 92.3056 258.284 91.7227 255.216 91.7227C252.149 91.7227 249.407 92.3056 246.991 93.4713C244.574 94.6371 242.506 96.1914 240.786 98.1343C239.067 100.077 237.766 102.311 236.883 104.837C236 107.363 235.558 109.986 235.558 112.706C235.558 115.426 236 118.049 236.883 120.575C237.766 123.1 239.067 125.335 240.786 127.278C242.506 129.22 244.574 130.775 246.991 131.941C249.407 133.106 252.149 133.689 255.216 133.689C258.284 133.689 261.026 133.106 263.442 131.941C265.859 130.775 267.927 129.22 269.646 127.278C271.366 125.335 272.667 123.1 273.55 120.575C274.433 118.049 274.874 115.426 274.874 112.706ZM315.713 77.7337H320.505C323.563 77.7337 326.042 80.2129 326.042 83.271V88.5295C326.042 88.6835 326.167 88.8083 326.321 88.8083C328.179 84.7282 330.828 81.571 334.267 79.3367C337.707 77.1023 341.657 75.9851 346.118 75.9851C347.14 75.9851 348.139 76.0823 349.115 76.2766C350.858 76.6236 352.113 78.153 352.113 79.9297V89.5233C352.113 91.4527 350.549 93.0167 348.62 93.0167C348.412 93.0167 348.205 92.9981 348 92.9613C346.652 92.7184 345.328 92.597 344.026 92.597C340.123 92.597 336.986 93.3498 334.616 94.8556C332.246 96.3613 330.434 98.0857 329.178 100.029C327.924 101.972 327.087 103.914 326.669 105.857C326.251 107.8 326.042 109.257 326.042 110.229V141.276C326.042 144.812 323.175 147.678 319.64 147.678H315.713C312.178 147.678 309.311 144.812 309.311 141.276V84.1359C309.311 80.6001 312.178 77.7337 315.713 77.7337ZM372.318 77.7337H376.244C379.78 77.7337 382.646 80.6001 382.646 84.1359V141.276C382.646 144.812 379.78 147.678 376.244 147.678H372.318C368.782 147.678 365.916 144.812 365.916 141.276V84.1359C365.916 80.6001 368.782 77.7337 372.318 77.7337ZM363.545 53.9818C363.545 51.1646 364.544 48.7117 366.543 46.623C368.542 44.5344 371.074 43.4902 374.141 43.4902C377.209 43.4902 379.788 44.4859 381.879 46.4773C383.971 48.4688 385.016 50.9703 385.016 53.9818C385.016 56.9933 383.971 59.4948 381.879 61.4863C379.788 63.4778 377.209 64.4735 374.141 64.4735C371.074 64.4735 368.542 63.4292 366.543 61.3406C364.544 59.252 363.545 56.799 363.545 53.9818ZM435.626 93.718C432.232 91.222 429.211 89.9741 426.563 89.9741C424.333 89.9741 422.149 90.5569 420.011 91.7227C417.873 92.8885 416.804 94.7828 416.804 97.4057C416.804 99.5429 417.687 101.097 419.453 102.069C421.219 103.04 423.449 103.865 426.145 104.546C428.84 105.226 431.745 105.93 434.859 106.659C437.972 107.388 440.877 108.504 443.573 110.011C446.268 111.516 448.498 113.58 450.264 116.203C452.03 118.826 452.914 122.42 452.914 126.986C452.914 131.163 452.054 134.685 450.334 137.551C448.615 140.417 446.384 142.724 443.642 144.472C440.9 146.221 437.81 147.484 434.371 148.261C430.932 149.038 427.493 149.427 424.054 149.427C418.848 149.427 414.062 148.65 409.694 147.095C407.983 146.487 405.93 145.264 403.535 143.426C400.73 141.274 400.201 137.254 402.354 134.449C402.537 134.21 402.737 133.985 402.952 133.774L404.688 132.074C407.082 129.727 410.882 129.626 413.398 131.841C414.413 132.735 415.293 133.424 416.037 133.908C418.5 135.511 421.498 136.312 425.03 136.312C426.238 136.312 427.493 136.167 428.794 135.875C430.095 135.584 431.303 135.098 432.419 134.418C433.535 133.738 434.441 132.888 435.138 131.868C435.834 130.848 436.183 129.658 436.183 128.298C436.183 125.869 435.3 124.072 433.534 122.906C431.769 121.74 429.537 120.794 426.842 120.065C424.146 119.337 421.242 118.657 418.128 118.025C415.015 117.394 412.11 116.373 409.415 114.965C406.719 113.556 404.488 111.589 402.722 109.063C400.956 106.537 400.074 103.04 400.074 98.5717C400.074 94.6856 400.84 91.3098 402.374 88.444C403.908 85.5782 405.929 83.2225 408.439 81.3767C410.948 79.5309 413.829 78.1709 417.082 77.2966C420.335 76.4223 423.636 75.9851 426.981 75.9851C431.443 75.9851 435.858 76.7866 440.226 78.3895C441.808 78.9699 443.573 80.0446 445.52 81.6138C448.273 83.8322 448.707 87.8625 446.489 90.6158C446.304 90.8448 446.104 91.0608 445.89 91.2622L443.805 93.2233C441.555 95.3397 438.115 95.5478 435.626 93.718ZM473.676 77.7337H476.765C480.302 77.7337 483.168 80.6001 483.168 84.1359V88.6626C484.934 85.3597 487.327 82.4211 490.626 79.8467C493.926 77.2723 498.364 75.9851 503.941 75.9851C514.444 75.9851 521.415 80.3081 524.854 88.9541C527.27 84.4854 530.292 81.2067 533.916 79.1181C537.541 77.0295 541.863 75.9851 546.882 75.9851C551.344 75.9851 555.108 76.7623 558.175 78.3166C561.243 79.871 563.729 82.0082 565.635 84.7282C567.54 87.4483 568.911 90.6298 569.747 94.2727C570.584 97.9157 571.002 101.825 571.002 106.003V141.276C571.002 144.812 568.136 147.678 564.6 147.678H560.674C557.138 147.678 554.272 144.812 554.272 141.276V108.043C554.272 105.906 554.086 103.841 553.714 101.85C553.342 99.8582 552.692 98.11 551.762 96.6042C550.833 95.0984 549.578 93.9085 547.998 93.0342C546.418 92.1599 544.373 91.7227 541.863 91.7227C539.261 91.7227 537.053 92.2327 535.241 93.2527C533.428 94.2727 531.941 95.6327 530.78 97.3328C529.618 99.0327 528.781 100.976 528.27 103.161C527.758 105.348 527.503 107.557 527.503 109.791V141.276C527.503 144.812 524.637 147.678 521.101 147.678H517.175C513.639 147.678 510.773 144.812 510.773 141.276V106.003C510.773 101.631 509.89 98.1585 508.124 95.5842C506.358 93.0098 503.43 91.7227 499.34 91.7227C496.552 91.7227 494.205 92.2084 492.3 93.1799C490.394 94.1513 488.814 95.4628 487.56 97.1143C486.305 98.7658 485.398 100.66 484.84 102.797C484.283 104.934 484.004 107.168 484.004 109.5V141.276C484.004 144.812 481.138 147.678 477.602 147.678H473.676C470.14 147.678 467.274 144.812 467.274 141.276V84.1359C467.274 80.6001 470.14 77.7337 473.676 77.7337ZM598.038 77.7337H601.965C605.5 77.7337 608.367 80.6001 608.367 84.1359V141.276C608.367 144.812 605.5 147.678 601.965 147.678H598.038C594.502 147.678 591.636 144.812 591.636 141.276V84.1359C591.636 80.6001 594.502 77.7337 598.038 77.7337ZM589.266 53.9818C589.266 51.1646 590.265 48.7117 592.263 46.623C594.262 44.5344 596.794 43.4902 599.862 43.4902C602.929 43.4902 605.508 44.4859 607.599 46.4773C609.691 48.4688 610.737 50.9703 610.737 53.9818C610.737 56.9933 609.691 59.4948 607.599 61.4863C605.508 63.4778 602.929 64.4735 599.862 64.4735C596.794 64.4735 594.262 63.4292 592.263 61.3406C590.265 59.252 589.266 56.799 589.266 53.9818ZM671.109 94.8879C670.42 94.3491 669.815 93.9254 669.293 93.617C667.155 92.3541 664.971 91.7227 662.74 91.7227C659.673 91.7227 656.931 92.3056 654.514 93.4713C652.098 94.6371 650.03 96.1914 648.311 98.1343C646.591 100.077 645.289 102.311 644.407 104.837C643.523 107.363 643.082 109.986 643.082 112.706C643.082 115.426 643.523 118.049 644.407 120.575C645.289 123.1 646.591 125.335 648.311 127.278C650.03 129.22 652.098 130.775 654.514 131.941C656.931 133.106 659.673 133.689 662.74 133.689C665.343 133.689 667.76 133.131 669.99 132.013C670.441 131.788 670.931 131.481 671.459 131.092C674.121 129.135 677.836 129.525 680.033 131.994L682.576 134.851C684.815 137.366 684.591 141.219 682.075 143.457C681.767 143.732 681.431 143.974 681.074 144.181C678.889 145.444 676.682 146.464 674.451 147.241C672.221 148.018 670.083 148.577 668.038 148.917C665.994 149.257 664.228 149.427 662.74 149.427C657.721 149.427 652.981 148.552 648.52 146.804C644.058 145.055 640.2 142.578 636.947 139.372C633.694 136.167 631.115 132.305 629.21 127.788C627.305 123.27 626.351 118.243 626.351 112.706C626.351 107.168 627.305 102.142 629.21 97.6242C631.115 93.107 633.694 89.2455 636.947 86.0397C640.2 82.8339 644.058 80.3567 648.52 78.6081C652.981 76.8594 657.721 75.9851 662.74 75.9851C667.016 75.9851 671.314 76.8352 675.636 78.5352C677.283 79.1831 679.227 80.3415 681.466 82.0104C684.301 84.1232 684.887 88.1344 682.773 90.9694C682.617 91.1797 682.447 91.3801 682.266 91.5695L679.68 94.2721C677.406 96.6493 673.7 96.9155 671.109 94.8879Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M173.631 118.559L160.66 105.56C159.632 104.529 159.055 103.133 159.055 101.677V85.7664C159.055 71.0658 157.528 65.735 154.659 60.3606C151.792 54.9863 147.582 50.7685 142.22 47.8943C136.857 45.0201 131.538 43.4894 116.869 43.4894H95.8891C95.2819 43.4894 94.7896 42.9972 94.7896 42.3901C94.7896 42.099 94.9051 41.8198 95.1106 41.6136L108.082 28.6141C109.113 27.5807 110.513 27 111.973 27H119.26C138.819 27 145.912 29.0409 153.062 32.8731C160.213 36.7055 165.824 42.3292 169.648 49.495C173.472 56.6607 175.509 63.7684 175.509 83.3693V117.782C175.509 118.389 175.017 118.881 174.409 118.881C174.118 118.881 173.837 118.765 173.631 118.559Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M84.1414 201.014L97.1129 188.014C98.1439 186.98 99.5439 186.4 101.004 186.4H116.869C131.538 186.4 136.857 184.869 142.219 181.995C147.582 179.121 151.791 174.903 154.659 169.529C157.527 164.154 159.055 158.823 159.055 144.123V123.1C159.055 122.493 159.547 122.001 160.154 122.001C160.446 122.001 160.726 122.117 160.932 122.324L173.903 135.322C174.931 136.353 175.508 137.749 175.508 139.205V146.52C175.508 166.121 173.472 173.228 169.648 180.394C165.824 187.56 160.212 193.184 153.062 197.016C145.911 200.848 138.819 202.89 119.26 202.89H84.9192C84.3119 202.89 83.8203 202.397 83.8203 201.79C83.8203 201.499 83.9359 201.22 84.1414 201.014Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M1.87745 111.329L14.8482 124.328C15.8765 125.359 16.454 126.755 16.454 128.211V144.121C16.454 158.822 17.9813 164.153 20.8493 169.527C23.7174 174.901 27.9261 179.119 33.2889 181.993C38.6517 184.868 43.971 186.399 58.64 186.399H79.6198C80.2271 186.399 80.7194 186.89 80.7194 187.498C80.7194 187.789 80.6038 188.068 80.3983 188.274L67.4264 201.274C66.3953 202.307 64.9954 202.888 63.5357 202.888H56.2481C36.6894 202.888 29.5969 200.847 22.4466 197.015C15.2962 193.182 9.68454 187.559 5.86052 180.393C2.03646 173.227 0 166.119 0 146.519V112.106C0 111.499 0.492171 111.007 1.0993 111.007C1.39126 111.007 1.67122 111.123 1.87745 111.329Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M91.3676 28.8758L78.3954 41.8753C77.3643 42.9087 75.9651 43.4894 74.5052 43.4894H58.64C43.971 43.4894 38.6516 45.0201 33.2889 47.8943C27.9261 50.7685 23.7174 54.9863 20.8493 60.3606C17.9813 65.735 16.454 71.0658 16.454 85.7664V106.789C16.454 107.396 15.9618 107.889 15.3546 107.889C15.0627 107.889 14.7827 107.772 14.5765 107.566L1.6057 94.5669C0.577468 93.5365 0 92.1402 0 90.6844V83.3694C0 63.7685 2.03646 56.6608 5.86052 49.495C9.68454 42.3292 15.2962 36.7055 22.4466 32.8732C29.5969 29.0409 36.6894 27 56.2481 27H90.5891C91.1963 27 91.6887 27.4922 91.6887 28.0993C91.6887 28.3904 91.5731 28.6697 91.3676 28.8758Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M146.226 91.1749L128.539 74.234C127.369 73.0616 126 72.2094 124.542 71.6773C123.336 71.2203 122.029 70.9701 120.663 70.9701H68.4538C67.8467 70.9701 67.3545 70.478 67.3545 69.8709C67.3545 69.5796 67.4702 69.3002 67.6759 69.0941L80.6595 56.0932C81.6906 55.0608 83.0899 54.4808 84.5491 54.4808H126.147C138.264 54.4808 148.086 64.3242 148.086 76.4666V90.381C148.086 90.9881 147.594 91.4803 146.987 91.4803C146.704 91.4803 146.431 91.3709 146.226 91.1749Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M111.466 173.559L128.375 155.828C129.545 154.655 130.396 153.284 130.927 151.822C131.383 150.613 131.632 149.303 131.632 147.935V95.6158C131.632 95.0086 132.124 94.5165 132.731 94.5165C133.023 94.5165 133.304 94.6327 133.51 94.8396L146.482 107.851C147.509 108.881 148.086 110.277 148.086 111.732V153.431C148.086 165.574 138.264 175.417 126.147 175.417H112.261C111.654 175.417 111.162 174.925 111.162 174.318C111.162 174.035 111.27 173.763 111.466 173.559Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M29.2835 138.713L46.9712 155.654C48.1411 156.826 49.5096 157.678 50.9681 158.21C52.1741 158.667 53.4814 158.917 54.8472 158.917H107.056C107.663 158.917 108.155 159.41 108.155 160.017C108.155 160.308 108.04 160.587 107.834 160.793L94.8501 173.794C93.819 174.826 92.4198 175.407 90.9606 175.407H49.3624C37.2461 175.407 27.4238 165.563 27.4238 153.421V139.506C27.4238 138.9 27.916 138.407 28.5232 138.407C28.8065 138.407 29.0789 138.516 29.2835 138.713Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M64.0446 56.3387L47.1346 74.0702C45.9647 75.2426 45.1143 76.614 44.5834 78.0757C44.1274 79.2843 43.8778 80.5945 43.8778 81.9631V134.282C43.8778 134.89 43.3856 135.381 42.7785 135.381C42.4864 135.381 42.2063 135.265 42.0001 135.058L29.0279 122.047C28.0007 121.017 27.4238 119.621 27.4238 118.166V76.4666C27.4238 64.3242 37.2461 54.4808 49.3625 54.4808H63.249C63.8561 54.4808 64.3483 54.9729 64.3483 55.5801C64.3483 55.8626 64.2395 56.1343 64.0446 56.3387Z" fill="black"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/react.svg b/smoke/astro.build-main/src/icons/logos/react.svg deleted file mode 100644 index ec2fa920e..000000000 --- a/smoke/astro.build-main/src/icons/logos/react.svg +++ /dev/null @@ -1,21 +0,0 @@ -<svg width="659" height="220" viewBox="0 0 659 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0_463_526)"> -<g clip-path="url(#clip1_463_526)"> -<path d="M213.353 115.022C213.353 100.888 195.653 87.4937 168.517 79.1875C174.779 51.529 171.996 29.5239 159.732 22.4788C156.905 20.8263 153.6 20.0435 149.991 20.0435V29.7414C151.991 29.7414 153.6 30.1328 154.948 30.8721C160.863 34.2641 163.429 47.1801 161.428 63.7926C160.95 67.8805 160.167 72.1859 159.21 76.5782C150.687 74.4907 141.38 72.8817 131.595 71.8379C125.724 63.7926 119.636 56.4866 113.504 50.0938C127.681 36.9169 140.989 29.6979 150.034 29.6979V20C138.075 20 122.419 28.5237 106.59 43.3097C90.7599 28.6107 75.1041 20.174 63.1449 20.174V29.8718C72.1469 29.8718 85.4978 37.0474 99.675 50.1373C93.5866 56.5301 87.4983 63.7926 81.7144 71.8379C71.886 72.8817 62.5795 74.4907 54.0558 76.6216C53.0556 72.2728 52.3163 68.0545 51.7945 64.0101C49.7505 47.3976 52.2728 34.4816 58.1437 31.046C59.4484 30.2632 61.1444 29.9153 63.1449 29.9153V20.2174C59.4919 20.2174 56.1868 21.0002 53.3165 22.6528C41.0964 29.6979 38.3566 51.6594 44.6624 79.2309C17.6127 87.5807 0 100.932 0 115.022C0 129.155 17.6997 142.55 44.8363 150.856C38.574 178.515 41.3573 200.52 53.621 207.565C56.4477 209.217 59.7528 210 63.4058 210C75.3651 210 91.0208 201.476 106.851 186.69C122.68 201.389 138.336 209.826 150.295 209.826C153.948 209.826 157.253 209.043 160.124 207.391C172.344 200.346 175.084 178.384 168.778 150.813C195.74 142.506 213.353 129.112 213.353 115.022ZM156.731 86.0151C155.122 91.6251 153.122 97.409 150.861 103.193C149.078 99.7139 147.208 96.2348 145.164 92.7558C143.163 89.2767 141.032 85.8846 138.901 82.5795C145.077 83.4928 151.035 84.6235 156.731 86.0151ZM136.814 132.33C133.422 138.201 129.943 143.767 126.333 148.943C119.854 149.508 113.287 149.812 106.677 149.812C100.11 149.812 93.5431 149.508 87.1069 148.986C83.4974 143.811 79.9748 138.288 76.5827 132.461C73.2776 126.764 70.2769 120.98 67.5372 115.152C70.2335 109.325 73.2776 103.497 76.5393 97.8004C79.9313 91.9295 83.4104 86.363 87.0199 81.1879C93.4996 80.6226 100.066 80.3181 106.677 80.3181C113.243 80.3181 119.81 80.6226 126.246 81.1444C129.856 86.3195 133.378 91.8425 136.77 97.6699C140.076 103.367 143.076 109.151 145.816 114.978C143.076 120.806 140.076 126.633 136.814 132.33ZM150.861 126.677C153.209 132.504 155.209 138.331 156.862 143.985C151.165 145.377 145.164 146.551 138.945 147.464C141.076 144.115 143.207 140.68 145.207 137.157C147.208 133.678 149.078 130.156 150.861 126.677ZM106.764 173.079C102.719 168.904 98.6747 164.25 94.6738 159.162C98.5878 159.336 102.589 159.467 106.633 159.467C110.721 159.467 114.765 159.38 118.723 159.162C114.809 164.25 110.764 168.904 106.764 173.079ZM74.4083 147.464C68.233 146.551 62.2751 145.42 56.5782 144.028C58.1872 138.418 60.1877 132.634 62.4491 126.851C64.2321 130.33 66.1021 133.809 68.146 137.288C70.19 140.767 72.2774 144.159 74.4083 147.464ZM106.546 56.965C110.591 61.1398 114.635 65.7931 118.636 70.8812C114.722 70.7073 110.721 70.5768 106.677 70.5768C102.589 70.5768 98.5443 70.6638 94.5869 70.8812C98.5008 65.7931 102.545 61.1398 106.546 56.965ZM74.3648 82.5795C72.2339 85.9281 70.103 89.3637 68.1025 92.8862C66.1021 96.3653 64.2321 99.8444 62.4491 103.323C60.1007 97.496 58.1003 91.6686 56.4477 86.0151C62.1447 84.667 68.146 83.4928 74.3648 82.5795ZM35.008 137.027C19.6132 130.46 9.65438 121.849 9.65438 115.022C9.65438 108.194 19.6132 99.5399 35.008 93.0167C38.748 91.4076 42.8359 89.9725 47.0542 88.6244C49.5331 97.1481 52.7947 106.02 56.8391 115.109C52.8382 124.154 49.6201 132.982 47.1847 141.463C42.8794 140.114 38.7915 138.636 35.008 137.027ZM58.4047 199.171C52.4903 195.779 49.9245 182.863 51.9249 166.251C52.4033 162.163 53.1861 157.858 54.1428 153.465C62.6665 155.553 71.973 157.162 81.7578 158.206C87.6288 166.251 93.7171 173.557 99.8489 179.95C85.6718 193.127 72.3644 200.346 63.3188 200.346C61.3619 200.302 59.7093 199.911 58.4047 199.171ZM161.559 166.033C163.603 182.646 161.08 195.562 155.209 198.997C153.905 199.78 152.209 200.128 150.208 200.128C141.206 200.128 127.855 192.953 113.678 179.863C119.767 173.47 125.855 166.207 131.639 158.162C141.467 157.118 150.774 155.509 159.297 153.378C160.298 157.771 161.08 161.989 161.559 166.033ZM178.302 137.027C174.562 138.636 170.474 140.071 166.255 141.419C163.777 132.895 160.515 124.024 156.471 114.935C160.471 105.889 163.69 97.0611 166.125 88.5809C170.43 89.929 174.518 91.4076 178.345 93.0167C193.74 99.5834 203.699 108.194 203.699 115.022C203.655 121.849 193.696 130.504 178.302 137.027Z" fill="black"/> -<path d="M106.633 134.896C117.609 134.896 126.507 125.998 126.507 115.022C126.507 104.046 117.609 95.1476 106.633 95.1476C95.6567 95.1476 86.7588 104.046 86.7588 115.022C86.7588 125.998 95.6567 134.896 106.633 134.896Z" fill="black"/> -</g> -<path d="M264.3 169.944H286.472V131.325H303.359C303.554 131.325 303.75 131.325 303.946 131.325C304.142 131.325 304.313 131.325 304.46 131.325L324.21 169.944H349.319L327 128.021C333.02 125.672 337.719 121.781 341.096 116.348C344.473 110.915 346.162 104.772 346.162 97.9196V97.7727C346.162 90.7735 344.669 84.7531 341.683 79.7117C338.698 74.6702 334.366 70.8035 328.688 68.1115C323.059 65.3705 316.256 64 308.278 64H264.3V169.944ZM286.472 114.953V81.3269H305.561C311.092 81.3269 315.448 82.8442 318.63 85.8789C321.86 88.9135 323.476 92.976 323.476 98.0664V98.2132C323.476 103.45 321.909 107.562 318.777 110.548C315.693 113.484 311.386 114.953 305.855 114.953H286.472Z" fill="black"/> -<path d="M395.831 171.632C401.607 171.632 406.624 170.898 410.882 169.43C415.19 167.912 418.787 165.954 421.675 163.556C424.612 161.109 426.912 158.49 428.576 155.7C430.289 152.861 431.464 150.096 432.1 147.404L432.247 146.67H412.424L412.204 147.11C411.714 148.285 410.784 149.533 409.414 150.855C408.092 152.176 406.33 153.302 404.128 154.232C401.974 155.162 399.355 155.627 396.272 155.627C392.454 155.627 389.15 154.795 386.36 153.131C383.619 151.418 381.515 148.97 380.046 145.789C378.578 142.607 377.844 138.789 377.844 134.335V125.819C377.844 121.218 378.578 117.302 380.046 114.072C381.564 110.841 383.644 108.394 386.287 106.73C388.93 105.066 391.94 104.234 395.317 104.234C398.744 104.234 401.729 105.041 404.275 106.656C406.869 108.272 408.9 110.694 410.368 113.925C411.837 117.106 412.571 121.071 412.571 125.819V134.262L422.703 121.56H367.271V135.07H432.908V128.388C432.908 120.312 431.366 113.264 428.283 107.244C425.199 101.223 420.818 96.5491 415.141 93.2208C409.463 89.8924 402.733 88.2283 394.95 88.2283C387.168 88.2283 380.389 89.9414 374.613 93.3676C368.887 96.7938 364.457 101.639 361.324 107.905C358.192 114.121 356.626 121.487 356.626 130.004V130.077C356.626 138.594 358.192 145.96 361.324 152.176C364.506 158.392 369.009 163.189 374.834 166.566C380.707 169.944 387.706 171.632 395.831 171.632Z" fill="black"/> -<path d="M469.068 171.192C472.543 171.192 475.774 170.702 478.76 169.723C481.745 168.744 484.388 167.325 486.689 165.465C488.989 163.605 490.825 161.403 492.195 158.857H493.223V169.944H514.441V115.246C514.441 109.667 513.095 104.87 510.403 100.856C507.76 96.7938 503.942 93.6857 498.95 91.5321C493.957 89.3295 487.961 88.2283 480.962 88.2283C474.11 88.2283 468.138 89.2561 463.048 91.3119C458.006 93.3186 454.017 96.133 451.081 99.755C448.144 103.328 446.431 107.513 445.941 112.31L445.868 113.117H465.618L465.691 112.677C466.425 110.181 467.991 108.223 470.39 106.803C472.788 105.384 475.945 104.674 479.861 104.674C484.217 104.674 487.521 105.653 489.772 107.611C492.073 109.52 493.223 112.236 493.223 115.76V140.796C493.223 143.586 492.464 146.107 490.947 148.358C489.479 150.561 487.448 152.323 484.853 153.645C482.308 154.917 479.396 155.553 476.117 155.553C472.446 155.553 469.435 154.697 467.086 152.984C464.786 151.271 463.635 148.921 463.635 145.936V145.789C463.635 142.901 464.737 140.6 466.939 138.887C469.191 137.174 472.519 136.195 476.924 135.951L504.016 134.189V121.047L473.767 122.882C463.782 123.469 456.098 125.843 450.714 130.004C445.329 134.115 442.637 139.768 442.637 146.963V147.11C442.637 151.907 443.763 156.116 446.015 159.738C448.266 163.36 451.374 166.175 455.339 168.182C459.304 170.188 463.88 171.192 469.068 171.192Z" fill="black"/> -<path d="M566.901 171.632C573.949 171.632 580.018 170.384 585.108 167.888C590.248 165.392 594.31 161.941 597.296 157.536C600.331 153.082 602.142 147.967 602.729 142.191L602.802 141.677L582.832 141.751L582.759 142.118C581.878 146.18 580.116 149.313 577.473 151.515C574.879 153.718 571.404 154.819 567.047 154.819C563.327 154.819 560.146 153.865 557.503 151.956C554.909 149.998 552.902 147.159 551.483 143.439C550.112 139.719 549.427 135.192 549.427 129.857V129.783C549.427 124.497 550.112 120.019 551.483 116.348C552.853 112.677 554.86 109.887 557.503 107.978C560.146 106.02 563.303 105.041 566.974 105.041C571.526 105.041 575.123 106.265 577.767 108.712C580.41 111.111 582.074 114.243 582.759 118.11L582.832 118.477H602.729L602.802 118.11C602.264 112.236 600.502 107.072 597.516 102.618C594.579 98.1154 590.517 94.5912 585.329 92.0461C580.14 89.5009 573.973 88.2283 566.827 88.2283C558.604 88.2283 551.556 89.8924 545.682 93.2208C539.858 96.5001 535.379 101.223 532.247 107.391C529.163 113.558 527.621 120.998 527.621 129.71V129.857C527.621 138.618 529.163 146.131 532.247 152.396C535.379 158.613 539.882 163.385 545.756 166.713C551.629 169.993 558.678 171.632 566.901 171.632Z" fill="black"/> -<path d="M648.727 170.751C650.832 170.751 652.79 170.653 654.601 170.458C656.461 170.311 658.027 170.115 659.3 169.87V154.012C658.419 154.11 657.538 154.207 656.657 154.305C655.825 154.354 654.821 154.379 653.647 154.379C650.122 154.379 647.528 153.596 645.864 152.029C644.249 150.414 643.441 147.771 643.441 144.1V106.069H659.3V89.9169H643.441V70.6811H621.783V89.9169H609.962V106.069H621.783V148.065C621.783 156.141 623.912 161.941 628.17 165.465C632.477 168.989 639.33 170.751 648.727 170.751Z" fill="black"/> -</g> -<defs> -<clipPath id="clip0_463_526"> -<rect width="659" height="220" fill="white"/> -</clipPath> -<clipPath id="clip1_463_526"> -<rect width="213.353" height="190" fill="white" transform="translate(0 20)"/> -</clipPath> -</defs> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/rss.svg b/smoke/astro.build-main/src/icons/logos/rss.svg deleted file mode 100644 index 5393b62a8..000000000 --- a/smoke/astro.build-main/src/icons/logos/rss.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg width="172" height="220" viewBox="0 0 172 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M18.8994 35H153.101C157.463 35 161 38.5367 161 42.8994V177.101C161 181.463 157.463 185 153.101 185H18.8994C14.5367 185 11 181.463 11 177.101V42.8994C11 38.5367 14.5367 35 18.8994 35ZM32.3317 55.8616C61.1171 55.8616 88.1656 67.0574 108.494 87.3862C128.823 107.715 140.019 134.764 140.019 163.549H118.84C118.84 140.421 109.847 118.691 93.5184 102.362C77.1897 86.0337 55.4598 77.0413 32.3317 77.0413V55.8616ZM32.1121 91.7022V112.882C60.05 112.882 82.7795 135.611 82.7795 163.55H103.959C103.959 123.933 71.7289 91.7022 32.1121 91.7022ZM62.3201 148.969C62.3201 157.346 55.5285 164.138 47.1506 164.138C38.7727 164.138 31.9811 157.346 31.9811 148.969C31.9811 140.591 38.7727 133.799 47.1506 133.799C55.5285 133.799 62.3201 140.591 62.3201 148.969Z" fill="black"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/sass.svg b/smoke/astro.build-main/src/icons/logos/sass.svg deleted file mode 100644 index d7edb706d..000000000 --- a/smoke/astro.build-main/src/icons/logos/sass.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg width="254" height="221" viewBox="0 0 254 221" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M218.147 125.186C209.308 125.232 201.627 127.361 195.195 130.507C192.835 125.834 190.475 121.669 190.058 118.615C189.596 115.052 189.04 112.877 189.596 108.62C190.151 104.363 192.65 98.301 192.603 97.8382C192.557 97.3755 192.048 95.2006 186.958 95.1544C181.868 95.1081 177.472 96.1261 176.963 97.468C176.454 98.81 175.482 101.864 174.834 105.011C173.955 109.638 164.654 126.158 159.333 134.811C157.62 131.433 156.14 128.471 155.816 126.111C155.353 122.548 154.798 120.374 155.353 116.116C155.908 111.859 158.407 105.797 158.361 105.335C158.315 104.872 157.806 102.697 152.715 102.651C147.625 102.604 143.229 103.622 142.72 104.964C142.211 106.306 141.656 109.453 140.592 112.507C139.527 115.561 127.172 143.14 123.933 150.266C122.267 153.922 120.833 156.837 119.815 158.827C119.815 158.827 119.769 158.966 119.63 159.197C118.751 160.909 118.242 161.835 118.242 161.835C118.242 161.835 118.242 161.835 118.242 161.881C117.547 163.13 116.807 164.287 116.437 164.287C116.159 164.287 115.65 160.956 116.529 156.421C118.38 146.842 122.776 131.942 122.73 131.433C122.73 131.155 123.563 128.564 119.861 127.222C116.252 125.88 114.956 128.101 114.632 128.101C114.308 128.101 114.077 128.888 114.077 128.888C114.077 128.888 118.103 112.137 106.395 112.137C99.0842 112.137 88.9965 120.142 83.999 127.361C80.8524 129.073 74.1427 132.729 66.9702 136.662C64.2401 138.189 61.4174 139.716 58.7798 141.15C58.5947 140.965 58.4096 140.734 58.2245 140.549C44.0647 125.417 17.8738 114.728 18.9844 94.414C19.4008 87.0102 21.9459 67.5752 69.2839 43.9756C108.246 24.772 139.25 30.0935 144.618 41.8933C152.299 58.7369 128.005 90.018 87.7472 94.5528C72.3843 96.2649 64.3326 90.3419 62.2966 88.1207C60.168 85.8071 59.8441 85.6682 59.0574 86.131C57.7618 86.8251 58.5947 88.9074 59.0574 90.1105C60.2605 93.2571 65.2118 98.81 73.5874 101.54C80.9912 103.946 98.9917 105.288 120.787 96.8665C145.173 87.4266 164.238 61.1894 158.639 39.2094C153.039 16.9055 116.02 9.54793 80.9912 21.9956C60.168 29.3994 37.5864 41.0603 21.3443 56.2381C2.04818 74.2849 -1.00589 89.9717 0.243501 96.5426C4.73205 119.865 36.8923 135.042 49.7564 146.287C49.1086 146.657 48.507 146.981 47.998 147.259C41.566 150.451 17.0409 163.269 10.9327 176.828C3.99168 192.19 12.0433 203.204 17.3648 204.684C33.8845 209.265 50.867 201.029 59.9829 187.424C69.0988 173.82 67.9883 156.143 63.7774 148.045C63.7311 147.953 63.6848 147.86 63.5923 147.768C65.2581 146.796 66.9702 145.778 68.6361 144.806C71.9215 142.863 75.1607 141.058 77.9371 139.577C76.3638 143.881 75.207 149.017 74.6517 156.421C73.9576 165.12 77.5207 176.411 82.1943 180.853C84.2766 182.797 86.7291 182.843 88.3024 182.843C93.7627 182.843 96.2152 178.308 98.9454 172.941C102.277 166.37 105.285 158.734 105.285 158.734C105.285 158.734 101.537 179.373 111.717 179.373C115.419 179.373 119.167 174.56 120.833 172.108C120.833 172.154 120.833 172.154 120.833 172.154C120.833 172.154 120.925 172.015 121.111 171.691C121.481 171.09 121.712 170.719 121.712 170.719C121.712 170.719 121.712 170.673 121.712 170.627C123.193 168.035 126.525 162.159 131.476 152.395C137.862 139.808 144.016 124.075 144.016 124.075C144.016 124.075 144.571 127.916 146.469 134.302C147.579 138.05 149.893 142.168 151.744 146.148C150.263 148.23 149.338 149.387 149.338 149.387C149.338 149.387 149.337 149.387 149.384 149.433C148.181 151.007 146.885 152.719 145.451 154.385C140.407 160.4 134.391 167.295 133.558 169.285C132.586 171.645 132.818 173.357 134.669 174.745C136.011 175.763 138.417 175.902 140.869 175.763C145.404 175.439 148.597 174.329 150.17 173.635C152.623 172.755 155.492 171.413 158.176 169.424C163.127 165.768 166.135 160.539 165.857 153.644C165.718 149.85 164.469 146.055 162.942 142.492C163.405 141.845 163.821 141.197 164.284 140.549C172.104 129.119 178.166 116.579 178.166 116.579C178.166 116.579 178.721 120.42 180.619 126.806C181.544 130.045 183.441 133.562 185.107 136.986C177.75 142.955 173.215 149.896 171.595 154.431C168.68 162.853 170.947 166.647 175.251 167.526C177.194 167.943 179.971 167.017 182.007 166.138C184.598 165.305 187.652 163.871 190.567 161.742C195.519 158.087 200.285 152.997 200.007 146.102C199.868 142.955 199.036 139.855 197.879 136.847C204.126 134.256 212.177 132.821 222.45 134.024C244.476 136.616 248.826 150.359 247.993 156.143C247.16 161.927 242.533 165.074 241.006 166.046C239.479 167.017 238.97 167.341 239.109 168.035C239.294 169.054 240.034 169.007 241.33 168.822C243.134 168.498 252.898 164.148 253.315 153.506C254.009 139.901 241.052 125.047 218.147 125.186ZM48.2294 182.473C40.9181 190.432 30.7379 193.44 26.3419 190.895C21.622 188.165 23.4729 176.411 32.45 167.989C37.9103 162.853 44.9439 158.087 49.6176 155.171C50.6819 154.524 52.2552 153.598 54.1524 152.441C54.4763 152.256 54.6614 152.164 54.6614 152.164C55.0316 151.932 55.4018 151.701 55.772 151.469C59.0574 163.501 55.9108 174.097 48.2294 182.473ZM101.444 146.287C98.8991 152.488 93.5776 168.359 90.3385 167.48C87.5621 166.74 85.8499 154.709 89.7832 142.816C91.773 136.847 95.9839 129.721 98.4364 126.944C102.416 122.502 106.812 121.021 107.876 122.826C109.218 125.186 103.017 142.4 101.444 146.287ZM145.358 167.295C144.294 167.85 143.276 168.221 142.813 167.943C142.489 167.758 143.276 167.017 143.276 167.017C143.276 167.017 148.782 161.094 150.957 158.411C152.206 156.837 153.687 154.986 155.261 152.904C155.261 153.089 155.261 153.32 155.261 153.506C155.261 160.585 148.412 165.352 145.358 167.295ZM179.23 159.567C178.444 159.012 178.583 157.161 181.22 151.377C182.238 149.11 184.644 145.315 188.763 141.659C189.225 143.14 189.549 144.575 189.503 145.917C189.457 154.847 183.071 158.179 179.23 159.567Z" fill="#222222"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/sentry.svg b/smoke/astro.build-main/src/icons/logos/sentry.svg deleted file mode 100644 index ddfe5f4e9..000000000 --- a/smoke/astro.build-main/src/icons/logos/sentry.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg width="163" height="49" viewBox="0 0 163 49" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M29.9396 10.3183C29.6364 9.81513 29.2083 9.3989 28.6969 9.10996C28.1855 8.82102 27.608 8.66919 27.0206 8.66919C26.4332 8.66919 25.8558 8.82102 25.3444 9.10996C24.8329 9.3989 24.4049 9.81513 24.1017 10.3183L19.3001 18.5423C22.9683 20.3737 26.0937 23.1328 28.3659 26.5456C30.6381 29.9583 31.9781 33.9061 32.2528 37.9969H28.8815C28.6073 34.4903 27.4222 31.1162 25.4435 28.2082C23.4648 25.3003 20.761 22.9595 17.5998 21.4174L13.1558 29.1015C14.9329 29.8985 16.4811 31.1295 17.6581 32.6814C18.835 34.2332 19.6029 36.0561 19.8912 37.9823H12.1488C12.0569 37.9758 11.9682 37.9466 11.8905 37.8972C11.8128 37.8478 11.7486 37.7799 11.7037 37.6995C11.6588 37.6192 11.6346 37.5289 11.6333 37.4369C11.6321 37.3448 11.6537 37.2539 11.6963 37.1723L13.8417 33.5237C13.1149 32.9172 12.2842 32.4475 11.3898 32.1372L9.26632 35.7858C9.04525 36.165 8.90173 36.5843 8.84411 37.0195C8.78648 37.4546 8.81589 37.8968 8.93063 38.3205C9.04538 38.7442 9.24316 39.1408 9.5125 39.4874C9.78183 39.8339 10.1174 40.1235 10.4996 40.3393C11.0031 40.6231 11.5707 40.7738 12.1488 40.7772H22.7517C22.9486 38.3472 22.5147 35.9076 21.4919 33.6946C20.4692 31.4816 18.8922 29.5702 16.9139 28.1456L18.5996 25.2266C21.0963 26.9414 23.1027 29.2777 24.4208 32.0047C25.7389 34.7318 26.3231 37.7554 26.1158 40.7772H35.0988C35.3079 36.1996 34.3121 31.6472 32.2107 27.5751C30.1093 23.5029 26.976 20.0536 23.1239 17.5718L26.5317 11.7339C26.6077 11.6067 26.7308 11.5146 26.8743 11.4777C27.0178 11.4408 27.17 11.4621 27.2979 11.5369C27.6847 11.7485 42.1042 36.9096 42.3742 37.2015C42.4217 37.2868 42.4459 37.3831 42.4443 37.4808C42.4427 37.5784 42.4153 37.6739 42.365 37.7576C42.3146 37.8413 42.2431 37.9102 42.1576 37.9573C42.072 38.0045 41.9756 38.0282 41.8779 38.0261H38.4044C38.4482 38.9553 38.4482 39.882 38.4044 40.8064H41.8925C42.3355 40.8093 42.7746 40.7243 43.1844 40.5563C43.5943 40.3884 43.9668 40.1408 44.2803 39.828C44.5939 39.5151 44.8422 39.1432 45.0111 38.7337C45.1799 38.3242 45.2658 37.8852 45.2639 37.4423C45.2643 36.8573 45.1081 36.2828 44.8115 35.7785L29.9396 10.3183ZM99.4974 29.3058L88.7266 15.3972H86.0412V34.0418H88.7631V19.7537L99.8404 34.0418H102.219V15.3972H99.4974V29.3058ZM72.3733 25.8469H82.0277V23.4242H72.3661V17.8126H83.2609V15.3899H69.5931V34.0418H83.3996V31.6191H72.3661L72.3733 25.8469ZM61.0187 23.4826C57.2606 22.5777 56.2098 21.8626 56.2098 20.1258C56.2098 18.5642 57.589 17.5061 59.6469 17.5061C61.5209 17.561 63.3284 18.2129 64.806 19.3669L66.2655 17.3018C64.3949 15.8354 62.0743 15.0618 59.6979 15.1126C56.0055 15.1126 53.4296 17.3018 53.4296 20.4177C53.4296 23.7745 55.6188 24.9347 59.6031 25.9053C63.1496 26.7226 64.2369 27.4815 64.2369 29.1818C64.2369 30.882 62.7774 31.9329 60.5225 31.9329C58.2777 31.9226 56.1176 31.0742 54.4658 29.5539L52.8239 31.5169C54.9396 33.3348 57.6382 34.3319 60.4277 34.3264C64.4266 34.3264 66.9952 32.1737 66.9952 28.8461C66.9733 26.0293 65.3096 24.5188 61.0187 23.4826ZM151.586 15.3972L145.974 24.1539L140.399 15.3972H137.144L144.507 26.6715V34.0491H147.309V26.5839L154.723 15.3972H151.586ZM104.423 17.922H110.531V34.0491H113.333V17.922H119.441V15.3972H104.43L104.423 17.922ZM132.401 26.7664C135.218 25.9856 136.779 24.0153 136.779 21.1985C136.779 17.6156 134.16 15.3607 129.934 15.3607H121.645V34.0345H124.418V27.3356H129.124L133.853 34.0491H137.093L131.985 26.8831L132.401 26.7664ZM124.41 24.942V17.8637H129.643C132.372 17.8637 133.933 19.1553 133.933 21.3956C133.933 23.6358 132.262 24.942 129.672 24.942H124.41Z" fill="#362D59"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/seo.svg b/smoke/astro.build-main/src/icons/logos/seo.svg deleted file mode 100644 index d5982e26f..000000000 --- a/smoke/astro.build-main/src/icons/logos/seo.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg width="220" height="220" viewBox="0 0 220 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M146.666 55L167.658 75.9917L122.925 120.725L86.258 84.0583L18.333 152.075L31.258 165L86.258 110L122.925 146.667L180.675 89.0083L201.666 110V55H146.666Z" fill="black"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/shopify.svg b/smoke/astro.build-main/src/icons/logos/shopify.svg deleted file mode 100644 index 691c32193..000000000 --- a/smoke/astro.build-main/src/icons/logos/shopify.svg +++ /dev/null @@ -1,19 +0,0 @@ -<svg width="663" height="220" viewBox="0 0 663 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0_640_501)"> -<path d="M229.369 120.655C223.724 117.525 220.753 114.992 220.753 111.416C220.753 106.796 224.763 103.965 231.151 103.965C238.579 103.965 245.115 107.094 245.115 107.094L250.315 91.149C250.315 91.149 245.561 87.4235 231.448 87.4235C211.839 87.4235 198.172 98.749 198.172 114.545C198.172 123.486 204.56 130.341 213.028 135.259C219.861 139.133 222.238 141.965 222.238 145.988C222.238 150.31 218.821 153.737 212.433 153.737C202.926 153.737 194.013 148.82 194.013 148.82L188.516 164.765C188.516 164.765 196.835 170.278 210.651 170.278C230.854 170.278 245.264 160.294 245.264 142.412C245.561 132.576 238.133 125.722 229.369 120.655Z" fill="black"/> -<path d="M309.885 87.1255C299.932 87.1255 292.207 91.8941 286.116 99.0471L285.819 98.898L294.435 53.5961H271.855L250.018 168.788H272.449L279.877 129.447C282.848 114.545 290.424 105.455 297.555 105.455C302.606 105.455 304.537 108.882 304.537 113.8C304.537 116.929 304.24 120.655 303.497 123.784L295.03 168.937H317.461L326.226 122.443C327.266 117.525 327.86 111.714 327.86 107.69C328.157 94.7255 321.621 87.1255 309.885 87.1255Z" fill="black"/> -<path d="M378.963 87.1255C351.926 87.1255 333.951 111.565 333.951 138.835C333.951 156.271 344.647 170.427 364.851 170.427C391.442 170.427 409.268 146.584 409.268 118.718C409.417 102.475 400.058 87.1255 378.963 87.1255ZM367.97 152.992C360.245 152.992 357.126 146.435 357.126 138.239C357.126 125.274 363.811 104.263 375.992 104.263C384.014 104.263 386.54 111.118 386.54 117.824C386.54 131.831 379.855 152.992 367.97 152.992Z" fill="black"/> -<path d="M466.908 87.1255C451.755 87.1255 443.139 100.537 443.139 100.537H442.842L444.179 88.4667H424.273C423.233 96.6627 421.45 109.031 419.668 118.42L404.069 200.678H426.501L432.74 167.298H433.186C433.186 167.298 437.791 170.278 446.407 170.278C472.85 170.278 490.083 143.157 490.083 115.737C490.083 100.686 483.398 87.1255 466.908 87.1255ZM445.516 153.439C439.722 153.439 436.306 150.161 436.306 150.161L440.02 129.149C442.694 115.141 449.973 105.753 457.698 105.753C464.531 105.753 466.611 112.161 466.611 118.122C466.611 132.576 457.995 153.439 445.516 153.439Z" fill="black"/> -<path d="M522.17 54.7883C515.04 54.7883 509.246 60.451 509.246 67.902C509.246 74.6079 513.406 79.2275 519.793 79.2275H520.091C527.073 79.2275 533.163 74.4588 533.312 66.1138C533.461 59.4079 529.004 54.7883 522.17 54.7883Z" fill="black"/> -<path d="M490.676 168.788H513.257L528.558 88.9138H505.829L490.676 168.788Z" fill="black"/> -<path d="M585.603 88.7647H570.005L570.748 85.0392C572.085 77.2902 576.541 70.4353 584.118 70.4353C588.129 70.4353 591.248 71.6275 591.248 71.6275L595.705 54.0432C595.705 54.0432 591.843 52.1059 583.524 52.1059C575.502 52.1059 567.628 54.3412 561.537 59.5569C553.813 66.1137 550.247 75.502 548.465 85.0392L547.87 88.7647H537.472L534.203 105.753H544.602L532.718 168.788H555.15L567.034 105.753H582.484L585.603 88.7647Z" fill="black"/> -<path d="M639.677 88.9138C639.677 88.9138 625.564 124.38 619.325 143.753H619.028C618.582 137.494 613.531 88.9138 613.531 88.9138H589.911L603.43 162.231C603.727 163.871 603.578 164.914 602.984 165.957C600.31 171.024 596.002 175.941 590.802 179.518C586.643 182.647 581.889 184.584 578.175 185.926L584.415 205C589.02 203.957 598.379 200.231 606.401 192.78C616.651 183.094 626.158 168.341 635.815 148.075L663.297 88.9138H639.677Z" fill="black"/> -<path d="M111.119 37.0549C111.119 37.0549 109.039 37.651 105.623 38.6942C105.028 36.7569 104.137 34.5216 102.949 32.1373C99.0862 24.6863 93.2925 20.6628 86.459 20.6628C86.0134 20.6628 85.5677 20.6628 84.9735 20.8118C84.8249 20.5138 84.5278 20.3647 84.3793 20.0667C81.4082 16.7883 77.5457 15.2981 72.9405 15.4471C64.0272 15.7451 55.114 22.153 47.9833 33.6275C42.9325 41.6745 39.07 51.8079 38.0302 59.7059C27.7799 62.8353 20.6493 65.0706 20.5007 65.2197C15.3013 66.8589 15.1527 67.0079 14.5585 71.9255C14.1128 75.651 0.445801 180.561 0.445801 180.561L112.753 200.082V36.9059C111.862 36.9059 111.416 37.0549 111.119 37.0549ZM85.122 45.102C79.1798 46.8902 72.6434 48.9765 66.2556 50.9138C68.0382 43.9098 71.6035 36.9059 75.7631 32.2863C77.3972 30.6471 79.6255 28.7098 82.1509 27.5177C84.6764 32.8824 85.2706 40.1844 85.122 45.102ZM72.9405 21.5569C75.0203 21.5569 76.803 22.004 78.2885 22.8981C75.9116 24.0902 73.5348 26.0275 71.3064 28.2628C65.6614 34.3726 61.3533 43.9098 59.5706 53C54.2226 54.6393 48.8747 56.2785 43.9724 57.7687C47.2406 43.4628 59.2735 21.8549 72.9405 21.5569ZM55.7082 103.518C56.3024 113.055 81.4082 115.141 82.8937 137.643C83.9336 155.377 73.5348 167.447 58.5307 168.341C40.407 169.533 30.4539 158.804 30.4539 158.804L34.3163 142.412C34.3163 142.412 44.2695 150.012 52.2914 149.416C57.4908 149.118 59.4221 144.796 59.2735 141.816C58.5307 129.298 38.0302 130.043 36.6932 109.478C35.5047 92.1922 46.7949 74.7569 71.7521 73.1177C81.4082 72.5216 86.3105 74.9059 86.3105 74.9059L80.6654 96.3647C80.6654 96.3647 74.2775 93.3844 66.7012 93.9804C55.7082 94.7255 55.5596 101.729 55.7082 103.518ZM91.0642 43.3138C91.0642 38.8432 90.47 32.4353 88.3902 27.0706C95.2238 28.4118 98.492 36.0118 99.9775 40.6314C97.3035 41.3765 94.3324 42.2706 91.0642 43.3138Z" fill="black"/> -<path d="M116.17 199.784L162.816 188.161C162.816 188.161 142.761 52.1059 142.613 51.2118C142.464 50.3177 141.721 49.7216 140.979 49.7216C140.236 49.7216 127.163 49.4236 127.163 49.4236C127.163 49.4236 119.141 41.6745 116.17 38.6942V199.784Z" fill="black"/> -</g> -<defs> -<clipPath id="clip0_640_501"> -<rect width="663" height="190" fill="white" transform="translate(0 15)"/> -</clipPath> -</defs> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/sitemap.svg b/smoke/astro.build-main/src/icons/logos/sitemap.svg deleted file mode 100644 index 6ddda71a0..000000000 --- a/smoke/astro.build-main/src/icons/logos/sitemap.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg width="172" height="220" viewBox="0 0 172 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M64 35V80H79V102.5H34C25.675 102.5 19 109.175 19 117.5V140H4V185H49V140H34V117.5H79V140H64V185H109V140H94V117.5H139V140H124V185H169V140H154V117.5C154 109.175 147.325 102.5 139 102.5H94V80H109V35H64Z" fill="black"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/solid.svg b/smoke/astro.build-main/src/icons/logos/solid.svg deleted file mode 100644 index 6afdc5b77..000000000 --- a/smoke/astro.build-main/src/icons/logos/solid.svg +++ /dev/null @@ -1,10 +0,0 @@ -<svg width="682" height="220" viewBox="0 0 682 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0_463_519)"> -<path d="M4.95809 136.662C11.075 142.619 19.2211 146.038 27.7572 146.232C37.3273 146.232 45.2084 140.603 45.2084 131.033C45.2084 109.078 1.58043 114.426 1.58043 87.4046C1.58043 74.7384 12.8393 64.0425 28.8831 64.0425C37.4604 63.7874 45.8132 66.8065 52.2452 72.4866L48.0232 79.8048C42.777 75.0325 35.9741 72.3314 28.8831 72.2051C17.6243 72.2051 10.5875 79.5234 10.306 87.1231C10.306 107.952 53.934 102.041 53.934 130.751C53.934 143.699 43.8011 154.395 27.4758 154.395C22.3535 154.496 17.2645 153.55 12.5211 151.614C7.77772 149.677 3.47997 146.793 -0.108398 143.136L4.95809 136.662ZM143.16 64.6054C149.032 64.5789 154.85 65.7205 160.276 67.9638C165.702 70.207 170.627 73.507 174.766 77.6718C178.905 81.8366 182.174 86.783 184.382 92.2231C186.591 97.6631 187.696 103.488 187.633 109.359C187.707 115.274 186.616 121.145 184.421 126.637C182.226 132.129 178.971 137.136 174.841 141.37C170.712 145.604 165.788 148.984 160.352 151.315C154.916 153.646 149.075 154.884 143.16 154.958H142.879C136.965 154.884 131.123 153.646 125.687 151.315C120.251 148.984 115.328 145.604 111.198 141.37C107.068 137.136 103.813 132.129 101.618 126.637C99.4234 121.145 98.3321 115.274 98.4065 109.359V109.078C98.38 103.206 99.5216 97.3885 101.765 91.9625C104.008 86.5364 107.308 81.6108 111.473 77.4722C115.638 73.3336 120.584 70.0647 126.024 67.8557C131.464 65.6468 137.289 64.5419 143.16 64.6054V64.6054ZM142.879 147.076C152.579 146.855 161.795 142.79 168.498 135.775C175.202 128.76 178.845 119.369 178.626 109.669V109.359C178.626 88.5304 162.863 72.4866 143.16 72.4866C138.396 72.4929 133.681 73.45 129.292 75.3017C124.902 77.1534 120.927 79.8625 117.598 83.2703C114.268 86.6781 111.653 90.716 109.904 95.1475C108.155 99.579 107.309 104.315 107.414 109.078C107.414 130.47 123.176 146.795 142.879 147.076ZM238.298 66.2942H246.742L246.46 145.951H286.992V153.55H237.735L238.298 66.2942ZM333.716 66.5757H342.16L341.879 154.113H333.435L333.716 66.5757ZM399.017 66.5757H427.165C453.341 66.5757 471.074 82.6196 471.074 110.485C471.074 138.351 453.341 154.113 427.165 154.113H399.017V66.5757ZM426.039 146.513C447.43 146.513 461.786 133.847 462.067 110.485C462.349 87.1231 447.712 74.4569 426.32 74.4569H407.462L407.18 146.513H426.039ZM544.735 154.113C552.016 154.337 559.113 151.804 564.607 147.02C567.335 144.485 569.471 141.381 570.862 137.926C572.254 134.472 572.866 130.754 572.657 127.036V67.6171H555.065V125.741C555.263 128.815 554.253 131.845 552.25 134.185C551.239 135.211 550.02 136.01 548.676 136.53C547.332 137.049 545.892 137.276 544.454 137.197C538.937 137.197 534.912 133.96 532.378 127.486L517.517 135.789C522.396 148.005 531.487 154.113 544.791 154.113H544.735ZM650.174 154.31C659.941 154.31 667.597 151.89 673.086 147.02C675.791 144.645 677.934 141.698 679.36 138.392C680.787 135.087 681.46 131.506 681.333 127.908C681.445 124.889 680.869 121.884 679.65 119.119C678.431 116.354 676.601 113.903 674.296 111.949C669.567 107.896 661.996 104.405 651.581 101.422C647.823 100.576 644.242 99.0803 640.998 97.0027C640.026 96.3249 639.235 95.4185 638.695 94.3633C638.155 93.308 637.883 92.1363 637.902 90.9511C637.868 89.7239 638.132 88.5068 638.671 87.4038C639.21 86.3009 640.009 85.345 640.998 84.618C643.38 82.9179 646.267 82.0746 649.189 82.2255C652.641 81.9929 656.075 82.8883 658.973 84.7768C661.872 86.6654 664.079 89.4447 665.261 92.6962L679.813 84.7306C677.553 79.072 673.538 74.2873 668.357 71.0792C662.791 67.7899 656.412 66.1318 649.949 66.2942C642.299 66.0857 634.838 68.6894 628.979 73.6125C626.2 75.8014 623.968 78.6064 622.458 81.8059C620.949 85.0054 620.204 88.512 620.282 92.0488C620.21 94.9906 620.753 97.915 621.878 100.634C623.002 103.354 624.683 105.808 626.812 107.839C630.734 111.78 637.649 115.242 647.556 118.226C652.027 119.295 656.315 121.021 660.279 123.348C661.319 123.932 662.181 124.788 662.771 125.824C663.362 126.861 663.658 128.039 663.628 129.231C663.621 130.533 663.285 131.813 662.65 132.949C662.015 134.086 661.102 135.044 659.997 135.733C657.241 137.529 653.996 138.424 650.709 138.295C646.778 138.39 642.908 137.308 639.597 135.186C636.287 133.064 633.687 130 632.132 126.388L616.932 134.241C619.433 140.392 623.87 145.559 629.57 148.962C635.803 152.637 642.941 154.49 650.174 154.31" fill="black"/> -</g> -<defs> -<clipPath id="clip0_463_519"> -<rect width="682" height="220" fill="white"/> -</clipPath> -</defs> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/solidjs.svg b/smoke/astro.build-main/src/icons/logos/solidjs.svg deleted file mode 100644 index 278b45d75..000000000 --- a/smoke/astro.build-main/src/icons/logos/solidjs.svg +++ /dev/null @@ -1,10 +0,0 @@ -<svg width="683" height="199" viewBox="0 0 683 199" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0_463_519)"> -<path d="M5.95809 126.662C12.075 132.619 20.2211 136.038 28.7572 136.232C38.3273 136.232 46.2084 130.603 46.2084 121.033C46.2084 99.0778 2.58043 104.426 2.58043 77.4046C2.58043 64.7384 13.8393 54.0425 29.8831 54.0425C38.4604 53.7874 46.8132 56.8065 53.2452 62.4866L49.0232 69.8048C43.777 65.0325 36.9741 62.3314 29.8831 62.2051C18.6243 62.2051 11.5875 69.5234 11.306 77.1231C11.306 97.9519 54.934 92.0411 54.934 120.751C54.934 133.699 44.8011 144.395 28.4758 144.395C23.3535 144.496 18.2645 143.55 13.5211 141.614C8.77772 139.677 4.47997 136.793 0.891602 133.136L5.95809 126.662ZM144.16 54.6054C150.032 54.5789 155.85 55.7205 161.276 57.9638C166.702 60.207 171.627 63.507 175.766 67.6718C179.905 71.8366 183.174 76.783 185.382 82.2231C187.591 87.6631 188.696 93.4882 188.633 99.3593C188.707 105.274 187.616 111.145 185.421 116.637C183.226 122.129 179.971 127.136 175.841 131.37C171.712 135.604 166.788 138.984 161.352 141.315C155.916 143.646 150.075 144.884 144.16 144.958H143.879C137.965 144.884 132.123 143.646 126.687 141.315C121.251 138.984 116.328 135.604 112.198 131.37C108.068 127.136 104.813 122.129 102.618 116.637C100.423 111.145 99.3321 105.274 99.4065 99.3593V99.0778C99.38 93.2065 100.522 87.3885 102.765 81.9625C105.008 76.5364 108.308 71.6108 112.473 67.4722C116.638 63.3336 121.584 60.0647 127.024 57.8557C132.464 55.6468 138.289 54.5419 144.16 54.6054ZM143.879 137.076C153.579 136.855 162.795 132.79 169.498 125.775C176.202 118.76 179.845 109.369 179.626 99.6689V99.3593C179.626 78.5304 163.863 62.4866 144.16 62.4866C139.396 62.4929 134.681 63.45 130.292 65.3017C125.902 67.1534 121.927 69.8625 118.598 73.2703C115.268 76.6781 112.653 80.716 110.904 85.1475C109.155 89.579 108.309 94.3149 108.414 99.0778C108.414 120.47 124.176 136.795 143.879 137.076ZM239.298 56.2942H247.742L247.46 135.951H287.992V143.55H238.735L239.298 56.2942ZM334.716 56.5757H343.16L342.879 144.113H334.435L334.716 56.5757ZM400.017 56.5757H428.165C454.341 56.5757 472.074 72.6196 472.074 100.485C472.074 128.351 454.341 144.113 428.165 144.113H400.017V56.5757ZM427.039 136.513C448.431 136.513 462.786 123.847 463.067 100.485C463.349 77.1231 448.712 64.4569 427.32 64.4569H408.462L408.18 136.513H427.039ZM545.735 144.113C553.016 144.337 560.113 141.804 565.607 137.02C568.335 134.485 570.471 131.381 571.862 127.926C573.254 124.472 573.866 120.754 573.657 117.036V57.6171H556.065V115.741C556.263 118.815 555.253 121.845 553.25 124.185C552.239 125.211 551.02 126.01 549.676 126.53C548.332 127.049 546.892 127.276 545.454 127.197C539.937 127.197 535.912 123.96 533.378 117.486L518.517 125.789C523.396 138.005 532.487 144.113 545.791 144.113H545.735ZM651.174 144.31C660.941 144.31 668.597 141.89 674.086 137.02C676.791 134.645 678.934 131.698 680.36 128.392C681.786 125.087 682.46 121.506 682.333 117.908C682.445 114.889 681.869 111.884 680.65 109.119C679.431 106.354 677.601 103.903 675.296 101.949C670.567 97.8957 662.996 94.4054 652.581 91.4218C648.823 90.5758 645.242 89.0803 641.998 87.0027C641.026 86.3249 640.235 85.4185 639.695 84.3633C639.155 83.308 638.883 82.1363 638.902 80.9511C638.868 79.7239 639.132 78.5068 639.671 77.4038C640.211 76.3009 641.009 75.345 641.998 74.618C644.38 72.9179 647.267 72.0746 650.189 72.2255C653.641 71.9929 657.075 72.8883 659.974 74.7768C662.872 76.6654 665.079 79.4447 666.261 82.6962L680.813 74.7306C678.553 69.072 674.538 64.2873 669.357 61.0792C663.791 57.7899 657.412 56.1318 650.949 56.2942C643.299 56.0857 635.838 58.6894 629.979 63.6125C627.2 65.8014 624.968 68.6063 623.458 71.8059C621.949 75.0054 621.204 78.512 621.282 82.0488C621.21 84.9906 621.753 87.915 622.878 90.6343C624.002 93.3537 625.683 95.8078 627.812 97.8394C631.734 101.78 638.649 105.242 648.556 108.226C653.027 109.295 657.315 111.021 661.279 113.348C662.319 113.932 663.181 114.788 663.771 115.824C664.362 116.861 664.658 118.039 664.628 119.231C664.621 120.533 664.285 121.813 663.65 122.949C663.015 124.086 662.102 125.044 660.997 125.733C658.241 127.529 654.996 128.424 651.709 128.295C647.778 128.39 643.908 127.308 640.597 125.186C637.287 123.064 634.687 120 633.132 116.388L617.932 124.241C620.433 130.392 624.87 135.559 630.57 138.962C636.803 142.637 643.941 144.49 651.174 144.31Z" fill="#222222"/> -</g> -<defs> -<clipPath id="clip0_463_519"> -<rect width="682" height="199" fill="white" transform="translate(0.539062)"/> -</clipPath> -</defs> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/stackblitz.svg b/smoke/astro.build-main/src/icons/logos/stackblitz.svg deleted file mode 100644 index 924761668..000000000 --- a/smoke/astro.build-main/src/icons/logos/stackblitz.svg +++ /dev/null @@ -1,13 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="99" height="20" viewBox="0 0 99 20" fill="currentColor"> -<path d="M6.00084 11.8188H0L10.9693 0L8.01714 8.18289H14.0187L3.04798 20L6.00084 11.8188Z" /> -<path d="M25.0161 13.1569L27.2453 11.8647C27.6492 12.8017 28.3438 13.4316 29.6198 13.4316C30.8476 13.4316 31.1544 12.9471 31.1544 12.5108C31.1544 11.8163 30.5083 11.5418 28.8121 11.0732C27.1322 10.6046 25.4845 9.79716 25.4845 7.63244C25.4845 5.45177 27.326 4.19168 29.2807 4.19168C31.1384 4.19168 32.592 5.08015 33.416 6.74398L31.2354 8.02002C30.8476 7.21234 30.3146 6.71166 29.2807 6.71166C28.473 6.71166 28.0691 7.1154 28.0691 7.56781C28.0691 8.08465 28.3438 8.44012 30.1045 8.97312C31.8168 9.48996 33.739 10.0878 33.739 12.4785C33.739 14.6592 31.9946 15.9514 29.5392 15.9514C27.1645 15.9514 25.6461 14.8206 25.0161 13.1569Z" /> -<path d="M37.778 9.97469V12.834C37.778 13.5286 38.3759 13.593 39.4421 13.5286V15.7254C36.276 16.0485 35.3552 15.0954 35.3552 12.834V9.97469H34.063V7.6486H35.3552V6.11404L37.7782 5.38715V7.6486H39.4423V9.97469H37.778Z" /> -<path d="M48.9398 7.64859V15.7254H46.5168V14.9662C45.9838 15.58 45.192 15.9514 44.1097 15.9514C41.9936 15.9514 40.249 14.0939 40.249 11.6868C40.249 9.2799 41.9936 7.42218 44.1097 7.42218C45.192 7.42218 45.9836 7.79381 46.5168 8.40759V7.64839H48.9398V7.64859ZM46.517 11.6868C46.517 10.4754 45.7093 9.71616 44.5948 9.71616C43.4801 9.71616 42.6725 10.4754 42.6725 11.6868C42.6725 12.8984 43.4801 13.6576 44.5948 13.6576C45.7091 13.6576 46.517 12.8984 46.517 11.6868Z" /> -<path d="M50.3135 11.6868C50.3135 9.2799 52.1387 7.42218 54.5942 7.42218C56.1609 7.42218 57.5503 8.24602 58.245 9.48975L56.1286 10.7175C55.8541 10.152 55.2724 9.8129 54.5619 9.8129C53.5121 9.8129 52.7367 10.5721 52.7367 11.6866C52.7367 12.8012 53.5121 13.5605 54.5619 13.5605C55.2726 13.5605 55.8701 13.2211 56.1286 12.6558L58.245 13.8674C57.5505 15.1273 56.1775 15.9512 54.5942 15.9512C52.1387 15.9514 50.3135 14.0939 50.3135 11.6868Z" /> -<path d="M64.2222 15.7252L61.6376 12.1551V15.7252H59.2144V4.41788H61.6376V11.1861L64.0608 7.64859H66.8874L63.9477 11.687L66.9682 15.7254H64.2222V15.7252Z" /> -<path d="M76.3382 12.4137C76.3382 14.4168 74.7067 15.7252 72.6874 15.7252H67.9385V4.41788H72.3642C74.3353 4.41788 75.9343 5.69392 75.9343 7.64859C75.9343 8.58553 75.5628 9.32858 74.9489 9.86157C75.7888 10.3946 76.3382 11.2667 76.3382 12.4137ZM70.5231 6.84091V8.84385H72.3642C72.9459 8.84385 73.3497 8.42395 73.3497 7.84248C73.3497 7.26101 72.9621 6.84112 72.3642 6.84112H70.5231V6.84091ZM73.7536 12.22C73.7536 11.59 73.3337 11.1378 72.6874 11.1378H70.5231V13.3023H72.6874C73.3337 13.3023 73.7536 12.8499 73.7536 12.22Z" /> -<path d="M77.5498 3.93314H79.9726V15.7252H77.5498V3.93314Z" /> -<path d="M81.5078 5.48384C81.5078 4.69232 82.1701 4.03006 82.9614 4.03006C83.7531 4.03006 84.4154 4.69232 84.4154 5.48384C84.4154 6.27536 83.7531 6.93762 82.9614 6.93762C82.1703 6.93762 81.5078 6.27536 81.5078 5.48384ZM81.75 7.64856H84.1732V15.7253H81.75V7.64856Z" /> -<path d="M89.019 9.97469V12.834C89.019 13.5286 89.6171 13.593 90.6833 13.5286V15.7254C87.5172 16.0485 86.5964 15.0954 86.5964 12.834V9.97469H85.3042V7.6486H86.5964V6.11404L89.0192 5.38715V7.6486H90.6835V9.97469H89.019Z" /> -<path d="M98.2754 13.4639V15.7254H91.814V14.1098L94.8667 9.91005H91.9753V7.64859H98.1136V9.26395L95.0608 13.4639H98.2754Z" /> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/strapi.svg b/smoke/astro.build-main/src/icons/logos/strapi.svg deleted file mode 100644 index 6104f01af..000000000 --- a/smoke/astro.build-main/src/icons/logos/strapi.svg +++ /dev/null @@ -1,6 +0,0 @@ -<svg width="729" height="220" viewBox="0 0 729 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M157.381 43.9719H51.6963V96.9144H103.698C105.551 96.9144 107.054 98.4161 107.054 100.267V151.506H160.736V47.3306C160.737 46.8898 160.651 46.4532 160.483 46.0457C160.314 45.6382 160.067 45.2679 159.756 44.956C159.444 44.644 159.074 44.3965 158.666 44.2276C158.259 44.0588 157.822 43.9719 157.381 43.9719V43.9719Z" fill="black"/> -<path opacity="0.405" fill-rule="evenodd" clip-rule="evenodd" d="M51.6901 43.9719V96.9144H2.11145C1.77834 96.9139 1.45291 96.8144 1.17649 96.6287C0.900062 96.4429 0.685101 96.1793 0.558897 95.8713C0.432692 95.5633 0.400935 95.2248 0.467656 94.8987C0.534377 94.5727 0.696568 94.2737 0.933639 94.0399L51.6901 43.9719ZM109.912 201.629C109.676 201.861 109.377 202.018 109.052 202.08C108.727 202.142 108.391 202.108 108.086 201.98C107.78 201.852 107.52 201.638 107.336 201.363C107.152 201.088 107.054 200.764 107.054 200.434V151.506H160.736L109.912 201.623V201.629Z" fill="black"/> -<path opacity="0.405" d="M51.6895 96.9144H105.378C106.298 96.9144 107.053 97.6622 107.053 98.5877V151.506H55.0511C54.1612 151.506 53.3077 151.152 52.6784 150.524C52.0491 149.895 51.6956 149.042 51.6956 148.153V96.9144H51.6895Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M702.073 40.6316C705.072 43.5981 708.612 45.0752 712.697 45.0752C716.912 45.0752 720.519 43.5981 723.519 40.6316C726.518 37.6652 728.015 34.1716 728.015 30.1326C728.015 26.0997 726.518 22.5694 723.519 19.5416C722.125 18.0816 720.444 16.9247 718.582 16.1433C716.72 15.3618 714.717 14.9726 712.697 15C708.612 15 705.072 16.5139 702.073 19.5355C699.073 22.5694 697.576 26.0936 697.576 30.1387C697.576 34.1716 699.073 37.6652 702.073 40.6316V40.6316ZM376.578 79.3181C376.578 79.6245 376.321 79.882 376.008 79.882H354.936V119.23C354.936 122.509 355.77 124.906 357.427 126.42C359.083 127.934 361.512 128.779 364.702 128.969C367.622 129.147 371.18 129.135 375.382 128.939L375.977 128.908C376.054 128.904 376.131 128.915 376.203 128.942C376.275 128.968 376.341 129.009 376.396 129.062C376.452 129.115 376.496 129.178 376.527 129.249C376.557 129.319 376.572 129.395 376.572 129.472V150.501C376.573 150.64 376.522 150.775 376.429 150.879C376.336 150.983 376.208 151.049 376.069 151.065L375.683 151.107C359.181 152.842 347.507 151.23 340.674 146.278C333.717 141.234 330.245 132.218 330.245 119.23V79.882H314.148C313.998 79.882 313.855 79.8225 313.749 79.7168C313.643 79.611 313.584 79.4676 313.584 79.3181V56.99C313.584 56.6836 313.835 56.4261 314.148 56.4261H330.239V40.8155C330.239 40.3619 330.509 39.9574 330.92 39.7736L354.145 29.679C354.231 29.64 354.325 29.6233 354.42 29.6302C354.514 29.6372 354.605 29.6677 354.684 29.719C354.764 29.7702 354.829 29.8405 354.874 29.9235C354.919 30.0065 354.942 30.0995 354.942 30.1939V56.4261H376.008C376.315 56.4261 376.572 56.6774 376.572 56.99V79.3181H376.578ZM421.36 72.6987C423.654 66.6432 427.451 62.1016 432.746 59.0739C437.969 56.1029 443.875 54.5399 449.885 54.5384C450.198 54.5384 450.456 54.7897 450.456 55.1084V80.7584C450.455 80.8868 450.428 81.0136 450.376 81.1309C450.324 81.2482 450.248 81.3532 450.152 81.4392C450.057 81.5252 449.945 81.5904 449.822 81.6304C449.7 81.6704 449.571 81.6845 449.443 81.6716C442.321 81.0342 435.923 82.5848 430.255 86.3174C424.323 90.2216 421.36 96.7184 421.36 105.802V150.446C421.36 150.52 421.345 150.594 421.316 150.663C421.288 150.732 421.246 150.794 421.193 150.846C421.139 150.899 421.077 150.94 421.007 150.968C420.938 150.996 420.864 151.01 420.789 151.009H397.221C397.071 151.009 396.928 150.95 396.822 150.844C396.716 150.738 396.657 150.595 396.657 150.446V56.9839C396.657 56.6774 396.908 56.42 397.221 56.42H420.789C421.096 56.42 421.354 56.6713 421.354 56.9839V72.6865L421.36 72.6987ZM538.135 56.4261C538.061 56.4253 537.987 56.4393 537.918 56.4673C537.848 56.4953 537.785 56.5367 537.732 56.5891C537.679 56.6416 537.637 56.704 537.608 56.7728C537.58 56.8416 537.565 56.9154 537.565 56.99V67.5932C530.167 58.3813 519.763 53.7784 506.359 53.7784C493.599 53.7784 482.649 58.6019 473.527 68.249C464.399 77.8961 459.835 89.719 459.835 103.718C459.835 117.716 464.399 129.539 473.527 139.186C482.649 148.834 493.599 153.657 506.359 153.657C519.763 153.657 530.161 149.054 537.565 139.848V150.446C537.565 150.752 537.823 151.009 538.135 151.009H561.698C562.011 151.009 562.268 150.758 562.268 150.446V56.9839C562.268 56.9093 562.254 56.8355 562.225 56.7667C562.196 56.6979 562.154 56.6354 562.101 56.583C562.048 56.5305 561.985 56.4891 561.916 56.4612C561.847 56.4332 561.773 56.4192 561.698 56.42H538.135V56.4261ZM492.004 123.012C496.979 127.934 503.292 130.391 510.96 130.391C518.616 130.391 524.965 127.897 530.007 122.914C535.05 117.937 537.565 111.538 537.565 103.718C537.565 95.8971 535.05 89.4984 530.007 84.5155C524.965 79.5387 518.616 77.0442 510.954 77.0442C503.298 77.0442 496.979 79.5387 491.998 84.5216C487.029 89.4984 484.533 95.8971 484.533 103.718C484.533 111.538 487.023 117.968 492.004 123.012V123.012ZM672.051 68.249C662.923 58.6019 651.911 53.7784 639.023 53.7784C625.619 53.7784 615.282 58.3813 608.007 67.5871V56.99C608.007 56.8405 607.947 56.697 607.842 56.5913C607.736 56.4855 607.592 56.4261 607.443 56.4261H583.874C583.724 56.4261 583.581 56.4855 583.475 56.5913C583.369 56.697 583.31 56.8405 583.31 56.99V188.274C583.31 188.586 583.561 188.844 583.874 188.844H607.443C607.749 188.844 608.007 188.586 608.007 188.274V139.848C615.282 149.054 625.619 153.657 639.023 153.657C651.911 153.657 662.923 148.834 672.051 139.186C681.173 129.539 685.737 117.716 685.737 103.718C685.737 89.719 681.173 77.8961 672.051 68.249V68.249ZM615.472 123.012C620.454 127.934 626.766 130.391 634.428 130.391C642.084 130.391 648.433 127.897 653.475 122.914C658.518 117.937 661.039 111.538 661.039 103.718C661.039 95.8971 658.518 89.4984 653.475 84.5155C648.433 79.5387 642.084 77.0442 634.428 77.0442C626.766 77.0442 620.454 79.5387 615.472 84.5216C610.497 89.4984 608.007 95.8971 608.007 103.718C608.007 111.538 610.497 117.968 615.472 123.012V123.012ZM701.011 151.009C700.862 151.009 700.718 150.95 700.612 150.844C700.506 150.738 700.447 150.595 700.447 150.446V56.9839C700.447 56.6774 700.698 56.42 701.011 56.42H724.58C724.893 56.42 725.144 56.6713 725.144 56.9839V150.452C725.144 150.601 725.085 150.745 724.979 150.85C724.873 150.956 724.73 151.015 724.58 151.015H701.011V151.009ZM260.65 89.4371C257.263 87.862 255.576 85.8087 255.576 83.2897C255.576 80.8932 256.625 78.9994 258.736 77.6142C260.84 76.229 263.49 75.5303 266.68 75.5303C272.796 75.5303 277.415 77.89 280.544 82.6032C280.648 82.7633 280.805 82.8816 280.988 82.9376C281.171 82.9936 281.367 82.9837 281.544 82.9097L302.388 73.7958C302.46 73.7635 302.525 73.7165 302.578 73.6577C302.63 73.5989 302.67 73.5298 302.695 73.4547C302.719 73.3796 302.727 73.3002 302.719 73.2217C302.71 73.1432 302.686 73.0674 302.646 72.999C302.406 72.5994 302.161 72.2031 301.91 71.81C298.346 66.2632 293.727 62.1261 287.929 58.9819C281.55 55.5129 274.464 53.7784 266.68 53.7784C256.337 53.7784 247.694 56.4568 240.731 61.8197C233.781 67.1765 230.302 74.5252 230.302 83.8536C230.302 90.0378 231.996 95.1739 235.376 99.2742C238.642 103.289 242.898 106.385 247.724 108.259C252.571 110.147 257.423 111.728 262.275 112.985C267.121 114.247 271.244 115.669 274.624 117.245C278.004 118.82 279.697 120.867 279.697 123.392C279.697 128.816 275.293 131.525 266.49 131.525C258.104 131.525 252.294 128.461 249.062 122.344C248.932 122.086 248.709 121.887 248.437 121.788C248.166 121.689 247.867 121.697 247.602 121.811L226.818 130.912C226.749 130.943 226.686 130.987 226.634 131.042C226.582 131.097 226.542 131.162 226.516 131.233C226.489 131.303 226.478 131.379 226.481 131.454C226.485 131.53 226.503 131.604 226.536 131.672L226.769 132.144C234.032 146.486 247.27 153.657 266.49 153.657C277.464 153.657 286.623 151.04 293.96 145.812C301.303 140.572 304.971 133.1 304.971 123.392C304.971 116.956 303.278 111.6 299.898 107.309C296.711 103.169 292.436 99.9949 287.549 98.1403C282.793 96.3407 277.934 94.8242 272.998 93.5987C268.146 92.3974 264.03 91.0123 260.65 89.431V89.4371Z" fill="black"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/svelte.svg b/smoke/astro.build-main/src/icons/logos/svelte.svg deleted file mode 100644 index f0ad2f26d..000000000 --- a/smoke/astro.build-main/src/icons/logos/svelte.svg +++ /dev/null @@ -1,5 +0,0 @@ -<svg width="822" height="220" viewBox="0 0 822 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M273.281 157.922C265.591 158.117 258.021 155.982 251.566 151.797C245.543 147.819 241.072 141.89 238.904 135.004L252.088 130.145C253.919 134.372 256.91 137.994 260.714 140.591C264.581 143.183 269.15 144.525 273.804 144.437C278.273 144.673 282.684 143.34 286.276 140.671C287.837 139.357 289.071 137.697 289.879 135.824C290.686 133.95 291.046 131.913 290.929 129.876C290.948 127.979 290.508 126.106 289.647 124.416C288.9 122.903 287.923 121.515 286.75 120.301C285.263 118.948 283.576 117.832 281.749 116.993C279.501 115.869 277.65 115.014 276.162 114.429C274.674 113.843 272.49 113.052 269.625 112.071C266.017 110.804 263.294 109.823 261.522 109.095C259.087 108.065 256.724 106.876 254.447 105.534C251.987 104.233 249.753 102.544 247.831 100.532C246.174 98.5649 244.839 96.3482 243.874 93.964C242.01 89.4301 241.618 84.4248 242.754 79.656C243.89 74.8872 246.497 70.5962 250.205 67.3899C255.607 62.6312 262.935 60.2518 272.189 60.2518C279.934 60.2518 286.297 61.9559 291.277 65.364C296.126 68.5828 299.684 73.4081 301.327 78.9914L288.381 83.3122C287.06 80.3834 284.843 77.9501 282.05 76.364C278.697 74.5179 274.905 73.6205 271.081 73.7683C267.321 73.5499 263.595 74.5914 260.493 76.7281C259.226 77.7113 258.217 78.9862 257.55 80.4442C256.883 81.9021 256.578 83.4997 256.663 85.1007C256.674 86.327 256.943 87.5372 257.453 88.6525C257.963 89.7678 258.702 90.7633 259.622 91.5741C261.418 93.3343 263.521 94.7505 265.827 95.7525C267.979 96.6547 271.271 97.8576 275.671 99.3928C278.362 100.39 280.419 101.118 281.67 101.624C282.92 102.131 284.835 102.938 287.399 104.109C289.418 105.006 291.361 106.064 293.208 107.275C294.861 108.467 296.447 109.751 297.956 111.121C299.579 112.534 300.968 114.195 302.071 116.043C303.122 117.963 303.935 120.004 304.493 122.121C305.184 124.599 305.525 127.161 305.506 129.734C305.506 138.555 302.493 145.456 296.468 150.436C290.443 155.416 282.714 157.912 273.281 157.922ZM359.73 156.34L327.363 61.8978H342.463L363.909 127.708C365.092 131.25 366.085 134.854 366.884 138.502C367.669 134.852 368.657 131.248 369.844 127.708L391.021 61.8978H405.993L373.753 156.308L359.73 156.34ZM434.578 156.34V61.8978H493.139V75.1137H448.617V101.007H477.343V114.223H448.617V143.029H496.099V156.245L434.578 156.34ZM531.821 156.34V61.8978H545.86V142.823H591.981V156.308L531.821 156.34ZM644.844 75.4144V156.308H630.821V75.3827H604.12V61.8978H671.513V75.3827L644.844 75.4144ZM700.556 156.34V61.8978H759.117V75.1137H714.579V101.007H743.306V114.223H714.579V143.029H762.061V156.245L700.556 156.34Z" fill="black"/> -<path d="M174.899 43.9338C158.438 20.3827 125.929 13.4029 102.425 28.3755L61.1475 54.6806C55.5764 58.1797 50.796 62.8019 47.1115 68.2523C43.4271 73.7026 40.9196 79.8613 39.749 86.3352C37.7751 97.2619 39.5017 108.535 44.6554 118.37C41.1233 123.728 38.7163 129.748 37.5806 136.065C36.4017 142.682 36.5575 149.468 38.0388 156.023C39.5201 162.579 42.2971 168.773 46.2065 174.24C62.667 197.791 95.1763 204.771 118.68 189.799L159.958 163.604C165.522 160.098 170.298 155.473 173.981 150.024C177.665 144.575 180.176 138.42 181.356 131.95C183.323 121.026 181.591 109.759 176.434 99.9309C179.964 94.5699 182.376 88.5514 183.525 82.236C184.7 75.6189 184.542 68.8338 183.061 62.2784C181.58 55.723 178.805 49.5293 174.899 44.0604" fill="black"/> -<path d="M98.3892 176.519C91.8908 178.206 85.0315 177.858 78.737 175.523C72.4425 173.188 67.0158 168.978 63.1893 163.462C60.8398 160.175 59.1715 156.451 58.2827 152.51C57.3938 148.569 57.3024 144.489 58.0137 140.512C58.2472 139.219 58.5752 137.944 58.995 136.698L59.7706 134.324L61.8914 135.906C66.7664 139.465 72.2087 142.173 77.9878 143.915L79.5705 144.374L79.4281 145.957C79.2758 148.127 79.886 150.282 81.1533 152.05C82.308 153.71 83.9434 154.976 85.8393 155.677C87.7353 156.379 89.8007 156.483 91.7576 155.976C92.6524 155.735 93.506 155.362 94.29 154.868L135.504 128.563C136.517 127.926 137.384 127.084 138.052 126.092C138.72 125.1 139.173 123.979 139.382 122.801C139.593 121.601 139.562 120.371 139.29 119.183C139.018 117.995 138.511 116.874 137.799 115.885C136.645 114.225 135.009 112.96 133.113 112.258C131.217 111.556 129.152 111.452 127.195 111.96C126.299 112.197 125.445 112.571 124.663 113.068L108.835 123.118C106.247 124.759 103.424 125.997 100.463 126.79C93.975 128.466 87.1296 128.115 80.8477 125.783C74.5658 123.451 69.1488 119.251 65.3259 113.748C62.9835 110.458 61.3219 106.733 60.4386 102.792C59.5552 98.8514 59.468 94.7737 60.1821 90.7986C60.881 86.8968 62.3864 83.1839 64.6021 79.8971C66.8178 76.6104 69.695 73.8222 73.0497 71.7108L114.391 45.4058C116.964 43.7677 119.771 42.5296 122.716 41.7338C129.212 40.0464 136.069 40.3938 142.362 42.7289C148.654 45.0641 154.078 49.2746 157.9 54.7914C160.252 58.0771 161.923 61.8002 162.815 65.7416C163.706 69.6829 163.8 73.7628 163.091 77.741C162.844 79.0421 162.517 80.3267 162.11 81.587L161.319 83.9611L159.214 82.3784C154.329 78.7923 148.87 76.0628 143.07 74.3065L141.487 73.8475L141.63 72.2647C141.812 70.0839 141.218 67.9087 139.952 66.1237C138.79 64.4928 137.159 63.2543 135.276 62.5729C133.393 61.8915 131.347 61.7996 129.411 62.3093C128.515 62.5469 127.661 62.9205 126.878 63.4173L85.5849 89.6748C84.5764 90.3122 83.7111 91.1519 83.0436 92.1408C82.3762 93.1298 81.9211 94.2464 81.7072 95.4201C81.5003 96.6229 81.5336 97.8548 81.8053 99.0446C82.077 100.234 82.5815 101.359 83.29 102.353C84.4393 103.997 86.0615 105.253 87.9413 105.954C89.8212 106.655 91.8697 106.768 93.8151 106.278C94.7088 106.034 95.5619 105.661 96.3475 105.17L112.175 95.1353C114.762 93.4759 117.592 92.2316 120.563 91.4475C127.058 89.7561 133.915 90.0999 140.207 92.4324C146.5 94.7649 151.925 98.9735 155.748 104.489C158.098 107.776 159.768 111.499 160.66 115.44C161.551 119.381 161.646 123.461 160.939 127.439C160.24 131.341 158.735 135.054 156.519 138.34C154.303 141.627 151.426 144.415 148.071 146.527L106.778 172.832C104.184 174.478 101.356 175.722 98.3892 176.519" fill="white"/> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/tailwindcss.svg b/smoke/astro.build-main/src/icons/logos/tailwindcss.svg deleted file mode 100644 index 1bde4f873..000000000 --- a/smoke/astro.build-main/src/icons/logos/tailwindcss.svg +++ /dev/null @@ -1,11 +0,0 @@ -<svg width="902" height="220" viewBox="0 0 902 220" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0_638_492)"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M92.3469 53.242C67.5964 53.242 52.1315 65.5988 45.9411 90.3125C55.223 77.9557 66.0506 73.3228 78.424 76.4101C85.4837 78.1712 90.5319 83.2864 96.1149 88.9497C105.215 98.1716 115.748 108.844 138.749 108.844C163.496 108.844 178.964 96.4873 185.151 71.7772C175.873 84.1341 165.045 88.767 152.672 85.6759C145.609 83.9149 140.56 78.7997 134.977 73.1401C125.877 63.9108 115.348 53.242 92.3469 53.242ZM45.9411 108.844C21.1943 108.844 5.72576 121.201 -0.460938 145.915C8.82093 133.558 19.6486 128.925 32.0183 132.012C39.0816 133.773 44.1299 138.888 49.7128 144.552C58.8128 153.774 69.3422 164.446 92.3469 164.446C117.094 164.446 132.562 152.093 138.749 127.379C129.467 139.736 118.639 144.369 106.266 141.282C99.2064 139.517 94.1581 134.402 88.5752 128.742C79.4752 119.52 68.9421 108.844 45.9411 108.844V108.844Z" fill="black"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M277.945 100.101H261.749V131.402C261.749 139.751 267.234 139.619 277.945 139.097V151.75C256.261 154.358 247.641 148.359 247.641 131.402V100.101H235.624V86.5345H247.641V69.0187L261.749 64.8425V86.5345H277.945V100.101ZM339.681 86.5345H353.786V151.75H339.681V142.359C334.717 149.269 327.01 153.445 316.822 153.445C299.059 153.445 284.299 138.446 284.299 119.14C284.299 99.7098 299.059 84.8392 316.822 84.8392C327.01 84.8392 334.717 89.0118 339.681 95.7967V86.5345V86.5345ZM319.044 140.01C330.8 140.01 339.681 131.27 339.681 119.14C339.681 107.01 330.8 98.2739 319.044 98.2739C307.289 98.2739 298.408 107.014 298.408 119.14C298.408 131.27 307.289 140.01 319.044 140.01ZM377.296 76.7536C372.335 76.7536 368.287 72.581 368.287 67.7545C368.299 65.3625 369.253 63.0725 370.942 61.3859C372.63 59.6993 374.915 58.7535 377.296 58.7554C379.678 58.7525 381.964 59.6979 383.653 61.3846C385.342 63.0714 386.297 65.3619 386.309 67.7545C386.309 72.5774 382.261 76.7536 377.296 76.7536ZM370.244 151.75V86.5345H384.352V151.75H370.244ZM400.679 151.75V56.5303H414.784V151.746H400.679V151.75ZM506.348 86.5345H521.238L500.732 151.75H486.886L473.301 107.795L459.586 151.75H445.743L425.233 86.5345H440.123L452.795 131.53L466.511 86.5345H479.964L493.545 131.53L506.348 86.5345V86.5345ZM538.74 76.7536C533.775 76.7536 529.727 72.581 529.727 67.7545C529.738 65.3619 530.693 63.0714 532.383 61.3846C534.072 59.6979 536.358 58.7525 538.74 58.7554C541.121 58.7525 543.407 59.6979 545.097 61.3846C546.786 63.0714 547.741 65.3619 547.752 67.7545C547.752 72.5774 543.704 76.7536 538.74 76.7536ZM531.687 151.75V86.5345H545.792V151.75H531.687V151.75ZM596.471 84.8392C611.1 84.8392 621.549 94.7517 621.549 111.709V151.746H607.444V113.141C607.444 103.228 601.698 98.0145 592.816 98.0145C583.541 98.0145 576.227 103.491 576.227 116.795V151.75H562.119V86.5345H576.227V94.8833C580.537 88.102 587.589 84.8392 596.471 84.8392V84.8392ZM688.424 60.4507H702.533V151.746H688.424V142.356C683.463 149.269 675.756 153.441 665.569 153.441C647.805 153.441 633.046 138.443 633.046 119.137C633.046 99.7061 647.805 84.8356 665.569 84.8356C675.756 84.8356 683.463 89.0081 688.424 95.793V60.4507V60.4507ZM667.787 140.01C679.543 140.01 688.424 131.27 688.424 119.14C688.424 107.01 679.543 98.2739 667.787 98.2739C656.032 98.2739 647.151 107.014 647.151 119.14C647.151 131.27 656.032 140.01 667.787 140.01ZM749.815 153.445C730.091 153.445 715.332 138.446 715.332 119.14C715.332 99.7098 730.091 84.8392 749.815 84.8392C762.614 84.8392 773.718 91.489 778.941 101.665L766.793 108.709C763.92 102.578 757.522 98.6648 749.684 98.6648C738.191 98.6648 729.44 107.404 729.44 119.14C729.44 130.88 738.191 139.619 749.684 139.619C757.522 139.619 763.92 135.575 767.055 129.575L779.203 136.488C773.718 146.791 762.614 153.441 749.815 153.441V153.445ZM802.451 104.533C802.451 116.404 837.589 109.228 837.589 133.36C837.589 146.404 826.223 153.445 812.118 153.445C799.058 153.445 789.652 147.573 785.473 138.183L797.621 131.143C799.709 137.01 804.935 140.533 812.118 140.533C818.389 140.533 823.219 138.446 823.219 133.225C823.219 121.621 788.084 128.143 788.084 104.796C788.084 92.5339 798.665 84.8392 811.987 84.8392C822.699 84.8392 831.58 89.7973 836.152 98.4054L824.266 105.055C821.913 99.9692 817.341 97.6199 811.987 97.6199C806.892 97.6199 802.451 99.8377 802.451 104.533V104.533ZM862.667 104.533C862.667 116.404 897.801 109.228 897.801 133.36C897.801 146.404 886.439 153.445 872.33 153.445C859.27 153.445 849.868 147.573 845.685 138.183L857.833 131.143C859.924 137.01 865.147 140.533 872.33 140.533C878.601 140.533 883.435 138.446 883.435 133.225C883.435 121.621 848.3 128.143 848.3 104.796C848.3 92.5339 858.877 84.8392 872.203 84.8392C882.911 84.8392 891.793 89.7973 896.364 98.4054L884.478 105.055C882.129 99.9692 877.557 97.6199 872.203 97.6199C867.108 97.6199 862.667 99.8377 862.667 104.533V104.533Z" fill="black"/> -</g> -<defs> -<clipPath id="clip0_638_492"> -<rect width="902" height="220" fill="white"/> -</clipPath> -</defs> -</svg> diff --git a/smoke/astro.build-main/src/icons/logos/trivago.svg b/smoke/astro.build-main/src/icons/logos/trivago.svg deleted file mode 100644 index 4cd4ac852..000000000 --- a/smoke/astro.build-main/src/icons/logos/trivago.svg +++ /dev/null @@ -1,15 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="80" height="24" viewBox="0 0 80 24"> - <title>trivago - - - - - - - - \ No newline at end of file diff --git a/smoke/astro.build-main/src/icons/logos/typescript.svg b/smoke/astro.build-main/src/icons/logos/typescript.svg deleted file mode 100644 index aaf07f4d3..000000000 --- a/smoke/astro.build-main/src/icons/logos/typescript.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/smoke/astro.build-main/src/icons/logos/vercel-grid.svg b/smoke/astro.build-main/src/icons/logos/vercel-grid.svg deleted file mode 100644 index 68038a7f0..000000000 --- a/smoke/astro.build-main/src/icons/logos/vercel-grid.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/smoke/astro.build-main/src/icons/logos/vercel.svg b/smoke/astro.build-main/src/icons/logos/vercel.svg deleted file mode 100644 index 511fe50a7..000000000 --- a/smoke/astro.build-main/src/icons/logos/vercel.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/smoke/astro.build-main/src/icons/logos/vue.svg b/smoke/astro.build-main/src/icons/logos/vue.svg deleted file mode 100644 index 25124416a..000000000 --- a/smoke/astro.build-main/src/icons/logos/vue.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/smoke/astro.build-main/src/icons/logos/wordpress.svg b/smoke/astro.build-main/src/icons/logos/wordpress.svg deleted file mode 100644 index 27e8e3b35..000000000 --- a/smoke/astro.build-main/src/icons/logos/wordpress.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/smoke/astro.build-main/src/icons/sponsors/divriots.svg b/smoke/astro.build-main/src/icons/sponsors/divriots.svg deleted file mode 100644 index c6dddc038..000000000 --- a/smoke/astro.build-main/src/icons/sponsors/divriots.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/smoke/astro.build-main/src/icons/sponsors/netlify.svg b/smoke/astro.build-main/src/icons/sponsors/netlify.svg deleted file mode 100644 index 096d51265..000000000 --- a/smoke/astro.build-main/src/icons/sponsors/netlify.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/smoke/astro.build-main/src/icons/sponsors/sentry.svg b/smoke/astro.build-main/src/icons/sponsors/sentry.svg deleted file mode 100644 index ae97a41c9..000000000 --- a/smoke/astro.build-main/src/icons/sponsors/sentry.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/smoke/astro.build-main/src/icons/sponsors/stackup.svg b/smoke/astro.build-main/src/icons/sponsors/stackup.svg deleted file mode 100644 index 207f28b2a..000000000 --- a/smoke/astro.build-main/src/icons/sponsors/stackup.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/smoke/astro.build-main/src/icons/sponsors/vercel.svg b/smoke/astro.build-main/src/icons/sponsors/vercel.svg deleted file mode 100644 index 2863253d2..000000000 --- a/smoke/astro.build-main/src/icons/sponsors/vercel.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/smoke/astro.build-main/src/icons/wordmark-single-color.svg b/smoke/astro.build-main/src/icons/wordmark-single-color.svg deleted file mode 100644 index 18021002c..000000000 --- a/smoke/astro.build-main/src/icons/wordmark-single-color.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/smoke/astro.build-main/src/icons/wordmark.svg b/smoke/astro.build-main/src/icons/wordmark.svg deleted file mode 100644 index 18021002c..000000000 --- a/smoke/astro.build-main/src/icons/wordmark.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/smoke/astro.build-main/src/layouts/Base.astro b/smoke/astro.build-main/src/layouts/Base.astro deleted file mode 100644 index f2d88fa4e..000000000 --- a/smoke/astro.build-main/src/layouts/Base.astro +++ /dev/null @@ -1,68 +0,0 @@ ---- -import { Sprite } from 'astro-icon'; -import BaseHead from '../components/BaseHead.astro'; -import SkipLink from '../components/SkipLink.astro'; -import type { Props as BaseHeadProps } from '../components/BaseHead.astro'; - -export interface Props { - wrapper?: any; - meta: BaseHeadProps; - container?: boolean; - routeId?: string; -} - -const { wrapper: Wrapper = Fragment, meta, container = false, routeId } = Astro.props; ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - - - - - - \ No newline at end of file diff --git a/smoke/astro.build-main/src/layouts/Content.astro b/smoke/astro.build-main/src/layouts/Content.astro deleted file mode 100644 index ad91deefd..000000000 --- a/smoke/astro.build-main/src/layouts/Content.astro +++ /dev/null @@ -1,61 +0,0 @@ ---- -import { Sprite } from 'astro-icon'; -import BaseHead from '../components/BaseHead.astro'; -import SkipLink from '../components/SkipLink.astro'; -import type { Props as BaseHeadProps } from '../components/BaseHead.astro'; -import '../styles/fonts.css'; -import '../styles/variables.css'; -import '../styles/tailwind.css'; - -export interface Props { - meta: BaseHeadProps; - invert?: boolean; - fullscreen?: boolean; -} - -const { meta, invert = false, fullscreen = false } = Astro.props; ---- - - - - - - - - - - - - - - - -
    - -
    - - -
    - - - - - - \ No newline at end of file diff --git a/smoke/astro.build-main/src/layouts/Legal.astro b/smoke/astro.build-main/src/layouts/Legal.astro deleted file mode 100644 index c0c8b8666..000000000 --- a/smoke/astro.build-main/src/layouts/Legal.astro +++ /dev/null @@ -1,39 +0,0 @@ ---- -import Layout from './Content.astro'; -import ProseBlock from '../components/blocks/ProseBlock.astro'; -import TitleBlock from '../components/blocks/TitleBlock.astro'; -import Date from '../components/Date.astro'; -import Footer from '../components/Footer.astro'; -import Nav from '../components/Nav.astro'; -import { Markdown } from 'astro/components'; - -export interface Props { - content: { - header?: string; - title?: string; - description?: string; - updated_date?: string | Date; - } -} - -const { content } = Astro.props as Props; -const { header = '', title = '', description = '', updated_date } = content; ---- - - -
    - -### Install Astro Locally - -Ready to install? - -Get a new project up and running locally in no time with our easy `create-astro` CLI wizard! - -```bash -# run this command in a new directory to get started! -npm init astro -``` - -⚙️ Our [Installation Guide](/en/installation) has full, step-by-step instructions for installing Astro with your favourite package manager. - -⚙️ See instructions for [manual setup](/en/guides/manual-setup) instead. - - -## Start building with Astro - -Jump right in and add some content and features to your site! - -🏗️ Add new [Astro (.astro) pages](/en/core-concepts/astro-pages) and/or [Markdown (.md) pages](/en/guides/markdown-content) to your site. - -🏗️ Create your first [Layout](/en/core-concepts/layouts). - -🏗️ Add additional [CSS and styling](/en/guides/styling) to your site. - -*... and even more Guides under **Learn*** - - - -## Learn Astro - -See examples of some of the key concepts and patterns of an Astro site! - -📚 Read more about Astro’s [project structure.](/en/core-concepts/project-structure) - -📚 Learn more about Astro’s [built-in components.](/en/reference/builtin-components) - -📚 Explore Astro’s [API.](/en/reference/api-reference) - -*... and even more reference material under **API*** - -## Integrate with Astro - -Explore different integrations that our users have combined with Astro! - -🧰 Use a CMS with your Astro project. - -🧰 Set up eCommerce. - -🧰 Connect a database to your site. - -*... see our [third-party integrations](/en/integrations/integrations)* - - - -## Join our Community - -Join us in the [Astro Discord](https://astro.build/chat) to share with and get help from an active, friendly community! - -💬 Say hi in our `#introduce-yourself` channel! - -💬 Ask our Support Squad a question in our `#support` channel! - -💬 Share what you've been working on in our `#showcase` channel! - - -## Learn More - -[Astro Blog](https://astro.build/blog/) - -[Astro changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md) - -[Astro Migration Guide](/en/migrate) (for upgrading to v0.21+) diff --git a/smoke/docs-main/src/pages/en/guides/aliases.md b/smoke/docs-main/src/pages/en/guides/aliases.md deleted file mode 100644 index 30a94f8b7..000000000 --- a/smoke/docs-main/src/pages/en/guides/aliases.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -layout: ~/layouts/MainLayout.astro -title: Aliases -description: An intro to aliases with Astro. ---- - -An **alias** is a way to create shortcuts for your imports. - -Aliases can help improve the development experience in codebases with many directories or relative imports. - -```astro ---- -// my-project/src/pages/about/company.astro - -import Button from '../../components/controls/Button.astro'; -import logoUrl from '../../assets/logo.png?url'; ---- -``` - -In this example, a developer would need to understand the tree relationship between `src/pages/about/company.astro`, `src/components/controls/Button.astro`, and `src/assets/logo.png`. And then, if the `company.astro` file were to be moved, these imports would also need to be updated. - -You can add import aliases from either `tsconfig.json` or `jsconfig.json`. - -```json -{ - "compilerOptions": { - "baseUrl": ".", - "paths": { - "@components/*": ["src/components/*"] - } - } -} -``` - -With this change, you can now import using the aliases anywhere in your project: - -```astro ---- -// my-project/src/pages/about/company.astro - -import Button from '@components/Button'; -import logoUrl from '@assets/logo.png'; ---- -``` - -These aliases are also integrated automatically into [VSCode](https://code.visualstudio.com/docs/languages/jsconfig) and other editors. diff --git a/smoke/docs-main/src/pages/en/guides/data-fetching.md b/smoke/docs-main/src/pages/en/guides/data-fetching.md deleted file mode 100644 index a0481f059..000000000 --- a/smoke/docs-main/src/pages/en/guides/data-fetching.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -layout: ~/layouts/MainLayout.astro -title: Data Fetching -description: Learn how to fetch remote data with Astro using the fetch API. ---- - -Astro components and pages can fetch remote data to help generate your pages. Astro provides two different tools to pages to help you do this: **fetch()** and **top-level await.** - -## `fetch()` - -Astro pages have access to the global `fetch()` function in their setup script. `fetch()` is a native JavaScript API ([MDN- fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch)) that lets you make HTTP requests for things like APIs and resources. - -Even though Astro component scripts run inside of Node.js (and not in the browser) Astro provides this native API so that you can fetch data at page build time. - -```astro ---- -// Movies.astro -const response = await fetch('https://example.com/movies.json'); -const data = await response.json(); -// Remember: Astro component scripts log to the CLI -console.log(data); ---- - -
    {JSON.stringify(data)}
    -``` - -## Top-level await - -`await` is another native JavaScript feature that lets you await the response of some asynchronous promise ([MDN- await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)). Astro supports `await` in the top-level of your component script. - -**Important:** These are not yet available inside of non-page Astro components. Instead, do all of your data loading inside of your pages, and then pass them to your components as props. - -## Using `fetch()` outside of Astro Components - -If you want to use `fetch()` in a non-astro component, it is also globally available: - -```tsx -// Movies.tsx -import type { FunctionalComponent } from 'preact'; -import { h } from 'preact'; - -const data = fetch('https://example.com/movies.json').then((response) => - response.json() -); - -// Components that are build-time rendered also log to the CLI. -// If you loaded this component with a directive, it would log to the browser console. -console.log(data); - -const Movies: FunctionalComponent = () => { - // Output the result to the page - return
    {JSON.stringify(data)}
    ; -}; - -export default Movies; -``` diff --git a/smoke/docs-main/src/pages/en/guides/debugging.md b/smoke/docs-main/src/pages/en/guides/debugging.md deleted file mode 100644 index 786070267..000000000 --- a/smoke/docs-main/src/pages/en/guides/debugging.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: ~/layouts/MainLayout.astro -title: Debugging -description: Debug in Astro using the Debug component ---- - -Astro runs on the server and logs directly to your terminal, so it can be difficult to debug values from Astro. Astro’s built-in `` component can help you inspect values inside your files on the clientside. Read more about the [built-in Debug Component](/en/reference/builtin-components#debug-). diff --git a/smoke/docs-main/src/pages/en/guides/deploy.md b/smoke/docs-main/src/pages/en/guides/deploy.md deleted file mode 100644 index cb82ae33a..000000000 --- a/smoke/docs-main/src/pages/en/guides/deploy.md +++ /dev/null @@ -1,528 +0,0 @@ ---- -layout: ~/layouts/MainLayout.astro -title: Deploy a Website -description: Multiple different methods to deploy a website with Astro. ---- - -The following guides are based on some shared assumptions: - -- You are using the default build output location (`dist/`). This location [can be changed using the `dist` configuration option](/en/reference/configuration-reference). -- You are using npm. You can use equivalent commands to run the scripts if you are using Yarn or other package managers. -- Astro is installed as a local dev dependency in your project, and you have set up the following npm scripts: - -```json -{ - "scripts": { - "start": "astro dev", - "build": "astro build", - "preview": "astro preview" - } -} -``` - -## Building The App - -You may run `npm run build` command to build the app. - -```bash -$ npm run build -``` - -By default, the build output will be placed at `dist/`. You may deploy this `dist/` folder to any of your preferred platforms. - -## GitHub Pages - -> **Warning:** By default, Github Pages will break the `_astro/` directory of your deployed website. To disable this behavior and fix this issue, make sure that you use the `deploy.sh` script below or manually add an empty `.nojekyll` file to your `public/` site directory. - -1. Set the correct `buildOptions.site` in `astro.config.mjs`. -1. Inside your project, create `deploy.sh` with the following content (uncommenting the appropriate lines), and run it to deploy: - - ```bash - #!/usr/bin/env sh - - # abort on errors - set -e - - # build - npm run build - - # navigate into the build output directory - cd dist - - # add .nojekyll to bypass GitHub Page’s default behavior - touch .nojekyll - - # if you are deploying to a custom domain - # echo 'www.example.com' > CNAME - - git init - git add -A - git commit -m 'deploy' - - # if you are deploying to https://.github.io - # git push -f git@github.com:/.github.io.git main - - # if you are deploying to https://.github.io/ - # git push -f git@github.com:/.git main:gh-pages - - cd - - ``` - - > You can also run the above script in your CI setup to enable automatic deployment on each push. - -### GitHub Actions - -1. In the astro project repo, create `gh-pages` branch then go to Settings > Pages and set to `gh-pages` branch for GitHub Pages and set directory to `/` (root). -2. Set the correct `buildOptions.site` in `astro.config.mjs`. -3. Create the file `.github/workflows/main.yml` and add in the yaml below. Make sure to edit in your own details. -4. In GitHub go to Settings > Developer settings > Personal Access tokens. Generate a new token with repo permissions. -5. In the astro project repo (not \.github.io) go to Settings > Secrets and add your new personal access token with the name `API_TOKEN_GITHUB`. -6. When you push changes to the astro project repo CI will deploy them to \.github.io for you. - -```yaml -# Workflow to build and deploy to your GitHub Pages repo. - -# Edit your project details here. -# Remember to add API_TOKEN_GITHUB in repo Settings > Secrets as well! -env: - githubEmail: - deployToRepo: .github.io)> - -name: Github Pages Astro CI - -on: - # Triggers the workflow on push and pull request events but only for the main branch - push: - branches: [main] - pull_request: - branches: [main] - - # Allows you to run this workflow manually from the Actions tab. - workflow_dispatch: - -jobs: - deploy: - runs-on: ubuntu-latest - - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - # Install dependencies with npm - - name: Install dependencies - run: npm ci - - # Build the project and add .nojekyll file to supress default behaviour - - name: Build - run: | - npm run build - touch ./dist/.nojekyll - - # Push to your pages repo - - name: Push to pages repo - uses: cpina/github-action-push-to-another-repository@main - env: - API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} - with: - source-directory: 'dist' - destination-github-username: ${{ github.actor }} - destination-repository-name: ${{ env.deployToRepo }} - user-email: ${{ env.githubEmail }} - commit-message: Deploy ORIGIN_COMMIT - target-branch: gh-pages -``` - -### Travis CI - -1. Set the correct `buildOptions.site` in `astro.config.mjs`. -2. Create a file named `.travis.yml` in the root of your project. -3. Run `npm install` locally and commit the generated lockfile (`package-lock.json`). -4. Use the GitHub Pages deploy provider template, and follow the [Travis CI documentation](https://docs.travis-ci.com/user/deployment/pages/). - - ```yaml - language: node_js - node_js: - - lts/* - install: - - npm ci - script: - - npm run build - deploy: - provider: pages - skip_cleanup: true - local_dir: dist - # A token generated on GitHub allowing Travis to push code on you repository. - # Set in the Travis settings page of your repository, as a secure variable. - github_token: $GITHUB_TOKEN - keep_history: true - on: - branch: master - ``` - -## GitLab Pages - -1. Set the correct `buildOptions.site` in `astro.config.mjs`. -2. Set `dist` in `astro.config.mjs` to `public` and `public` in `astro.config.mjs` to a newly named folder that is holding everything currently in `public`. The reasoning is because `public` is a second source folder in astro, so if you would like to output to `public` you'll need to pull public assets from a different folder. Your `astro.config.mjs` might end up looking like this: - - ```js - export default /** @type {import('astro').AstroUserConfig} */ ({ - // Enable the Preact renderer to support Preact JSX components. - renderers: ['@astrojs/renderer-preact'], - // files in `static/` will be blindly copied to `public/` - public: 'static', - // `public/` is where the built website will be output to - dist: 'public', - buildOptions: { - sitemap: true, - site: 'https://astro.build/', - }, - }); - ``` - -3. Create a file called `.gitlab-ci.yml` in the root of your project with the content below. This will build and deploy your site whenever you make changes to your content: - - ```yaml - image: node:14 - pages: - cache: - paths: - - node_modules/ - script: - - npm install - - npm run build - artifacts: - paths: - - public - only: - - main - ``` - -## Netlify - -**Note:** If you are using an older [build image](https://docs.netlify.com/configure-builds/get-started/#build-image-selection) on Netlify, make sure that you set your Node.js version in either a [`.nvmrc`](https://github.com/nvm-sh/nvm#nvmrc) file (example: `node v14.17.6`) or a `NODE_VERSION` environment variable. This step is no longer required by default. - -You can configure your deployment in two ways, via the Netlify website or with a local project `netlify.toml` file. - -### `netlify.toml` file - -Create a new `netlify.toml` file at the top level of your project repository with the following settings: - -```toml -[build] - command = "npm run build" - publish = "dist" -``` - -Push the new `netlify.toml` file up to your hosted git repository. Then, set up a new project on [Netlify](https://netlify.com) for your git repository. Netlify will read this file and automatically configure your deployment. - -### Netlify Website UI - -You can skip the `netlify.toml` file and go directly to [Netlify](https://netlify.com) to configure your project. Netlify should now detect Astro projects automatically and pre-fill the configuration for you. Make sure that the following settings are entered before hitting the "Deploy" button: - -- **Build Command:** `astro build` or `npm run build` -- **Publish directory:** `dist` - -## Google Cloud - -Different from most available deploy options here, [Google Cloud](https://cloud.google.com) requires some UI clicks to deploy projects. (Most of these actions can also be done using the gcloud CLI). - -### Cloud Run - -1. Create a new GCP project, or select one you already have. - -2. Make sure the Cloud Run API is enabled. - -3. Create a new service. - -4. Use a container from Docker Hub or build your own using [Cloud Build](https://cloud.google.com/build). - -5. Configure a port from which the files are served. - -6. Enable public access by adding a new permission to `allUsers` called `Cloud Run Invoker`. - -### Cloud Storage - -1. Create a new GCP project, or select one you already have. - -2. Create a new bucket under [Cloud Storage](https://cloud.google.com/storage). - -3. Give it a name and other required settings. - -4. Upload your `dist` folder into it or upload using [Cloud Build](https://cloud.google.com/build). - -5. Enable public access by adding a new permission to `allUsers` called `Storage Object Viewer`. - -6. Edit the website configuration and add `ìndex.html` as entrypoint and `404.html` as errorpage. - -## Google Firebase - -1. Make sure you have [firebase-tools](https://www.npmjs.com/package/firebase-tools) installed. - -2. Create `firebase.json` and `.firebaserc` at the root of your project with the following content: - - `firebase.json`: - - ```json - { - "hosting": { - "public": "dist", - "ignore": [] - } - } - ``` - - `.firebaserc`: - - ```json - { - "projects": { - "default": "" - } - } - ``` - -3. After running `npm run build`, deploy using the command `firebase deploy`. - -## Surge - -1. First install [surge](https://www.npmjs.com/package/surge), if you haven't already. - -2. Run `npm run build`. - -3. Deploy to surge by typing `surge dist`. - -You can also deploy to a [custom domain](http://surge.sh/help/adding-a-custom-domain) by adding `surge dist yourdomain.com`. - -## Heroku - -1. Install [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli). - -2. Create a Heroku account by [signing up](https://signup.heroku.com). - -3. Run `heroku login` and fill in your Heroku credentials: - - ```bash - $ heroku login - ``` - -4. Create a file called `static.json` in the root of your project with the below content: - - `static.json`: - - ```json - { - "root": "./dist" - } - ``` - - This is the configuration of your site; read more at [heroku-buildpack-static](https://github.com/heroku/heroku-buildpack-static). - -5. Set up your Heroku git remote: - - ```bash - # version change - $ git init - $ git add . - $ git commit -m "My site ready for deployment." - - # creates a new app with a specified name - $ heroku apps:create example - - # set buildpack for static sites - $ heroku buildpacks:set https://github.com/heroku/heroku-buildpack-static.git - ``` - -6. Deploy your site: - - ```bash - # publish site - $ git push heroku master - - # opens a browser to view the Dashboard version of Heroku CI - $ heroku open - ``` - -## Vercel - -You can deploy Astro to [Vercel](http://vercel.com) through the CLI or the Vercel git integrations. - -### CLI - -1. Install the [Vercel CLI](https://vercel.com/cli) and run `vercel` to deploy. -2. When asked `Want to override the settings? [y/N]`, choose `Y`. -3. Update `Output Directory` to `./dist`. -4. Your application is deployed! (e.g. [astro.vercel.app](https://astro.vercel.app/)) - -```bash -$ npm i -g vercel -$ vercel -``` - -### Git - -1. Push your code to your git repository (GitHub, GitLab, BitBucket). -2. [Import your project](https://vercel.com/new) into Vercel. -3. Update `Output Directory` to `./dist`. -4. Your application is deployed! (e.g. [astro.vercel.app](https://astro.vercel.app/)) - -After your project has been imported and deployed, all subsequent pushes to branches will generate [Preview Deployments](https://vercel.com/docs/concepts/deployments/environments#preview), and all changes made to the Production Branch (commonly “main”) will result in a [Production Deployment](https://vercel.com/docs/concepts/deployments/environments#production). - -Learn more about Vercel’s [Git Integration](https://vercel.com/docs/concepts/git). - -## Azure Static Web Apps - -You can deploy your Astro project with Microsoft Azure [Static Web Apps](https://aka.ms/staticwebapps) service. You need: - -- An Azure account and a subscription key. You can create a [free Azure account here](https://azure.microsoft.com/free). -- Your app code pushed to [GitHub](https://github.com). -- The [SWA Extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurestaticwebapps) in [Visual Studio Code](https://code.visualstudio.com). - -Install the extension in VS Code and navigate to your app root. Open the Static Web Apps extension, sign in to Azure, and click the '+' sign to create a new Static Web App. You will be prompted to designate which subscription key to use. - -Follow the wizard started by the extension to give your app a name, choose a framework preset, and designate the app root (usually `/`) and built file location `/dist`. The wizard will run and will create a GitHub action in your repo in a `.github` folder. - -The action will work to deploy your app (watch its progress in your repo’s Actions tab) and, when successfully completed, you can view your app in the address provided in the extension’s progress window by clicking the 'Browse Website' button that appears when the GitHub action has run. - -## Cloudflare Pages - -You can deploy your Astro project on [Cloudflare Pages](https://pages.cloudflare.com). You need: - -- A Cloudflare account. If you don’t already have one, you can create a free Cloudflare account during the process. -- Your app code pushed to a [GitHub](https://github.com) or a [GitLab](https://about.gitlab.com/) repository. - -Then, set up a new project on Cloudflare Pages. - -Use the following build settings: - -- **Framework preset**: `Astro` -- **Build command:** `npm run build` -- **Build output directory:** `dist` -- **Environment variables (advanced)**: Currently, Cloudflare Pages supports `NODE_VERSION = 12.18.0` in the Pages build environment by default. Astro requires `14.15.0`, `v16.0.0`, or higher. You can add an environment variable with the **Variable name** of `NODE_VERSION` and a **Value** of a [Node version that’s compatible with Astro](https://docs.astro.build/installation#prerequisites) or by specifying the node version of your project in a `.nvmrc` or `.node-version` file. - -Then click the **Save and Deploy** button. - -## Render - -You can deploy your Astro project on [Render](https://render.com/) following these steps: - -1. Create a [render.com account](https://dashboard.render.com/) and sign in -2. Click the **New +** button from your dashboard and select **Static Site** -3. Connect your [GitHub](https://github.com/) or [GitLab](https://about.gitlab.com/) repository or alternatively enter the public URL of a public repository -4. Give your website a name, select the branch and specify the build command and publish directory - - **build command:** `npm run build` - - **publish directory:** `dist` -5. Click the **Create Static Site** button - -## Buddy - -You can deploy your Astro project using [Buddy](https://buddy.works). To do so you'll need to: - -1. Create a **Buddy** account [here](https://buddy.works/sign-up). -2. Create a new project and connect it with a git repository (GitHub, GitLab, BitBucket, any private Git Repository or you can use Buddy Git Hosting). -3. Add a new pipeline. -4. In the newly created pipeline add a **[Node.js](https://buddy.works/actions/node-js)** action. -5. In this action add: - - ```bash - npm install - npm run build - ``` - -6. Add a deployment action - there are many to choose from, you can browse them [here](https://buddy.works/actions). Although their can settings differ, remember to set the **Source path** to `dist`. -7. Press the **Run** button. - -## Layer0 - -You can deploy your Astro project using the steps in the following sections. - -### Create the Astro Site - -If you don't have an existing Astro site, you can create one by running: - -```bash -# Make a new project directory, and navigate directly into it -$ mkdir my-astro-project && cd $_ - -# prepare for liftoff... -$ npm init astro - -# install dependencies -$ npm install - -# start developing! -$ npm run dev - -# when you're ready: build your static site to `dist/` -$ npm run build -``` - -### Add Layer0 - -```bash -# First, globally install the Layer0 CLI: -$ npm i -g @layer0/cli - -# Then, add Layer0 to your Astro site: -$ 0 init -``` - -### Update your Layer0 Router - -Paste the following into routes.ts: - -```js -// routes.ts -import { Router } from '@layer0/core'; - -export default new Router() - .get( - '/:path*/:file.:ext(js|css|png|ico|jpg|gif|svg)', - ({ cache, serveStatic }) => { - cache({ - browser: { - // cache js, css, and images in the browser for one hour... - maxAgeSeconds: 60 * 60, - }, - edge: { - // ... and at the edge for one year - maxAgeSeconds: 60 * 60 * 24 * 365, - }, - }); - serveStatic('dist/:path*/:file.:ext'); - } - ) - .match('/:path*', ({ cache, serveStatic, setResponseHeader }) => { - cache({ - // prevent the browser from caching html... - browser: false, - edge: { - // ...cache html at the edge for one year - maxAgeSeconds: 60 * 60 * 24 * 365, - }, - }); - setResponseHeader('content-type', 'text/html; charset=UTF-8'); - serveStatic('dist/:path*'); - }); -``` - -You can remove the origin backend from `layer0.config.js`: - -```js -module.exports = {}; -``` - -### Deploy to Layer0 - -To deploy your site to Layer0, run: - -```bash -# Create a production build of your astro site -$ npm run build - -# Deploy it to Layer0 -$ 0 deploy -``` - -## Credits - -This guide was originally based off [Vite](https://vitejs.dev/)’s well-documented static deploy guide. diff --git a/smoke/docs-main/src/pages/en/guides/environment-variables.md b/smoke/docs-main/src/pages/en/guides/environment-variables.md deleted file mode 100644 index 432db1acc..000000000 --- a/smoke/docs-main/src/pages/en/guides/environment-variables.md +++ /dev/null @@ -1,81 +0,0 @@ ---- -layout: ~/layouts/MainLayout.astro -title: Using environment variables -description: Learn how to use environment variables in an Astro project. ---- - -Astro uses Vite for environment variables, and allows you to use any of its methods to get and set environment variables. - -Note that while _all_ environment variables are available in sever-side code, only environment variables prefixed with `PUBLIC_` are avilable in client-side code. - -See the official [Environment Variables example](https://github.com/withastro/astro/tree/main/examples/env-vars) for best practices. - -For security purposes, only variables prefixed with `PUBLIC_` are accessible by client side code. - -```ini -SECRET_PASSWORD=password123 -PUBLIC_ANYBODY=there -``` - -In this example, `PUBLIC_ANYBODY` will be available as `import.meta.env.PUBLIC_ANYBODY` in server or client code, while `SECRET_PASSWORD` will not. - -> In prior releases, these variables were prefixed with `SNOWPACK_PUBLIC_` and required the `@snowpack/plugin-env` plugin. - - -## Setting environment variables - -In Astro v0.21+, environment variables can be loaded from `.env` files in your project directory. - -You can also attach a mode (either `production` or `development`) to the filename, like `.env.production` or `.env.development`, which makes the environment variables only take effect in that mode. - -Just create a `.env` file in the project directory and add some variables to it. - -```bash -# .env -# This will only be available when run on the server! -DB_PASSWORD="foobar" -# This will be available everywhere! -PUBLIC_POKEAPI="https://pokeapi.co/api/v2" -``` - -```ini -.env # loaded in all cases -.env.local # loaded in all cases, ignored by git -.env.[mode] # only loaded in specified mode -.env.[mode].local # only loaded in specified mode, ignored by git -``` - -## Getting environment variables - -Instead of using `process.env`, with Vite you use `import.meta.env`, which uses the `import.meta` feature added in ES2020 (don't worry about browser support though, Vite replaces all `import.meta.env` mentions with static values). For example, to get the `PUBLIC_POKEAPI` environment variable, you could use `import.meta.env.PUBLIC_POKEAPI`. - -```js -// When import.meta.env.SSR === true -const data = await db(import.meta.env.DB_PASSWORD); - -// When import.meta.env.SSR === false -const data = fetch(`${import.meta.env.PUBLIC_POKEAPI}/pokemon/squirtle`); -``` - -> ⚠️WARNING⚠️: -> Because Vite statically replaces `import.meta.env`, you cannot access it with dynamic keys like `import.meta.env[key]`. - - - -## IntelliSense for TypeScript - -By default, Vite provides type definition for `import.meta.env` in `vite/client.d.ts`. While you can define more custom env variables in `.env.[mode]` files, you may want to get TypeScript IntelliSense for user-defined env variables which prefixed with `PUBLIC_`. - -To achieve, you can create an `env.d.ts` in `src` directory, then augment `ImportMetaEnv` like this: - -```ts -interface ImportMetaEnv { - readonly DB_PASSWORD: string; - readonly PUBLIC_POKEAPI: string; - // more env variables... -} - -interface ImportMeta { - readonly env: ImportMetaEnv; -} -``` diff --git a/smoke/docs-main/src/pages/en/guides/imports.md b/smoke/docs-main/src/pages/en/guides/imports.md deleted file mode 100644 index e0bc41f80..000000000 --- a/smoke/docs-main/src/pages/en/guides/imports.md +++ /dev/null @@ -1,142 +0,0 @@ ---- -layout: ~/layouts/MainLayout.astro -title: Supported Imports -description: Learn how to import different content types with Astro. ---- - -Astro uses Vite as its internal build system. Vite provides Astro with built-in support for the following file types, with no configuration required: - -- JavaScript (`.js`, `.mjs`) -- TypeScript (`.ts`, `.tsx`) -- JSON (`.json`) -- JSX (`.jsx`, `.tsx`) -- CSS (`.css`) -- CSS Modules (`.module.css`) -- Images & Assets (`.svg`, `.jpg`, `.png`, etc.) -- Astro Components (`.astro`) -- Markdown (`.md`) -- WASM (`.wasm`) - -Any files in your `public/` directory are copied into the final build, untouched by Vite or Astro. The following applies to files in your `src/` directory, which Astro is ultimately responsible for. - -## JavaScript & ESM - -Astro was designed for JavaScript’s native ES Module (ESM) syntax. ESM lets you define explicit imports & exports that browsers and build tools can better understand and optimize for. If you're familiar with the `import` and `export` keywords in JavaScript, then you already know ESM! - -```js -// ESM Example - src/user.js -export function getUser() { - /* ... */ -} - -// src/index.js -import { getUser } from './user.js'; -``` - -All browsers now support ESM, so Astro is able to ship this code directly to the browser during development. - -## TypeScript - -Astro includes built-in support to build TypeScript files (`*.ts`) to JavaScript. Astro components also support TypeScript in the frontmatter script section. - -Note that this built-in support is build only. By default, Astro does not type-check your TypeScript code. - - - -## JSX - -Astro includes built-in support to build JSX files (`*.jsx` & `*.tsx`) to JavaScript. - -If you are using Preact, Astro will detect your Preact import and switch to use the Preact-style JSX `h()` function. This is all done automatically for you. - -**Note: Astro does not support JSX in `.js`/`.ts` files.** - -## JSON - -```js -// Load the JSON object via the default export -import json from './data.json'; -``` - -Astro supports importing JSON files directly into your application. Imported files return the full JSON object in the default import. - -## CSS - -```js -// Load and inject 'style.css' onto the page -import './style.css'; -``` - -Astro supports importing CSS files directly into your application. Imported styles expose no exports, but importing one will automatically add those styles to the page. This works for all CSS files by default, and can support compile-to-CSS languages like Sass & Less via plugins. - -If you prefer not to write CSS, Astro also supports all popular CSS-in-JS libraries (ex: styled-components) for styling. - -## CSS Modules - -```jsx -// 1. Converts './style.module.css' classnames to unique, scoped values. -// 2. Returns an object mapping the original classnames to their final, scoped value. -import styles from './style.module.css'; - -// This example uses JSX, but you can use CSS Modules with any framework. -return
    Your Error Message
    ; -``` - -Astro supports CSS Modules using the `[name].module.css` naming convention. Like any CSS file, importing one will automatically apply that CSS to the page. However, CSS Modules export a special default `styles` object that maps your original classnames to unique identifiers. - -CSS Modules help you enforce component scoping & isolation on the frontend with unique-generated class names for your stylesheets. - -## Other Assets - -```jsx -import imgReference from './image.png'; // img === '/src/image.png' -import svgReference from './image.svg'; // svg === '/src/image.svg' -import txtReference from './words.txt'; // txt === '/src/words.txt' - -// This example uses JSX, but you can use import references with any framework. -; -``` - -All other assets not explicitly mentioned above can be imported via ESM `import` and will return a URL reference to the final built asset. This can be useful for referencing non-JS assets by URL, like creating an image element with a `src` attribute pointing to that image. - -It can also be useful to place images in the `public/`-folder as explained on the [project-structure page](/en/core-concepts/project-structure/#public). - -## WASM - -```js -// Loads and intializes the requested WASM file -const wasm = await WebAssembly.instantiateStreaming(fetch('/example.wasm')); -``` - -Astro supports loading WASM files directly into your application using the browser’s [`WebAssembly`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly) API. - -## NPM Packages - -```js -// Returns the React & React-DOM npm packages -import React from 'react'; -import ReactDOM from 'react-dom'; -``` - -Astro lets you import npm packages directly in the browser. Even if a package was published using a legacy format, Astro will up-convert the package to ESM before serving it to the browser. - -When you start up your dev server or run a new build, you may see a message that Vite is "installing dependencies". This means that Vite is converting your dependencies to run in the browser. This needs to run only once, or until you next change your dependency tree by adding or removing dependencies. - -## Node Builtins - -We encourage Astro users to avoid Node.js builtins (`fs`, `path`, etc) whenever possible. Astro aims to be compatible with multiple JavaScript runtimes in the future. This includes [Deno](https://deno.land/) and [Cloudflare Workers](https://workers.cloudflare.com/) which do not support Node builtin modules such as `fs`. - -Our aim is to provide Astro alternatives to common Node.js builtins. However, no such alternatives exist today. So, if you _really_ need to use these builtin modules we don't want to stop you. Astro supports Node.js builtins using Node’s newer `node:` prefix. If you want to read a file, for example, you can do so like this: - -```astro ---- -// Example: import the "fs/promises" builtin from Node.js -import fs from 'node:fs/promises'; - -const url = new URL('../../package.json', import.meta.url); -const json = await fs.readFile(url, 'utf-8'); -const data = JSON.parse(json); ---- - -Version: {data.version} -``` diff --git a/smoke/docs-main/src/pages/en/guides/manual-setup.md b/smoke/docs-main/src/pages/en/guides/manual-setup.md deleted file mode 100644 index d5beb3659..000000000 --- a/smoke/docs-main/src/pages/en/guides/manual-setup.md +++ /dev/null @@ -1,102 +0,0 @@ ---- -layout: ~/layouts/MainLayout.astro -title: Manual Setup -description: How to install and set up Astro manually ---- -If you do not wish to use a [starter template](https://github.com/withastro/astro/tree/main/examples), you can install Astro dependencies manually and create a new project with a `package.json` file and an Astro `index` page. - -## 1. Create your directory - -Create an empty directory with the name of your project, and then navigate into it. - -```bash -mkdir my-astro-project -cd my-astro-project -``` - -Once you are in your new directory, create your project `package.json` file. This is how you will manage your project dependencies, including Astro. If you aren't familiar with this file format, run the following command to create one. - -```bash -npm init --yes -``` - - -## 2. Install Astro - -First, install the Astro project dependencies inside your project. - -```bash -npm install astro -``` - -Then, replace any placeholder "scripts" section of your `package.json` with the following: - -```diff - "scripts": \{ -- "test": "echo \"Error: no test specified\" && exit 1" -+ "dev": "astro dev", -+ "build": "astro build", -+ "preview": "astro preview" - }, -``` - -You'll use these scripts later in the guide to start Astro and run its different commands. -## 3. Create your first page - -In your text editor, create a new file in your directory at `src/pages/index.astro`. This will be your first Astro page in the project. - -For this guide, copy-and-paste the following code snippet (including `---` dashes) into your new file: - -```astro ---- -// Welcome to Astro! Everything between these "---" code fences -// is your "component front matter". It never runs in the browser. -console.log('This runs in your terminal, not the browser!'); ---- - - - -

    Hello, World!

    - - - -``` - -## 4. Create your first static asset - -You will also want to create a `public/` directory to store your static assets. Astro will always include these assets in your final build, so you can safely reference them from inside your component templates. - -In your text editor, create a new file in your directory at `public/robots.txt`. `robots.txt` is a simple file that most sites will include to tell search bots like Google how to treat your site. - -For this guide, copy-and-paste the following code snippet into your new file: - -``` -# Example: Allow all bots to scan and index your site. -# Full syntax: https://developers.google.com/search/docs/advanced/robots/create-robots-txt -User-agent: * -Allow: / -``` - -## 5. Next steps - -If you have followed the steps above, your project directory should now look like this: - -``` -- src/ - - pages/ - - index.astro -- public/ - - robots.txt -- package.json -- package-lock.json (or: yarn.lock, pnpm-lock.yaml, etc.) -- node_modules/ -``` - -Congratulations, you're now set up to use Astro! - -If you followed this guide completely, you can jump directly to [Step 3: Start](/en/installation#3-start-) to continue and learn how to run Astro for the first time. diff --git a/smoke/docs-main/src/pages/en/guides/markdown-content.md b/smoke/docs-main/src/pages/en/guides/markdown-content.md deleted file mode 100644 index a7c2a9081..000000000 --- a/smoke/docs-main/src/pages/en/guides/markdown-content.md +++ /dev/null @@ -1,362 +0,0 @@ ---- -layout: ~/layouts/MainLayout.astro -title: Markdown -description: An intro to Markdown with Astro. ---- - -Astro comes with out-of-the-box Markdown support powered by the expansive [remark](https://remark.js.org/) ecosystem. - -## Parsers - -Astro lets you use any Markdown parser you want. It just needs to be a function that follows the `MarkdownParser` type declared inside [this file](https://github.com/withastro/astro/blob/main/packages/astro/src/@types/astro.ts). You can declare it inside `astro.config.mjs`: - -```js -// astro.config.mjs -export default { - markdownOptions: { - render: [ - 'parser-name', // or import('parser-name') or (contents) => {...} - { - // options - }, - ], - }, -}; -``` - -Astro comes with the `@astrojs/markdown-remark` package - the default parser. - -### Remark and Rehype Plugins - -In addition to custom components inside the [`` component](/en/guides/markdown-content#astros-markdown-component), the default parser comes with these plugins pre-enabled: - -- [GitHub-flavored Markdown](https://github.com/remarkjs/remark-gfm) -- [remark-smartypants](https://github.com/silvenon/remark-smartypants) -- [rehype-slug](https://github.com/rehypejs/rehype-slug) - -Also, Astro supports third-party plugins for Markdown. You can provide your plugins in `astro.config.mjs`. - -> **Note:** Enabling custom `remarkPlugins` or `rehypePlugins` removes Astro’s built-in support for the plugins previously mentioned. You must explicitly add these plugins to your `astro.config.mjs` file, if desired. - -### Add a Markdown plugin in Astro - -If you want to add a plugin, you need to install the npm package dependency in your project and then update `remarkPlugins` or `rehypePlugins` inside the `@astrojs/markdown-remark` options depending on what plugin you want to have: - -```js -// astro.config.mjs -export default { - markdownOptions: { - render: [ - '@astrojs/markdown-remark', - { - remarkPlugins: [ - // Add a Remark plugin that you want to enable for your project. - // If you need to provide options for the plugin, you can use an array and put the options as the second item. - // ['remark-autolink-headings', { behavior: 'prepend'}], - ], - rehypePlugins: [ - // Add a Rehype plugin that you want to enable for your project. - // If you need to provide options for the plugin, you can use an array and put the options as the second item. - // 'rehype-slug', - // ['rehype-autolink-headings', { behavior: 'prepend'}], - ], - }, - ], - }, -}; -``` - -You can provide names of the plugins as well as import them: - -```js -import autolinkHeadings from 'remark-autolink-headings'; - -// astro.config.mjs -export default { - markdownOptions: { - render: [ - '@astrojs/markdown-remark', - { - remarkPlugins: [[autolinkHeadings, { behavior: 'prepend' }]], - }, - ], - }, -}; -``` - -### Syntax Highlighting - -Astro comes with built-in support for [Prism](https://prismjs.com/) and [Shiki](https://shiki.matsu.io/). By default, Prism is enabled. You can modify this behavior by updating the `@astrojs/markdown-remark` options: - -```js -// astro.config.mjs -export default { - markdownOptions: { - render: [ - '@astrojs/markdown-remark', - { - // Pick a syntax highlighter. Can be 'prism' (default), 'shiki' or false to disable any highlighting. - syntaxHighlight: 'prism', - // If you are using shiki, here you can define a global theme and - // add custom languages. - shikiConfig: { - theme: 'github-dark', - langs: [], - wrap: false, - }, - }, - ], - }, -}; -``` - -You can read more about custom Shiki [themes](https://github.com/shikijs/shiki/blob/main/docs/themes.md#loading-theme) and [languages](https://github.com/shikijs/shiki/blob/main/docs/languages.md#supporting-your-own-languages-with-shiki). - -## Markdown Pages - -Astro treats any `.md` files inside of the `/src/pages` directory as pages. These files can contain frontmatter, but are otherwise processed as plain markdown files and do not support components. If you're looking to embed rich components in your markdown, take a look at the [Markdown Component](#astros-markdown-component) section. - -### Layouts - -Markdown pages have a special frontmatter property for `layout`. This defines the relative path to an `.astro` component which should wrap your Markdown content, for example a [Layout](/en/core-concepts/layouts) component. All other frontmatter properties defined in your `.md` page will be exposed to the component as properties of the `content` prop. The rendered Markdown content is placed into the default `` element. - -```markdown ---- -# src/pages/index.md -layout: ../layouts/BaseLayout.astro -title: My cool page -draft: false ---- - -# Hello World! -``` - -```astro ---- -// src/layouts/BaseLayout.astro -const { content } = Astro.props; ---- - - - {content.title} - - - - - - -``` - -For Markdown files, the `content` prop also has an `astro` property which holds special metadata about the page such as the complete Markdown `source` and a `headers` object. An example of what a blog post `content` object might look like is as follows: - -```json -{ - /** Frontmatter from a blog post - "title": "Astro 0.18 Release", - "date": "Tuesday, July 27 2021", - "author": "Matthew Phillips", - "description": "Astro 0.18 is our biggest release since Astro launch.", - "draft": false, - **/ - "astro": { - "headers": [ - { - "depth": 1, - "text": "Astro 0.18 Release", - "slug": "astro-018-release" - }, - { - "depth": 2, - "text": "Responsive partial hydration", - "slug": "responsive-partial-hydration" - } - /* ... */ - ], - "source": "# Astro 0.18 Release\\nA little over a month ago, the first public beta [...]" - }, - "url": "" -} -``` - -> Keep in mind that the only guaranteed properties coming from the `content` prop are `astro` and `url`. - -### Images and videos - -Using images or videos follows Astro’s normal import rules: - -- Place them in the `public/` as explained on the [project-structure page](/en/core-concepts/project-structure/#public) - - Example: Image is located at `/public/assets/img/astonaut.png` → Markdown: `![Astronaut](/assets/img/astronaut.png)` -- Or use `import` as explained on the [imports page](/en/guides/imports#other-assets) (when using Astro’s Markdown Component) - -### Components - -You can import components from any framework into your markdown file and use it along the markdown syntax. Front matter variables are available to your components from the `frontmatter` object. - -```markdown ---- -layout: ../layouts/BaseLayout.astro -setup: | - import Author from '../../components/Author.astro' - import MyReactComponent from '../components/MyReactComponent.jsx' -author: Leon ---- -# Hydrating on Visibility - - -# Hello world! - - - -``` - - -### Markdown draft pages - -By default, Astro excludes `draft` Markdown pages when building your site. This is a built-in, Astro solution for marking individual pages or posts as "unpublished" and excluding them from the site build. No page will be created on your site for a Markdown page that includes `draft: true` in its front matter. - -To enable building of draft pages, you can set `buildOptions.drafts: true` in `astro.config.mjs`, or pass the `--drafts` flag when running `astro build`. Markdown pages which do not have the `draft` property set are not affected. - -An example of a Markdown draft blog post: - -```markdown ---- -# src/pages/blog-post.md -title: My Blog Post -draft: true ---- - -This is my blog post which is currently incomplete, and will not exist on my built site. -``` - -An example of a Markdown post which is not a draft: - -```markdown ---- -# src/pages/blog-post.md -title: My Blog Post -draft: false ---- - -This is my published blog post. -``` - -> This feature only applies to local markdown pages, not the `` component, or remote markdown. - - -⚠️ Although `draft: true` will prevent a page from being built on your site, `Astro.fetchContent()` currently returns **all your Markdown files**. So, any function to fetch your Markdown files and render a list of blog posts **will include the data from all existing files**, whether or not they are marked as `draft`. To exclude the post data (e.g. title, link, description) from showing up in your post archive, or list of most recent posts, be sure that your `Astro.fetchContent()` function also filters to exclude any draft posts. - - -## Astro’s Markdown Component - -Astro has a dedicated component used to let you render your markdown as HTML components. This is a special component that is only exposed to `.astro` files. To use the `` component, within your frontmatter block use the following import statement: - -```astro ---- -import { Markdown } from 'astro/components'; ---- -``` - -You can utilize this within your `.astro` file by doing the following: - -```astro ---- -import { Markdown } from 'astro/components'; ---- - - - - # Hello world! - - The contents inside here is all in markdown. - - -``` - -`` components provide more flexibility and allow you to use plain HTML or custom components. For example: - -````astro ---- -// For now, this import _must_ be named "Markdown" and _must not_ be wrapped with a custom component -// We're working on easing these restrictions! -import { Markdown } from 'astro/components'; -import Layout from '../layouts/main.astro'; -import MyFancyCodePreview from '../components/MyFancyCodePreview.tsx'; - -const expressions = 'Lorem ipsum'; ---- - - - - # Hello world! - - **Everything** supported in a `.md` file is also supported here! - - There is _zero_ runtime overhead. - - In addition, Astro supports: - - Astro {expressions} - - Automatic indentation normalization - - Automatic escaping of expressions inside code blocks - - ```js - // This content is not transformed! - const object = { someOtherValue }; - ``` - - - Rich component support like any `.astro` file! - - Recursive Markdown support (Component children are also processed as Markdown) - - - ```js - const object = { someOtherValue }; - ``` - - - -```` - -## Remote Markdown - -If you have Markdown in a remote source, you may pass it directly to the Markdown component through the `content` attribute. For example, the example below fetches the README from Snowpack’s GitHub repository and renders it as HTML. - -```astro ---- -import { Markdown } from 'astro/components'; - -const content = await fetch('https://raw.githubusercontent.com/withastro/docs/main/README.md').then(res => res.text()); ---- - - - - -``` - -There might be times when you want to combine both dynamic, and static markdown. If that is the case, you can nest `` components with each other to get the best of both worlds. - -```astro ---- -import { Markdown } from 'astro/components'; - -const content = await fetch('https://raw.githubusercontent.com/withastro/docs/main/README.md').then(res => res.text()); ---- - - - - ## Markdown example - - Here we have some __Markdown__ code. We can also dynamically render content from remote places. - - - - -``` - -## Security FAQs - -**Aren't there security concerns to rendering remote markdown directly to HTML?** - -Yes! Just like with regular HTML, improper use of the `Markdown` component can open you up to a [cross-site scripting (XSS)](https://en.wikipedia.org/wiki/Cross-site_scripting) attack. If you are rendering untrusted content, be sure to _sanitize your content **before** rendering it_. - -**Why not use a prop like React’s `dangerouslySetInnerHTML={{ __html: content }}`?** - -Rendering a string of HTML (or Markdown) is an extremely common use case when rendering a static site and you probably don't need the extra hoops to jump through. Rendering untrusted content is always dangerous! Be sure to _sanitize your content **before** rendering it_. diff --git a/smoke/docs-main/src/pages/en/guides/pagination.md b/smoke/docs-main/src/pages/en/guides/pagination.md deleted file mode 100644 index 1321da8b6..000000000 --- a/smoke/docs-main/src/pages/en/guides/pagination.md +++ /dev/null @@ -1,108 +0,0 @@ ---- -layout: ~/layouts/MainLayout.astro -title: Pagination -description: An intro to Astro pagination to split large amounts of data into different pages. ---- - -Astro supports built-in, automatic pagination for large collections of data that need to be split into multiple pages. Astro also automatically includes pagination metadata for things like previous/next page URL, total number of pages, and more. - -## When to use pagination - -Pagination is only useful when you need to generate multiple, numbered pages from a larger data set. - -If all of your data can fit on a single page then you should consider using a static [page component](/en/core-concepts/astro-pages) instead. - -If you need to split your data into multiple pages but do not want those page URLs to be numbered, then you should use a [dynamic page](/en/core-concepts/routing) instead without pagination (Example: `/tag/[tag].astro`). - -## How to use pagination - -### Create your page component - -To automatically paginate some data, you'll first need to create your page component. This is the component `.astro` file that every page in the paginated collection will inherit from. - -Pagination is built on top of dynamic page routing, with the page number in the URL represented as a dynamic route param: `[page].astro` or `[...page].astro`. If you aren't familiar with routing in Astro, quickly familiarize yourself with our [Routing documentation](/en/core-concepts/routing) before continuing. - -Your first page URL will be different depending on which type of query param you use: - -- `/posts/[page].astro` will generate the URLs `/posts/1`, `/posts/2`, `/posts/3`, etc. -- `/posts/[...page].astro` will generate the URLs `/posts`, `/posts/2`, `/posts/3`, etc. - -### calling the `paginate()` function - -Once you have decided on the file name/path for your page component, you'll need to export a [`getStaticPaths()`](/en/reference/api-reference#getstaticpaths) function from the component. `getStaticPaths()` is where you tell Astro what pages to generate. - -`getStaticPaths()` provides the `paginate()` function that we'll use to paginate your data. In the example below, we'll use `paginate()` to split a list of 150 Pokemon into 15 pages of 10 Pokemon each. - -```js -export async function getStaticPaths({ paginate }) { - // Load your data with fetch(), Astro.fetchContent(), etc. - const response = await fetch(`https://pokeapi.co/api/v2/pokemon?limit=150`); - const result = await response.json(); - const allPokemon = result.results; - // Return a paginated collection of paths for all posts - return paginate(allPokemon, { pageSize: 10 }); -} -// If set up correctly, The page prop now has everything that -// you need to render a single page (see next section). -const { page } = Astro.props; -``` - -`paginate()` generates the correct array of path objects for `getStaticPaths()`. This automatically tells Astro to create a new URL for every page of the collection. The page data will then be passed as a `page` prop to the `.astro` page component. - -### using the `page` prop - -Once you've set up your page component and defined your `getStaticPaths()` function, you're ready to design your page template. Each page in the paginated collection will be passed its data in the `page` prop. - -```astro ---- -export async function getStaticPaths { /* ... */ } -const { page } = Astro.props; ---- -

    Page {page.currentPage}

    -
      - {page.data.map(item =>
    • {item.title}
    • )} -
    -``` - -The `page` prop has several useful properties, but the most important one is `page.data`. This is the array containing the page’s slice of data that you passed to the `paginate()` function. For example, if you called `paginate()` on an array of 150 Pokemon: - -- `/1`: `page.data` would be an array of the first 10 Pokemon -- `/2`: `page.data` would be an array of Pokemon 11-20 -- `/3`: `page.data` would be an array of Pokemon 21-30 -- etc. etc. - -The `page` prop includes other helpful metadata, like `page.url.next`, `page.url.prev`, `page.total`, and more. See our [API reference](/en/reference/api-reference#the-pagination-page-prop) for the full `page` interface. - -## Nested pagination - -A more advanced use-case for pagination is **nested pagination.** This is when pagination is combined with other dynamic route params. You can use nested pagination to group your paginated collection by some property or tag. - -For example, if you want to group your paginated markdown posts by some tag, you would use nested pagination by creating a `/src/pages/[tag]/[page].astro` page that would match the following URLS: - -- `/red/1` (tag=red) -- `/red/2` (tag=red) -- `/blue/1` (tag=blue) -- `/green/1` (tag=green) - -Nested pagination works by returning an array of `paginate()` results from `getStaticPaths()`, one for each grouping. In the following example, we will implement nested pagination to build the URLs listed above: - -```astro ---- -// Example: /src/pages/[tag]/[page].astro -export function getStaticPaths({paginate}) { - const allTags = ['red', 'blue', 'green']; - const allPosts = Astro.fetchContent('../../posts/*.md'); - // For every tag, return a paginate() result. - // Make sure that you pass `{params: {tag}}` to `paginate()` - // so that Astro knows which tag grouping the result is for. - return allTags.map((tag) => { - const filteredPosts = allPosts.filter((post) => post.tag === tag); - return paginate(filteredPosts, { - params: { tag }, - pageSize: 10 - }); - }); -} -const { page } = Astro.props; -const { params } = Astro.request; -``` diff --git a/smoke/docs-main/src/pages/en/guides/publish-to-npm.md b/smoke/docs-main/src/pages/en/guides/publish-to-npm.md deleted file mode 100644 index d49f678af..000000000 --- a/smoke/docs-main/src/pages/en/guides/publish-to-npm.md +++ /dev/null @@ -1,216 +0,0 @@ ---- -layout: ~/layouts/MainLayout.astro -title: Publish to NPM -description: Learn how to publish Astro components to NPM ---- - -Building a new Astro component? **Publish it to [npm!](https://npmjs.com/)** - -Publishing a component is a great way to reuse work across your team, your company, or the entire world. Astro components can be published to and installed from npm, just like any other JavaScript package. - -**Astro’s ability to publish and reuse popular components is one of it’s most powerful features!** - -Even if you don't plan on publishing your components online, the patterns outlined below can help any developer design reusable components in isolation from their custom website or business logic. - -Looking for inspiration? Check out some of [our favorite themes & components][/themes] from the Astro community. You can also [search npm](https://www.npmjs.com/search?q=keywords:astro-component) to see the entire public catalog. - -## Creating a package - -> Before diving in, it will help have a basic understanding of: -> -> - [Node Modules](https://docs.npmjs.com/creating-node-js-modules) -> - [JSON Manifest (`package.json`)](https://docs.npmjs.com/creating-a-package-json-file) -> - [Workspaces](https://docs.npmjs.com/cli/v7/configuring-npm/package-json#workspaces) - -To create a new package, we recommend developing with **workspaces**. This will allow you to develop your component alongside a working copy of Astro. - -``` -my-project/ - ├─ demo/ - └─ ... for testing and demonstration - ├─ package.json - └─ packages/ - └─ my-component/ - ├─ index.js - ├─ package.json - └─ ... additional files used by the package -``` - -In this example, named `my-project`, we create a project with a single package, named `my-component`, and a `demo` directory for testing and demonstrating the component. - -This is configured in the project root’s `package.json` file. - -```json -{ - "name": "my-project", - "workspaces": ["demo", "packages/*"] -} -``` - -In this example, multiple packages can be developed together from the `packages` directory. These packages can also be referenced from `demo`, where you can install a working copy of Astro. - -```shell -npm init astro demo --template minimal -``` - -Now let’s explore the files that will make up your individual package: - -### `package.json` - -The `package.json` in the package directory includes all of the information related to your package, including its description, dependencies, and any other package metadata. - -```json -{ - "name": "my-component", - "description": "... description", - "version": "1.0.0", - "type": "module", - "exports": { - ".": "./index.js", - "./astro": "./MyAstroComponent.astro", - "./react": "./MyReactComponent.jsx" - }, - "files": ["index.js", "MyAstroComponent.astro", "MyReactComponent.jsx"], - "keywords": ["astro-component", "... etc", "... etc"] -} -``` - -#### `package.json#description` - -The short description of your component used to help others know what it does. - -```json -{ - "description": "An Astro Element Generator" -} -``` - -#### `package.json#type` - -The module format used by Node.js and Astro to interpret your `index.js` files. - -```json -{ - "type": "module" -} -``` - -We recommend using `"type": "module"` so that your `index.js` can be used as an entrypoint with `import` and `export`. - -#### `package.json#exports` - -The entry points allowed by Astro to import your component or any of its [files](#packagejsonfiles). - -```json -{ - "exports": { - ".": "./index.js", - "./astro": "./MyAstroComponent.astro", - "./react": "./MyReactComponent.jsx" - } -} -``` - -In this example, importing `my-component` would use `index.js`, while importing `my-component/astro` or `my-component/react` would use `MyAstroComponent.astro` or `MyReactComponent.jsx`. - -#### `package.json#files` - -```json -{ - "files": ["index.js", "MyAstroComponent.astro", "MyReactComponent.jsx"] -} -``` - -#### `package.json#keywords` - -An array of keywords relevant to your component that are used to help others [find your component on npm](https://www.npmjs.com/search?q=keywords:astro-component) and any other search catalogs. - -We recommend adding the `astro-component` as a special keyword to maximize its discoverability in the Astro ecosystem. - -```json -{ - "keywords": ["astro-component", "... etc", "... etc"] -} -``` - ---- - -### `index.js` - -The main **package entrypoint** used whenever your package is imported. - -```js -export { default as MyAstroComponent } from './MyAstroComponent.astro'; - -export { default as MyReactComponent } from './MyReactComponent.jsx'; -``` - -This allows you to package multiple components together into a single interface. - -#### Example: Using Named Imports - -```astro ---- -import { MyAstroComponent } from 'my-component'; -import { MyReactComponent } from 'my-component'; ---- - - -``` - -#### Example: Using Namespace Imports - -```astro ---- -import * as Example from 'example-astro-component'; ---- - - -``` - -#### Example: Using Individual Imports - -```astro ---- -import MyAstroComponent from 'example-astro-component/astro'; -import MyReactComponent from 'example-astro-component/react'; ---- - - -``` - ---- - -## Developing your package - -Astro does not have a dedicated "package mode" for development. Instead, you should use a demo project to develop and test your package inside of your project. This can be a private website only used for development, or a public demo/documentation website for your package. - -If you are extracting components from an existing project, you can even continue to use that project to develop your now-extracted components. - -## Testing your component - -Astro does not currently ship a test runner. This is something that we would like to tackle before our v1.0 release. _(If you are interested in helping out, [join us on Discord!](https://astro.build/chat))_ - -In the meantime, our current recommendation for testing is: - -1. Add a test `fixtures` directory to your `demo/src/pages` directory. -2. Add a new page for every test that you'd like to run. -3. Each page should include some different component usage that you'd like to test. -4. Run `astro build` to build your fixtures, then compare the output of the `dist/__fixtures__/` directory to what you expected. - -```bash -my-project/demo/src/pages/__fixtures__/ - ├─ test-name-01.astro - ├─ test-name-02.astro - └─ test-name-03.astro -``` - -## Publishing your component - -Once you have your package ready, you can publish it to npm! - -To publish a package to npm, use the `npm publish` command. If that fails, make sure that you've logged in via `npm login` and that your package.json is correct. If it succeeds, you're done! - -Notice that there was no `build` step for Astro packages. Any file type that Astro supports can be published directly without a build step, because we know that Astro already supports them natively. This includes all files with extensions like `.astro`, `.ts`, `.jsx`, and `.css`. - -If you need some other file type that isn't natively supported by Astro, you are welcome to add a build step to your package. This advanced exercise is left up to you. diff --git a/smoke/docs-main/src/pages/en/guides/rss.md b/smoke/docs-main/src/pages/en/guides/rss.md deleted file mode 100644 index 4e33eedca..000000000 --- a/smoke/docs-main/src/pages/en/guides/rss.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -layout: ~/layouts/MainLayout.astro -title: RSS -description: An intro to RSS in Astro ---- - -Astro supports fast, automatic RSS feed generation for blogs and other content websites. For more information about RSS feeds in general, see [aboutfeeds.com](https://aboutfeeds.com/). - -You can create an RSS feed from any Astro page that uses a `getStaticPaths()` function for routing. Only dynamic routes can use `getStaticPaths()` today (see [Routing](/en/core-concepts/routing)). - -> We hope to make this feature available to all other pages before v1.0. As a workaround, you can convert a static route to a dynamic route that only generates a single page. See [Routing](/en/core-concepts/routing) for more information about dynamic routes. - -Create an RSS Feed by calling the `rss()` function that is passed as an argument to `getStaticPaths()`. This will create an `rss.xml` file in your final build based on the data that you provide using the `items` array. - -```js -// Example: /src/pages/posts/[...page].astro -// Place this function inside your Astro component script. -export async function getStaticPaths({rss}) { - const allPosts = Astro.fetchContent('../post/*.md'); - const sortedPosts = allPosts.sort((a, b) => new Date(b.date) - new Date(a.date)); - // Generate an RSS feed from this collection - rss({ - // The RSS Feed title, description, and custom metadata. - title: 'Don’s Blog', - // See "Styling" section below - stylesheet: true, - description: 'An example blog on Astro', - customData: `en-us`, - // The list of items for your RSS feed, sorted. - items: sortedPosts.map(item => ({ - title: item.title, - description: item.description, - link: item.url, - pubDate: item.date, - })), - // Optional: Customize where the file is written to. - // Otherwise, defaults to "/rss.xml" - dest: "/my/custom/feed.xml", - }); - // Return your paths - return [...]; -} -``` - -Note: RSS feeds will **not** be built during development. Currently, RSS feeds are only generated during your final build. - -### Styling - -RSS Feeds can be styled with an XSL stylesheet for a more pleasant user experience when they are opened directly in a browser. By default, Astro does not set a stylesheet for RSS feeds, but it can be enabled by setting the `stylesheet` option. - -Astro can automatically use [Pretty Feed](https://github.com/genmon/aboutfeeds/blob/main/tools/pretty-feed-v3.xsl), a popular open-source XSL stylesheet. To enable this behavior, pass `stylesheet: true`. - -If you'd like to use a custom XSL stylesheet, you can pass a string value like `stylesheet: '/my-custom-stylesheet.xsl'`. This file should be in your `public/` directory (in this case, `public/my-custom-stylesheet.xsl`). diff --git a/smoke/docs-main/src/pages/en/guides/styling.md b/smoke/docs-main/src/pages/en/guides/styling.md deleted file mode 100644 index fd3a53a32..000000000 --- a/smoke/docs-main/src/pages/en/guides/styling.md +++ /dev/null @@ -1,667 +0,0 @@ ---- -layout: ~/layouts/MainLayout.astro -title: Styling & CSS -description: Learn how to style components with Astro. ---- - -Astro includes special handling to make writing CSS as easy as possible. Styling inside of Astro components is done by adding a ` - -

    I’m a scoped style and I’m red!

    -

    I'm a scoped style and I’m cursive!

    -``` - -Note that the `h1` selector won’t bleed out of the current component! These styles won’t apply to any other `h1` tags outside this document. Not even child components. - -_Tip: even though you can use element selectors, using classnames is preferred. This is not only slightly more performant, but is also easier to read, especially in a large document._ - -### Global styles - -Of course, the real power of CSS is being able to reuse as much as possible! The preferred method of loading global styles is by using a standard `` tag like you’re used to. It can even be used in conjunction with Astro’s scoped ` - - -

    Scoped Page Title

    - -``` - -_Note: `Astro.resolve()` is a handy utility that helps resolve files from anywhere ([docs][astro-resolve])_ - -#### Styling children - -If you’d like scoped styles to apply to children, you can use the special `:global()` function borrowed from [CSS Modules][css-modules]: - -```astro - ---- -import PostContent from './Post.astro'; ---- - - -

    Title

    -
    - -
    -``` - -This is a great way to style things like blog posts, or documents with CMS-powered content where the contents live outside of Astro. But be careful when styling children unconditionally, as it breaks component encapsulation. Components that appear different based on whether or not they have a certain parent component can become unwieldy quickly. - -#### Global styles within style tag - -If you’d like to use global styles but you don’t want to use a normal `` tag (recommended), there is a ` - -

    Globally-styled

    -``` - -You can achieve the same by using the `:global()` function at the root of a selector: - -```html - -``` - -It’s recommended to only use this in scenarios where a `` tag won’t work. It’s harder to track down errant global styles when they’re scattered around and not in a central CSS file. - -📚 Read our full guide on [Astro component syntax][astro-component] to learn more about using the ` - -``` - -## Autoprefixer - -[Autoprefixer][autoprefixer] takes care of cross-browser CSS compatibility for you. Use it in astro by installing it (`npm install --save-dev autoprefixer`) and adding a `postcss.config.cjs` file to the root of your project: - -```js -// postcss.config.cjs -module.exports = { - plugins: { - autoprefixer: {}, - }, -}; -``` - -_Note: Astro v0.21 and later requires this manual setup for autoprefixer. Previous versions ran this automatically._ - -## PostCSS - -You can use any [PostCSS plugin](https://www.postcss.parts/) by adding a `postcss.config.cjs` file to the root of your project. Follow the documentation for the plugin you’re trying to install for configuration and setup. - ---- - -## Supported Styling Options - -Styling in Astro is meant to be as flexible as you'd like it to be! The following options are all supported: - -| Framework | Global CSS | Scoped CSS | CSS Modules | -| :--------------- | :--------: | :--------: | :---------: | -| `.astro` | ✅ | ✅ | N/A¹ | -| `.jsx` \| `.tsx` | ✅ | ❌ | ✅ | -| `.vue` | ✅ | ✅ | ✅ | -| `.svelte` | ✅ | ✅ | ❌ | - -¹ _`.astro` files have no runtime, therefore Scoped CSS takes the place of CSS Modules (styles are still scoped to components, but don't need dynamic values)_ - -All styles in Astro are automatically minified and bundled, so you can just write CSS and we'll handle the rest ✨. - ---- - -## Frameworks and Libraries - -### 📘 React / Preact - -`.jsx` files support both global CSS and CSS Modules. To enable the latter, use the `.module.css` extension (or `.module.scss`/`.module.sass` if using Sass). - -```js -import './global.css'; // include global CSS -import Styles from './styles.module.css'; // Use CSS Modules (must end in `.module.css`, `.module.scss`, or `.module.sass`!) -``` - -### 📗 Vue - -Vue in Astro supports the same methods as `vue-loader` does: - -- [vue-loader - Scoped CSS][vue-scoped] -- [vue-loader - CSS Modules][vue-css-modules] - -### 📕 Svelte - -Svelte in Astro also works exactly as expected: [Svelte Styling Docs][svelte-style]. - -### 🎨 CSS Preprocessors (Sass, Stylus, etc.) - -Astro supports CSS preprocessors such as [Sass][sass], [Stylus][stylus], and [Less][less] through [Vite][vite-preprocessors]. It can be enabled via the following: - -- **Sass**: Run `npm install -D sass` and use ` - -``` - -As an alternative to `src/styles/global.css`, You may also add Tailwind utilities to individual `pages/*.astro` components in ` - -``` - -_Note: all the examples here use `lang="scss"` which is a great convenience for nesting, and sharing [colors and variables][sass-use], but it’s entirely optional and you may use normal CSS if you wish._ - -That `.btn` class is scoped within that component, and won't leak out. It means that you can **focus on styling and not naming.** Local-first approach fits in very well with Astro’s ESM-powered design, favoring encapsulation and reusability over global scope. While this is a simple example, it should be noted that **this scales incredibly well.** And if you need to share common values between components, [Sass' module system][sass-use] also gets our recommendation for being easy to use, and a great fit with component-first design. - -By contrast, Astro does allow global styles via the `:global()` and ` - - -``` - -This is undesirable because now `