From f164520aff52b14a7e7aab52907b5a90623a29c1 Mon Sep 17 00:00:00 2001 From: Keshav Lingala Date: Fri, 30 Aug 2024 16:55:45 -0400 Subject: [PATCH 1/7] initial migration with few upgrades --- .github/workflows/build_gatsby.yml | 4 +- .gitignore | 69 +- .prettierignore | 4 - .prettierrc | 4 - LICENSE | 14 - gatsby-browser.js | 7 - gatsby-config.js => gatsby-config.ts | 90 +- gatsby-node.js | 52 - gatsby-node.ts | 116 + gatsby-ssr.js | 7 - package-lock.json | 28350 ++++++++++++++++ package.json | 88 +- src/Archive/IOT/feature.jpg | Bin 96840 -> 0 bytes src/Archive/IOT/images/1.png | Bin 266377 -> 0 bytes src/Archive/IOT/images/blockdiag.jpg | Bin 53373 -> 0 bytes src/Archive/IOT/images/connecction.jpg | Bin 85428 -> 0 bytes src/Archive/IOT/images/crawler.jpg | Bin 70072 -> 0 bytes src/Archive/IOT/images/irsensor.jpg | Bin 65859 -> 0 bytes src/Archive/IOT/index.mdx | 135 - src/components/ContactMe.jsx | 245 - src/components/ContactMe.tsx | 185 + src/components/CustomComponents.jsx | 52 - src/components/CustomComponents.tsx | 47 + src/components/Education.jsx | 56 - src/components/PostLayout.jsx | 81 - src/components/Profile.jsx | 58 - src/components/Profile.tsx | 46 + src/components/Projects.jsx | 123 - src/components/Projects.tsx | 131 + src/components/SEO.tsx | 78 + src/components/Skills.tsx | 189 + src/components/SkillsComponent.jsx | 339 - src/components/ToolTip.jsx | 83 - src/components/ToolTip.tsx | 94 + src/components/WorkExperience.jsx | 230 - src/{constant.ts => constants.tsx} | 0 src/content/icons/bitbucket.svg | 10 + src/content/icons/blazemeter.svg | 2 + src/content/icons/confluence.svg | 15 + src/content/icons/discord.svg | 8 + src/content/icons/elasticsearch.svg | 10 + src/content/icons/facebook.svg | 1 - src/content/icons/file.svg | 1 - src/content/icons/gin.svg | 13 + src/content/icons/goland.svg | 35 + src/content/icons/golang.svg | 1 + src/content/icons/grafana.svg | 70 + src/content/icons/idea.svg | 62 + src/content/icons/insomnia.svg | 20 + src/content/icons/instagram.svg | 1 - src/content/icons/jira.svg | 18 + src/content/icons/jmeter.svg | 102 + src/content/icons/kanban.svg | 12 + src/content/icons/kibana.svg | 1 + src/content/icons/map-marker.svg | 1 - src/content/icons/phone.svg | 1 - src/content/icons/postman.svg | 50 + src/content/icons/prometheus.svg | 1 + src/content/icons/pycharm.svg | 70 + src/content/icons/redis.svg | 2 + src/content/icons/scrum.svg | 8 + src/content/icons/splunk.svg | 16 + src/content/icons/vscode.svg | 41 + src/content/icons/waterfall.svg | 9 + src/content/icons/webstorm.svg | 21 + src/content/images/Profile.png | Bin 618616 -> 0 bytes src/content/images/ProfileColor.png | Bin 645798 -> 0 bytes src/content/images/ProfileSq.png | Bin 820251 -> 0 bytes src/content/images/WallW.png | Bin 284215 -> 0 bytes src/content/images/audit.gif | Bin 1126951 -> 0 bytes src/content/images/audits.png | Bin 3431800 -> 0 bytes src/content/images/brand.svg | 141 - src/content/images/iconrounds.png | Bin 32780 -> 0 bytes src/content/images/profile.jpg | Bin 380701 -> 0 bytes src/content/images/wood.png | Bin 859852 -> 0 bytes src/content/posts/aakarshan/index.mdx | 2 +- src/content/posts/algoanalyser/index.mdx | 11 +- src/content/posts/angular2-timeline/index.mdx | 2 +- src/content/posts/bigdata/index.mdx | 2 +- src/content/posts/blockvote/index.mdx | 20 +- src/content/posts/bump/index.mdx | 14 +- src/content/posts/chainreaction/index.mdx | 2 +- src/content/posts/dashboard-ui/index.mdx | 2 +- src/content/posts/edithminibot/index.mdx | 7 +- src/content/posts/floydvisualizer/index.mdx | 27 +- src/content/posts/havmor-movies/index.mdx | 2 +- src/content/posts/mylocaltask/index.mdx | 10 +- src/content/posts/payment-dbs/index.mdx | 11 +- src/content/posts/seeinghome/index.mdx | 2 +- src/content/posts/synopsis/index.mdx | 2 +- src/custom.d.ts | 4 + src/hooks/useIcons.jsx | 78 - src/hooks/useLogo.jsx | 20 - src/hooks/useProfile.jsx | 24 - src/images/icon.png | Bin 0 -> 11189 bytes src/layouts/layout.css | 60 +- src/layouts/{layout.jsx => layout.tsx} | 66 +- src/layouts/seo.jsx | 107 - src/misc/useIcons.tsx | 127 + src/misc/useLogo.tsx | 22 + src/misc/useSiteMetadata.tsx | 32 + src/pages/404.mdx | 6 - src/pages/404.tsx | 13 + src/pages/{index.jsx => index.tsx} | 40 +- src/static/profile.jpg | Bin 626995 -> 0 bytes src/templates/PostLayout.tsx | 84 + src/types.d.ts | 149 + .../images => static/gifs}/analytics.gif | Bin .../images => static/gifs}/api-endpoints.gif | Bin .../images => static/gifs}/dynamicSearch.gif | Bin .../images => static/gifs}/transaction.gif | Bin tsconfig.json | 102 + 112 files changed, 30627 insertions(+), 2143 deletions(-) delete mode 100644 .prettierignore delete mode 100644 .prettierrc delete mode 100644 LICENSE delete mode 100644 gatsby-browser.js rename gatsby-config.js => gatsby-config.ts (60%) delete mode 100644 gatsby-node.js create mode 100644 gatsby-node.ts delete mode 100644 gatsby-ssr.js create mode 100644 package-lock.json delete mode 100644 src/Archive/IOT/feature.jpg delete mode 100644 src/Archive/IOT/images/1.png delete mode 100644 src/Archive/IOT/images/blockdiag.jpg delete mode 100644 src/Archive/IOT/images/connecction.jpg delete mode 100644 src/Archive/IOT/images/crawler.jpg delete mode 100644 src/Archive/IOT/images/irsensor.jpg delete mode 100644 src/Archive/IOT/index.mdx delete mode 100644 src/components/ContactMe.jsx create mode 100644 src/components/ContactMe.tsx delete mode 100644 src/components/CustomComponents.jsx create mode 100644 src/components/CustomComponents.tsx delete mode 100644 src/components/Education.jsx delete mode 100644 src/components/PostLayout.jsx delete mode 100644 src/components/Profile.jsx create mode 100644 src/components/Profile.tsx delete mode 100644 src/components/Projects.jsx create mode 100644 src/components/Projects.tsx create mode 100644 src/components/SEO.tsx create mode 100644 src/components/Skills.tsx delete mode 100644 src/components/SkillsComponent.jsx delete mode 100644 src/components/ToolTip.jsx create mode 100644 src/components/ToolTip.tsx delete mode 100644 src/components/WorkExperience.jsx rename src/{constant.ts => constants.tsx} (100%) create mode 100644 src/content/icons/bitbucket.svg create mode 100644 src/content/icons/blazemeter.svg create mode 100755 src/content/icons/confluence.svg create mode 100644 src/content/icons/discord.svg create mode 100644 src/content/icons/elasticsearch.svg delete mode 100644 src/content/icons/facebook.svg delete mode 100644 src/content/icons/file.svg create mode 100644 src/content/icons/gin.svg create mode 100644 src/content/icons/goland.svg create mode 100644 src/content/icons/golang.svg create mode 100644 src/content/icons/grafana.svg create mode 100644 src/content/icons/idea.svg create mode 100644 src/content/icons/insomnia.svg delete mode 100644 src/content/icons/instagram.svg create mode 100755 src/content/icons/jira.svg create mode 100644 src/content/icons/jmeter.svg create mode 100644 src/content/icons/kanban.svg create mode 100644 src/content/icons/kibana.svg delete mode 100644 src/content/icons/map-marker.svg delete mode 100644 src/content/icons/phone.svg create mode 100644 src/content/icons/postman.svg create mode 100644 src/content/icons/prometheus.svg create mode 100644 src/content/icons/pycharm.svg create mode 100644 src/content/icons/redis.svg create mode 100644 src/content/icons/scrum.svg create mode 100644 src/content/icons/splunk.svg create mode 100644 src/content/icons/vscode.svg create mode 100644 src/content/icons/waterfall.svg create mode 100644 src/content/icons/webstorm.svg delete mode 100644 src/content/images/Profile.png delete mode 100644 src/content/images/ProfileColor.png delete mode 100644 src/content/images/ProfileSq.png delete mode 100644 src/content/images/WallW.png delete mode 100644 src/content/images/audit.gif delete mode 100644 src/content/images/audits.png delete mode 100644 src/content/images/brand.svg delete mode 100644 src/content/images/iconrounds.png delete mode 100644 src/content/images/profile.jpg delete mode 100644 src/content/images/wood.png create mode 100644 src/custom.d.ts delete mode 100644 src/hooks/useIcons.jsx delete mode 100644 src/hooks/useLogo.jsx delete mode 100644 src/hooks/useProfile.jsx create mode 100644 src/images/icon.png rename src/layouts/{layout.jsx => layout.tsx} (74%) delete mode 100644 src/layouts/seo.jsx create mode 100644 src/misc/useIcons.tsx create mode 100644 src/misc/useLogo.tsx create mode 100644 src/misc/useSiteMetadata.tsx delete mode 100644 src/pages/404.mdx create mode 100644 src/pages/404.tsx rename src/pages/{index.jsx => index.tsx} (56%) delete mode 100644 src/static/profile.jpg create mode 100644 src/templates/PostLayout.tsx create mode 100644 src/types.d.ts rename {src/content/posts/payment-dbs/images => static/gifs}/analytics.gif (100%) rename {src/content/posts/payment-dbs/images => static/gifs}/api-endpoints.gif (100%) rename {src/content/posts/payment-dbs/images => static/gifs}/dynamicSearch.gif (100%) rename {src/content/posts/payment-dbs/images => static/gifs}/transaction.gif (100%) create mode 100644 tsconfig.json diff --git a/.github/workflows/build_gatsby.yml b/.github/workflows/build_gatsby.yml index dd946694..9d806bb5 100644 --- a/.github/workflows/build_gatsby.yml +++ b/.github/workflows/build_gatsby.yml @@ -16,13 +16,13 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '18' - name: List Versions run: node --version && npm --version - name: Install dependencies - run: npm install --legacy-peer-deps + run: npm install - name: Build Gatsby site run: npm run build && echo keshav.codes > public/CNAME diff --git a/.gitignore b/.gitignore index 2ca8f360..1118fca5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,72 +1,5 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -package-lock.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 - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (http://nodejs.org/api/addons.html) -build/Release - -# Dependency directories node_modules/ -jspm_packages/ - -# Typescript v1 declaration files -typings/ - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# dotenv environment variable files -.env* - -# gatsby files .cache/ public - -# Mac files -.DS_Store - -# Yarn -yarn-error.log -.pnp/ -.pnp.js -# Yarn Integrity file -.yarn-integrity +src/gatsby-types.d.ts .idea -Icon\r - diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index 58d06c36..00000000 --- a/.prettierignore +++ /dev/null @@ -1,4 +0,0 @@ -.cache -package.json -package-lock.json -public diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index 33d2cfa3..00000000 --- a/.prettierrc +++ /dev/null @@ -1,4 +0,0 @@ -{ - "arrowParens": "avoid", - "semi": false -} diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 7e964c1e..00000000 --- a/LICENSE +++ /dev/null @@ -1,14 +0,0 @@ -The BSD Zero Clause License (0BSD) - -Copyright (c) 2020 Gatsby Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. diff --git a/gatsby-browser.js b/gatsby-browser.js deleted file mode 100644 index b1e5c316..00000000 --- a/gatsby-browser.js +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Implement Gatsby's Browser APIs in this file. - * - * See: https://www.gatsbyjs.org/docs/browser-apis/ - */ - -// You can delete this file if you're not using it diff --git a/gatsby-config.js b/gatsby-config.ts similarity index 60% rename from gatsby-config.js rename to gatsby-config.ts index 2edf009e..edb763a9 100644 --- a/gatsby-config.js +++ b/gatsby-config.ts @@ -1,5 +1,6 @@ -module.exports = { - pathPrefix: "/keshavlingala.github.io", +import type {GatsbyConfig} from "gatsby"; + +const config: GatsbyConfig = { siteMetadata: { title: `Keshav Lingala`, description: `This portfolio showcases my work and accomplishments in the realm of computer science, focusing on personal projects and initiatives. It covers a range of topics from innovative research projects to hands-on programming tasks, reflecting my knowledge, skills, and abilities in the field. This portfolio serves as a testament to my dedication and hard work in pursuing my passion for technology. Feel free to contact me for further discussion or inquiries.`, @@ -11,32 +12,29 @@ module.exports = { siteUrl: `https://keshav.codes` }, plugins: [ + "gatsby-plugin-image", + "gatsby-plugin-sitemap", + "gatsby-plugin-sharp", + "gatsby-transformer-sharp", + { + resolve: `gatsby-source-filesystem`, + options: { + name: `content`, + path: `${__dirname}/src/content`, + }, + }, { resolve: `gatsby-plugin-google-gtag`, options: { - trackingIds: [ - "G-VNY508N935", - ], + trackingIds: ["G-VNY508N935"], gtagConfig: { optimize_id: "OPT_CONTAINER_ID", - anonymize_ip: true, - cookie_expires: 0, }, pluginConfig: { head: true, }, }, }, - `gatsby-plugin-react-helmet`, - { - resolve: `gatsby-source-filesystem`, - options: { - name: `content`, - path: `${__dirname}/src/content` - } - }, - `gatsby-transformer-sharp`, - `gatsby-plugin-sharp`, { resolve: `gatsby-plugin-manifest`, options: { @@ -46,50 +44,46 @@ module.exports = { background_color: `#1b1b1b`, theme_color: `#1b1b1b`, display: `fullscreen`, - icon: `src/content/images/logo.png` // This path is relative to the root of the site. - } + icon: `src/content/images/logo.png`, + }, }, - `gatsby-plugin-emotion`, + "gatsby-plugin-emotion", { resolve: `gatsby-plugin-mdx`, options: { extensions: [`.mdx`, `.md`], - defaultLayouts: { - default: require.resolve("./src/layouts/layout.jsx") - }, gatsbyRemarkPlugins: [ { resolve: `gatsby-remark-images`, options: { maxWidth: 800, - tracedSVG: {threshold: 100}, withWebp: true, - linkImagesToOriginal: true - } + linkImagesToOriginal: false, + showCaptions: true, + wrapperStyle: `margin: 0 0 1.45rem; text-align: center;`, + }, }, - { - resolve: "gatsby-remark-gifs" - } - ] - } - }, - { - resolve: `gatsby-plugin-offline`, - options: { - precachePages: [`/static/*`, "/*"], - start_url: "/?source=pwa", - short_name: "Keshav" - } + ], + }, }, - // this (optional) plugin enables Progressive Web App + Offline functionality - // To learn more, visit: https://gatsby.dev/offline - // `gatsby-plugin-offline`, { - resolve: `gatsby-plugin-sitemap`, + resolve: `gatsby-transformer-remark`, options: { - output: `/`, - excludes: ['/404'], + plugins: [ + { + resolve: `gatsby-remark-images`, + options: { + maxWidth: 800, + withWebp: true, + linkImagesToOriginal: false, + showCaptions: true, + wrapperStyle: `margin: 0 0 1.45rem; text-align: center;`, + }, + }, + ], }, - } - ] -} + }, + ], +}; + +export default config; diff --git a/gatsby-node.js b/gatsby-node.js deleted file mode 100644 index 397ef5d2..00000000 --- a/gatsby-node.js +++ /dev/null @@ -1,52 +0,0 @@ -/** - * Implement Gatsby's Node APIs in this file. - * - * See: https://www.gatsbyjs.org/docs/node-apis/ - */ - -// You can delete this file if you're not using it -exports.onCreateWebpackConfig = ({ actions, stage }) => { - // If production JavaScript and CSS build - if (stage === 'build-javascript') { - // Turn off source maps - actions.setWebpackConfig({ - devtool: false, - }) - } -}; -const path = require("path") -exports.createPages = async ({ graphql, actions, reporter }) => { - // Destructure the createPage function from the actions object - const { createPage } = actions - const result = await graphql(` - { - allMdx { - nodes { - id - frontmatter { - slug - } - } - } -} - - `) - if (result.errors) { - reporter.panicOnBuild("🚨 ERROR: Loading \"createPages\" query") - } - // Create blog post pages. - const posts = result.data.allMdx.nodes - // you'll call `createPage` for each result - posts.forEach(({ id,frontmatter:{slug} }, index) => { - createPage({ - // This is the slug you created before - // (or `node.frontmatter.slug`) - path: slug, - // This component will wrap our MDX content - component: path.resolve(`./src/components/PostLayout.jsx`), - // You can use the values in this context in - // our page layout component - context: { id: id } - }) - }) -} diff --git a/gatsby-node.ts b/gatsby-node.ts new file mode 100644 index 00000000..484decf6 --- /dev/null +++ b/gatsby-node.ts @@ -0,0 +1,116 @@ +import {GatsbyNode} from "gatsby"; +import path from "path"; +import {Compilation} from "webpack"; +import {PostLayoutType} from "./src/types"; + +export const createSchemaCustomization: GatsbyNode["createSchemaCustomization"] = ({actions: {createTypes}}) => { + createTypes(` + type Mdx implements Node { + frontmatter: MdxFrontmatter + } + + type MdxFrontmatter { + slug: String + tags: [String] + title: String + code: String + demo: String + description: String + date: Date @dateformat + featuredImage: File @fileByRelativePath + } + `); +}; + + +export const createPages: GatsbyNode["createPages"] = async ({graphql, actions, reporter}) => { + const {createPage} = actions; + const result = await graphql(` + { + allMdx(sort: {frontmatter: {date: DESC}}) { + edges { + node { + id + frontmatter { + slug + title + date + description + tags + featuredImage { + publicURL + } + } + internal { + contentFilePath + } + body + tableOfContents + } + next { + frontmatter { + slug + title + featuredImage { + childImageSharp { + gatsbyImageData( + layout: CONSTRAINED + formats: [AUTO, WEBP] + width: 50 + ) + } + } + } + } + previous { + frontmatter { + slug + title + featuredImage { + childImageSharp { + gatsbyImageData( + layout: CONSTRAINED + formats: [AUTO, WEBP] + width: 50 + ) + } + } + } + } + } + } + } + `); + + if (result.errors) { + console.log('Error Creating Projects', result.errors); + return; + } + const postTemplate = path.resolve("src/templates/PostLayout.tsx"); + const posts = result.data?.allMdx.edges || []; + posts.forEach(({node, next, previous}) => { + const {id, frontmatter, internal: {contentFilePath}, tableOfContents} = node; + createPage({ + path: frontmatter.slug, + component: `${postTemplate}?__contentFilePath=${contentFilePath}`, + context: {node, next, previous}, + }); + }); +}; + +export const onCreateWebpackConfig: GatsbyNode["onCreateWebpackConfig"] = ({actions}) => { + actions.setWebpackConfig({ + output: { + filename: '[name].[fullhash].js', // Replace [hash] with [fullhash] + }, + plugins: [ + { + apply: (compiler: any) => { + compiler.hooks.compilation.tap('MyPlugin', (compilation: any) => { + compilation.getAssetPath = Compilation.prototype.getAssetPath; // Replace MainTemplate.getAssetPath + }); + }, + }, + ], + }); +}; diff --git a/gatsby-ssr.js b/gatsby-ssr.js deleted file mode 100644 index b17b8fc1..00000000 --- a/gatsby-ssr.js +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Implement Gatsby's SSR (Server Side Rendering) APIs in this file. - * - * See: https://www.gatsbyjs.org/docs/ssr-apis/ - */ - -// You can delete this file if you're not using it diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..fc6089a0 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,28350 @@ +{ + "name": "keshavlingala-migrated", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "keshavlingala-migrated", + "version": "1.0.0", + "dependencies": { + "@emotion/react": "^11.13.0", + "@emotion/styled": "^11.13.0", + "@mdx-js/react": "^2.0.0", + "gatsby": "^5.13.7", + "gatsby-image": "^3.11.0", + "gatsby-plugin-emotion": "^8.13.1", + "gatsby-plugin-google-gtag": "^5.13.1", + "gatsby-plugin-image": "^3.14.0-next.2", + "gatsby-plugin-manifest": "^5.13.1", + "gatsby-plugin-mdx": "^5.13.1", + "gatsby-plugin-mdx-frontmatter": "^0.0.4", + "gatsby-plugin-react-helmet": "^6.13.1", + "gatsby-plugin-sharp": "^5.13.1", + "gatsby-plugin-sitemap": "^6.13.1", + "gatsby-remark-gifs": "^1.2.0", + "gatsby-remark-images": "^7.13.1", + "gatsby-source-filesystem": "^5.13.1", + "gatsby-transformer-remark": "^6.13.1", + "gatsby-transformer-sharp": "^5.13.1", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-helmet": "^6.1.0" + }, + "devDependencies": { + "@types/node": "^20.11.19", + "@types/react": "^18.2.55", + "@types/react-dom": "^18.2.19", + "ajv": "^8.17.1", + "typescript": "^5.3.3" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@ardatan/relay-compiler": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz", + "integrity": "sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==", + "dependencies": { + "@babel/core": "^7.14.0", + "@babel/generator": "^7.14.0", + "@babel/parser": "^7.14.0", + "@babel/runtime": "^7.0.0", + "@babel/traverse": "^7.14.0", + "@babel/types": "^7.0.0", + "babel-preset-fbjs": "^3.4.0", + "chalk": "^4.0.0", + "fb-watchman": "^2.0.0", + "fbjs": "^3.0.0", + "glob": "^7.1.1", + "immutable": "~3.7.6", + "invariant": "^2.2.4", + "nullthrows": "^1.1.1", + "relay-runtime": "12.0.0", + "signedsource": "^1.0.0", + "yargs": "^15.3.1" + }, + "bin": { + "relay-compiler": "bin/relay-compiler" + }, + "peerDependencies": { + "graphql": "*" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@ardatan/relay-compiler/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "dependencies": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.4.tgz", + "integrity": "sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", + "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-module-transforms": "^7.25.2", + "@babel/helpers": "^7.25.0", + "@babel/parser": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.2", + "@babel/types": "^7.25.2", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.25.1", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.1.tgz", + "integrity": "sha512-Y956ghgTT4j7rKesabkh5WeqgSFZVFwaPR0IWFm7KFHFmmJ4afbG49SmfW4S+GyRPx0Dy5jxEWA5t0rpxfElWg==", + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.6.tgz", + "integrity": "sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==", + "dependencies": { + "@babel/types": "^7.25.6", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", + "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", + "dependencies": { + "@babel/compat-data": "^7.25.2", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz", + "integrity": "sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/traverse": "^7.25.4", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz", + "integrity": "sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", + "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", + "dependencies": { + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", + "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz", + "integrity": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-wrap-function": "^7.25.0", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", + "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz", + "integrity": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==", + "dependencies": { + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.6.tgz", + "integrity": "sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==", + "dependencies": { + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz", + "integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==", + "dependencies": { + "@babel/types": "^7.25.6" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.3.tgz", + "integrity": "sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.0.tgz", + "integrity": "sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.0.tgz", + "integrity": "sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz", + "integrity": "sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.7.tgz", + "integrity": "sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.25.6.tgz", + "integrity": "sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.6.tgz", + "integrity": "sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", + "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.4.tgz", + "integrity": "sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.4.tgz", + "integrity": "sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-remap-async-to-generator": "^7.25.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/traverse": "^7.25.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz", + "integrity": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.4.tgz", + "integrity": "sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.4", + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.4.tgz", + "integrity": "sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/traverse": "^7.25.4", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", + "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.0.tgz", + "integrity": "sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.2.tgz", + "integrity": "sha512-InBZ0O8tew5V0K6cHcQ+wgxlrjOw1W4wDXLkOTjLRD8GYhTSkxTVBtdy3MMtvYBrbAWa1Qm3hNoTc1620Yj+Mg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/plugin-syntax-flow": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", + "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.25.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz", + "integrity": "sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz", + "integrity": "sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", + "dependencies": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", + "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", + "dependencies": { + "@babel/helper-module-transforms": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-simple-access": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz", + "integrity": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==", + "dependencies": { + "@babel/helper-module-transforms": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", + "dependencies": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", + "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", + "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", + "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.4.tgz", + "integrity": "sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.4", + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.7.tgz", + "integrity": "sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.2.tgz", + "integrity": "sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/types": "^7.25.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.24.7.tgz", + "integrity": "sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.7.tgz", + "integrity": "sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.4.tgz", + "integrity": "sha512-8hsyG+KUYGY0coX6KUCDancA0Vw225KJ2HJO0yCNr1vq5r+lJTleDaJf0K7iOhjw4SWhu03TMBzYTJ9krmzULQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.8", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", + "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz", + "integrity": "sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-typescript": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.4.tgz", + "integrity": "sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.25.4.tgz", + "integrity": "sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==", + "dependencies": { + "@babel/compat-data": "^7.25.4", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.3", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.0", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.0", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.0", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.4", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.25.0", + "@babel/plugin-transform-class-properties": "^7.25.4", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.25.4", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.0", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.25.1", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.25.2", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-modules-systemjs": "^7.25.0", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.25.4", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.8", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.4", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.37.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.7.tgz", + "integrity": "sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-transform-react-display-name": "^7.24.7", + "@babel/plugin-transform-react-jsx": "^7.24.7", + "@babel/plugin-transform-react-jsx-development": "^7.24.7", + "@babel/plugin-transform-react-pure-annotations": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz", + "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-typescript": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, + "node_modules/@babel/runtime": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.6.tgz", + "integrity": "sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.6.tgz", + "integrity": "sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.6", + "@babel/parser": "^7.25.6", + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.6", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz", + "integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==", + "dependencies": { + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@builder.io/partytown": { + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.6.tgz", + "integrity": "sha512-snXIGNiZpqjno3XYQN2lbBB+05hsQR/LSttbtIW1c0gmZ7Kh/DIo0YrxlDxCDulAMFPFM8J+4voLwvYepSj3sw==", + "bin": { + "partytown": "bin/partytown.cjs" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.12.0.tgz", + "integrity": "sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/serialize": "^1.2.0", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/babel-plugin-jsx-pragmatic": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin-jsx-pragmatic/-/babel-plugin-jsx-pragmatic-0.3.0.tgz", + "integrity": "sha512-XkRI5RdNl+f7HqpJADfTWlzZkd4tNaz2Gjzt97ZqN72jFSOqpL0grGGLdzKJ9dMQHXJBT/KZV+kphTycOblIsQ==", + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.17.12" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@emotion/babel-plugin/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/@emotion/babel-preset-css-prop": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/@emotion/babel-preset-css-prop/-/babel-preset-css-prop-11.12.0.tgz", + "integrity": "sha512-wJYhkqVvH4nbxqwmw6XEkF/IWFFRQhYXiv69p7gibbT/e4S/5bMatoukDxRVxZla7aNvpZbXnfPeeNDlFehkKA==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.17.12", + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.12.0", + "@emotion/babel-plugin-jsx-pragmatic": "^0.3.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@emotion/cache": { + "version": "11.13.1", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.13.1.tgz", + "integrity": "sha512-iqouYkuEblRcXmylXIwwOodiEK5Ifl7JcX7o6V4jI3iW4mLXX3dmt5xwBtIkJiQEXFAI+pC8X0i67yiPkH9Ucw==", + "dependencies": { + "@emotion/memoize": "^0.9.0", + "@emotion/sheet": "^1.4.0", + "@emotion/utils": "^1.4.0", + "@emotion/weak-memoize": "^0.4.0", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/hash": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz", + "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==" + }, + "node_modules/@emotion/is-prop-valid": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.0.tgz", + "integrity": "sha512-SHetuSLvJDzuNbOdtPVbq6yMMMlLoW5Q94uDqJZqy50gcmAjxFkVqmzqSGEFq9gT2iMuIeKV1PXVWmvUhuZLlQ==", + "dependencies": { + "@emotion/memoize": "^0.9.0" + } + }, + "node_modules/@emotion/memoize": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz", + "integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==" + }, + "node_modules/@emotion/react": { + "version": "11.13.3", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.13.3.tgz", + "integrity": "sha512-lIsdU6JNrmYfJ5EbUCf4xW1ovy5wKQ2CkPRM4xogziOxH1nXxBSjpC9YqbFAP7circxMfYp+6x676BqWcEiixg==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.12.0", + "@emotion/cache": "^11.13.0", + "@emotion/serialize": "^1.3.1", + "@emotion/use-insertion-effect-with-fallbacks": "^1.1.0", + "@emotion/utils": "^1.4.0", + "@emotion/weak-memoize": "^0.4.0", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/serialize": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.1.tgz", + "integrity": "sha512-dEPNKzBPU+vFPGa+z3axPRn8XVDetYORmDC0wAiej+TNcOZE70ZMJa0X7JdeoM6q/nWTMZeLpN/fTnD9o8MQBA==", + "dependencies": { + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/unitless": "^0.10.0", + "@emotion/utils": "^1.4.0", + "csstype": "^3.0.2" + } + }, + "node_modules/@emotion/sheet": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz", + "integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==" + }, + "node_modules/@emotion/styled": { + "version": "11.13.0", + "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.13.0.tgz", + "integrity": "sha512-tkzkY7nQhW/zC4hztlwucpT8QEZ6eUzpXDRhww/Eej4tFfO0FxQYWRyg/c5CCXa4d/f174kqeXYjuQRnhzf6dA==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.12.0", + "@emotion/is-prop-valid": "^1.3.0", + "@emotion/serialize": "^1.3.0", + "@emotion/use-insertion-effect-with-fallbacks": "^1.1.0", + "@emotion/utils": "^1.4.0" + }, + "peerDependencies": { + "@emotion/react": "^11.0.0-rc.0", + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/unitless": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz", + "integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.1.0.tgz", + "integrity": "sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emotion/utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.0.tgz", + "integrity": "sha512-spEnrA1b6hDR/C68lC2M7m6ALPUHZC0lIY7jAS/B/9DuuO1ZP04eov8SMv/6fwRd8pzmsn2AuJEznRREWlQrlQ==" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz", + "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==" + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.13.1.tgz", + "integrity": "sha512-ze0u/CAt6fKV2yQlExkBARi8oqA559lX6/GFWwdtD9S1J4h8Bje70Odl/bcIECvT/w9mWCCQEVtKLvqkraDopw==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@parcel/namer-default": "2.8.3", + "@parcel/plugin": "2.8.3", + "gatsby-core-utils": "^4.13.1" + }, + "engines": { + "node": ">=18.0.0", + "parcel": "2.x" + } + }, + "node_modules/@gatsbyjs/reach-router": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@gatsbyjs/reach-router/-/reach-router-2.0.1.tgz", + "integrity": "sha512-gmSZniS9/phwgEgpFARMpNg21PkYDZEpfgEzvkgpE/iku4uvXqCrxr86fXbTpI9mkrhKS1SCTYmLGe60VdHcdQ==", + "dependencies": { + "invariant": "^2.2.4", + "prop-types": "^15.8.1" + }, + "peerDependencies": { + "react": "18.x", + "react-dom": "18.x" + } + }, + "node_modules/@gatsbyjs/webpack-hot-middleware": { + "version": "2.25.3", + "resolved": "https://registry.npmjs.org/@gatsbyjs/webpack-hot-middleware/-/webpack-hot-middleware-2.25.3.tgz", + "integrity": "sha512-ul17OZ8Dlw+ATRbnuU+kwxuAlq9lKbYz/2uBS1FLCdgoPTF1H2heP7HbUbgfMZbfRQNcCG2rMscMnr32ritCDw==", + "dependencies": { + "ansi-html-community": "0.0.8", + "html-entities": "^2.3.3", + "strip-ansi": "^6.0.0" + } + }, + "node_modules/@graphql-codegen/add": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.3.tgz", + "integrity": "sha512-sQOnWpMko4JLeykwyjFTxnhqjd/3NOG2OyMuvK76Wnnwh8DRrNf2VEs2kmSvLl7MndMlOj7Kh5U154dVcvhmKQ==", + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.1.1", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/add/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/add/node_modules/change-case-all": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", + "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/@graphql-codegen/core": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.8.tgz", + "integrity": "sha512-JKllNIipPrheRgl+/Hm/xuWMw9++xNQ12XJR/OHHgFopOg4zmN3TdlRSyYcv/K90hCFkkIwhlHFUQTfKrm8rxQ==", + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.1.1", + "@graphql-tools/schema": "^9.0.0", + "@graphql-tools/utils": "^9.1.1", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/core/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/core/node_modules/change-case-all": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", + "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/@graphql-codegen/plugin-helpers": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.7.2.tgz", + "integrity": "sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==", + "dependencies": { + "@graphql-tools/utils": "^8.8.0", + "change-case-all": "1.0.14", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/plugin-helpers/node_modules/@graphql-tools/utils": { + "version": "8.13.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.13.1.tgz", + "integrity": "sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==", + "dependencies": { + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-codegen/schema-ast": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.6.1.tgz", + "integrity": "sha512-5TNW3b1IHJjCh07D2yQNGDQzUpUl2AD+GVe1Dzjqyx/d2Fn0TPMxLsHsKPS4Plg4saO8FK/QO70wLsP7fdbQ1w==", + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.1.2", + "@graphql-tools/utils": "^9.0.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/schema-ast/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/schema-ast/node_modules/change-case-all": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", + "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/@graphql-codegen/typescript": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.1.2", + "@graphql-codegen/schema-ast": "^2.6.1", + "@graphql-codegen/visitor-plugin-common": "2.13.8", + "auto-bind": "~4.0.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/typescript-operations": { + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.1.2", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", + "auto-bind": "~4.0.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/typescript-operations/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/typescript-operations/node_modules/change-case-all": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", + "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/@graphql-codegen/typescript/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/typescript/node_modules/change-case-all": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", + "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/@graphql-codegen/visitor-plugin-common": { + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.1.2", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^9.0.0", + "auto-bind": "~4.0.0", + "change-case-all": "1.0.15", + "dependency-graph": "^0.11.0", + "graphql-tag": "^2.11.0", + "parse-filepath": "^1.0.2", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/visitor-plugin-common/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/visitor-plugin-common/node_modules/change-case-all": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", + "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/@graphql-tools/code-file-loader": { + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", + "dependencies": { + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", + "globby": "^11.0.3", + "tslib": "^2.4.0", + "unixify": "^1.0.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/graphql-tag-pluck": { + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", + "dependencies": { + "@babel/parser": "^7.16.8", + "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/traverse": "^7.16.8", + "@babel/types": "^7.16.8", + "@graphql-tools/utils": "^9.2.1", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/load": { + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", + "dependencies": { + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", + "p-limit": "3.1.0", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/merge": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", + "dependencies": { + "@graphql-tools/utils": "^9.2.1", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/optimize": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", + "dependencies": { + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/relay-operation-optimizer": { + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", + "dependencies": { + "@ardatan/relay-compiler": "12.0.0", + "@graphql-tools/utils": "^9.2.1", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/schema": { + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", + "dependencies": { + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", + "tslib": "^2.4.0", + "value-or-promise": "^1.0.12" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/utils": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", + "dependencies": { + "@graphql-typed-document-node/core": "^3.1.1", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-typed-document-node/core": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", + "integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==", + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "deprecated": "Use @eslint/config-array instead", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "deprecated": "Use @eslint/object-schema instead" + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@lezer/common": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.2.1.tgz", + "integrity": "sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==" + }, + "node_modules/@lezer/lr": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.2.tgz", + "integrity": "sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==", + "dependencies": { + "@lezer/common": "^1.0.0" + } + }, + "node_modules/@lmdb/lmdb-darwin-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.3.tgz", + "integrity": "sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@lmdb/lmdb-darwin-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.3.tgz", + "integrity": "sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@lmdb/lmdb-linux-arm": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", + "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@lmdb/lmdb-linux-arm64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", + "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@lmdb/lmdb-linux-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", + "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@lmdb/lmdb-win32-x64": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", + "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@mdx-js/mdx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.0.1.tgz", + "integrity": "sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdx": "^2.0.0", + "collapse-white-space": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-build-jsx": "^3.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "estree-util-to-js": "^2.0.0", + "estree-walker": "^3.0.0", + "hast-util-to-estree": "^3.0.0", + "hast-util-to-jsx-runtime": "^2.0.0", + "markdown-extensions": "^2.0.0", + "periscopic": "^3.0.0", + "remark-mdx": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.0.0", + "source-map": "^0.7.0", + "unified": "^11.0.0", + "unist-util-position-from-estree": "^2.0.0", + "unist-util-stringify-position": "^4.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/mdx/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "peer": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@mdx-js/react": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-2.3.0.tgz", + "integrity": "sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==", + "dependencies": { + "@types/mdx": "^2.0.0", + "@types/react": ">=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "react": ">=16" + } + }, + "node_modules/@mischnic/json-sourcemap": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@mischnic/json-sourcemap/-/json-sourcemap-0.1.1.tgz", + "integrity": "sha512-iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w==", + "dependencies": { + "@lezer/common": "^1.0.0", + "@lezer/lr": "^1.0.0", + "json5": "^2.2.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz", + "integrity": "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.3.tgz", + "integrity": "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.3.tgz", + "integrity": "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.3.tgz", + "integrity": "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-x64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.3.tgz", + "integrity": "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-win32-x64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz", + "integrity": "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@parcel/bundler-default": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.8.3.tgz", + "integrity": "sha512-yJvRsNWWu5fVydsWk3O2L4yIy3UZiKWO2cPDukGOIWMgp/Vbpp+2Ct5IygVRtE22bnseW/E/oe0PV3d2IkEJGg==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/graph": "2.8.3", + "@parcel/hash": "2.8.3", + "@parcel/plugin": "2.8.3", + "@parcel/utils": "2.8.3", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/cache": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.8.3.tgz", + "integrity": "sha512-k7xv5vSQrJLdXuglo+Hv3yF4BCSs1tQ/8Vbd6CHTkOhf7LcGg6CPtLw053R/KdMpd/4GPn0QrAsOLdATm1ELtQ==", + "dependencies": { + "@parcel/fs": "2.8.3", + "@parcel/logger": "2.8.3", + "@parcel/utils": "2.8.3", + "lmdb": "2.5.2" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "peerDependencies": { + "@parcel/core": "^2.8.3" + } + }, + "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-darwin-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz", + "integrity": "sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-darwin-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz", + "integrity": "sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-linux-arm": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", + "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-linux-arm64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", + "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-linux-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", + "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-win32-x64": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", + "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@parcel/cache/node_modules/lmdb": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.2.tgz", + "integrity": "sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==", + "hasInstallScript": true, + "dependencies": { + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + }, + "optionalDependencies": { + "@lmdb/lmdb-darwin-arm64": "2.5.2", + "@lmdb/lmdb-darwin-x64": "2.5.2", + "@lmdb/lmdb-linux-arm": "2.5.2", + "@lmdb/lmdb-linux-arm64": "2.5.2", + "@lmdb/lmdb-linux-x64": "2.5.2", + "@lmdb/lmdb-win32-x64": "2.5.2" + } + }, + "node_modules/@parcel/cache/node_modules/node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" + }, + "node_modules/@parcel/codeframe": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.8.3.tgz", + "integrity": "sha512-FE7sY53D6n/+2Pgg6M9iuEC6F5fvmyBkRE4d9VdnOoxhTXtkEqpqYgX7RJ12FAQwNlxKq4suBJQMgQHMF2Kjeg==", + "dependencies": { + "chalk": "^4.1.0" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/codeframe/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@parcel/codeframe/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@parcel/codeframe/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@parcel/codeframe/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@parcel/codeframe/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@parcel/codeframe/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@parcel/compressor-raw": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.8.3.tgz", + "integrity": "sha512-bVDsqleBUxRdKMakWSlWC9ZjOcqDKE60BE+Gh3JSN6WJrycJ02P5wxjTVF4CStNP/G7X17U+nkENxSlMG77ySg==", + "dependencies": { + "@parcel/plugin": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/core": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.8.3.tgz", + "integrity": "sha512-Euf/un4ZAiClnlUXqPB9phQlKbveU+2CotZv7m7i+qkgvFn5nAGnrV4h1OzQU42j9dpgOxWi7AttUDMrvkbhCQ==", + "dependencies": { + "@mischnic/json-sourcemap": "^0.1.0", + "@parcel/cache": "2.8.3", + "@parcel/diagnostic": "2.8.3", + "@parcel/events": "2.8.3", + "@parcel/fs": "2.8.3", + "@parcel/graph": "2.8.3", + "@parcel/hash": "2.8.3", + "@parcel/logger": "2.8.3", + "@parcel/package-manager": "2.8.3", + "@parcel/plugin": "2.8.3", + "@parcel/source-map": "^2.1.1", + "@parcel/types": "2.8.3", + "@parcel/utils": "2.8.3", + "@parcel/workers": "2.8.3", + "abortcontroller-polyfill": "^1.1.9", + "base-x": "^3.0.8", + "browserslist": "^4.6.6", + "clone": "^2.1.1", + "dotenv": "^7.0.0", + "dotenv-expand": "^5.1.0", + "json5": "^2.2.0", + "msgpackr": "^1.5.4", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/core/node_modules/dotenv": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-7.0.0.tgz", + "integrity": "sha512-M3NhsLbV1i6HuGzBUH8vXrtxOk+tWmzWKDMbAVSUp3Zsjm7ywFeuwrUXhmhQyRK1q5B5GGy7hcXPbj3bnfZg2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@parcel/core/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@parcel/diagnostic": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.8.3.tgz", + "integrity": "sha512-u7wSzuMhLGWZjVNYJZq/SOViS3uFG0xwIcqXw12w54Uozd6BH8JlhVtVyAsq9kqnn7YFkw6pXHqAo5Tzh4FqsQ==", + "dependencies": { + "@mischnic/json-sourcemap": "^0.1.0", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/events": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.8.3.tgz", + "integrity": "sha512-hoIS4tAxWp8FJk3628bsgKxEvR7bq2scCVYHSqZ4fTi/s0+VymEATrRCUqf+12e5H47uw1/ZjoqrGtBI02pz4w==", + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/fs": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.8.3.tgz", + "integrity": "sha512-y+i+oXbT7lP0e0pJZi/YSm1vg0LDsbycFuHZIL80pNwdEppUAtibfJZCp606B7HOjMAlNZOBo48e3hPG3d8jgQ==", + "dependencies": { + "@parcel/fs-search": "2.8.3", + "@parcel/types": "2.8.3", + "@parcel/utils": "2.8.3", + "@parcel/watcher": "^2.0.7", + "@parcel/workers": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "peerDependencies": { + "@parcel/core": "^2.8.3" + } + }, + "node_modules/@parcel/fs-search": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.8.3.tgz", + "integrity": "sha512-DJBT2N8knfN7Na6PP2mett3spQLTqxFrvl0gv+TJRp61T8Ljc4VuUTb0hqBj+belaASIp3Q+e8+SgaFQu7wLiQ==", + "dependencies": { + "detect-libc": "^1.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/graph": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-2.8.3.tgz", + "integrity": "sha512-26GL8fYZPdsRhSXCZ0ZWliloK6DHlMJPWh6Z+3VVZ5mnDSbYg/rRKWmrkhnr99ZWmL9rJsv4G74ZwvDEXTMPBg==", + "dependencies": { + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/hash": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/hash/-/hash-2.8.3.tgz", + "integrity": "sha512-FVItqzjWmnyP4ZsVgX+G00+6U2IzOvqDtdwQIWisCcVoXJFCqZJDy6oa2qDDFz96xCCCynjRjPdQx2jYBCpfYw==", + "dependencies": { + "detect-libc": "^1.0.3", + "xxhash-wasm": "^0.4.2" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/logger": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.8.3.tgz", + "integrity": "sha512-Kpxd3O/Vs7nYJIzkdmB6Bvp3l/85ydIxaZaPfGSGTYOfaffSOTkhcW9l6WemsxUrlts4za6CaEWcc4DOvaMOPA==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/events": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/markdown-ansi": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.8.3.tgz", + "integrity": "sha512-4v+pjyoh9f5zuU/gJlNvNFGEAb6J90sOBwpKJYJhdWXLZMNFCVzSigxrYO+vCsi8G4rl6/B2c0LcwIMjGPHmFQ==", + "dependencies": { + "chalk": "^4.1.0" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/markdown-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@parcel/markdown-ansi/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@parcel/markdown-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@parcel/markdown-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@parcel/markdown-ansi/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@parcel/markdown-ansi/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@parcel/namer-default": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.8.3.tgz", + "integrity": "sha512-tJ7JehZviS5QwnxbARd8Uh63rkikZdZs1QOyivUhEvhN+DddSAVEdQLHGPzkl3YRk0tjFhbqo+Jci7TpezuAMw==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/plugin": "2.8.3", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/node-resolver-core": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.8.3.tgz", + "integrity": "sha512-12YryWcA5Iw2WNoEVr/t2HDjYR1iEzbjEcxfh1vaVDdZ020PiGw67g5hyIE/tsnG7SRJ0xdRx1fQ2hDgED+0Ww==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/utils": "2.8.3", + "nullthrows": "^1.1.1", + "semver": "^5.7.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/node-resolver-core/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@parcel/optimizer-terser": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.8.3.tgz", + "integrity": "sha512-9EeQlN6zIeUWwzrzu6Q2pQSaYsYGah8MtiQ/hog9KEPlYTP60hBv/+utDyYEHSQhL7y5ym08tPX5GzBvwAD/dA==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/plugin": "2.8.3", + "@parcel/source-map": "^2.1.1", + "@parcel/utils": "2.8.3", + "nullthrows": "^1.1.1", + "terser": "^5.2.0" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/package-manager": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.8.3.tgz", + "integrity": "sha512-tIpY5pD2lH53p9hpi++GsODy6V3khSTX4pLEGuMpeSYbHthnOViobqIlFLsjni+QA1pfc8NNNIQwSNdGjYflVA==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/fs": "2.8.3", + "@parcel/logger": "2.8.3", + "@parcel/types": "2.8.3", + "@parcel/utils": "2.8.3", + "@parcel/workers": "2.8.3", + "semver": "^5.7.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "peerDependencies": { + "@parcel/core": "^2.8.3" + } + }, + "node_modules/@parcel/package-manager/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@parcel/packager-js": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.8.3.tgz", + "integrity": "sha512-0pGKC3Ax5vFuxuZCRB+nBucRfFRz4ioie19BbDxYnvBxrd4M3FIu45njf6zbBYsI9eXqaDnL1b3DcZJfYqtIzw==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/hash": "2.8.3", + "@parcel/plugin": "2.8.3", + "@parcel/source-map": "^2.1.1", + "@parcel/utils": "2.8.3", + "globals": "^13.2.0", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/packager-js/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@parcel/packager-raw": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.8.3.tgz", + "integrity": "sha512-BA6enNQo1RCnco9MhkxGrjOk59O71IZ9DPKu3lCtqqYEVd823tXff2clDKHK25i6cChmeHu6oB1Rb73hlPqhUA==", + "dependencies": { + "@parcel/plugin": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/plugin": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.8.3.tgz", + "integrity": "sha512-jZ6mnsS4D9X9GaNnvrixDQwlUQJCohDX2hGyM0U0bY2NWU8Km97SjtoCpWjq+XBCx/gpC4g58+fk9VQeZq2vlw==", + "dependencies": { + "@parcel/types": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/reporter-dev-server": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.8.3.tgz", + "integrity": "sha512-Y8C8hzgzTd13IoWTj+COYXEyCkXfmVJs3//GDBsH22pbtSFMuzAZd+8J9qsCo0EWpiDow7V9f1LischvEh3FbQ==", + "dependencies": { + "@parcel/plugin": "2.8.3", + "@parcel/utils": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/resolver-default": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.8.3.tgz", + "integrity": "sha512-k0B5M/PJ+3rFbNj4xZSBr6d6HVIe6DH/P3dClLcgBYSXAvElNDfXgtIimbjCyItFkW9/BfcgOVKEEIZOeySH/A==", + "dependencies": { + "@parcel/node-resolver-core": "2.8.3", + "@parcel/plugin": "2.8.3" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/runtime-js": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.8.3.tgz", + "integrity": "sha512-IRja0vNKwvMtPgIqkBQh0QtRn0XcxNC8HU1jrgWGRckzu10qJWO+5ULgtOeR4pv9krffmMPqywGXw6l/gvJKYQ==", + "dependencies": { + "@parcel/plugin": "2.8.3", + "@parcel/utils": "2.8.3", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/source-map": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.1.tgz", + "integrity": "sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew==", + "dependencies": { + "detect-libc": "^1.0.3" + }, + "engines": { + "node": "^12.18.3 || >=14" + } + }, + "node_modules/@parcel/transformer-js": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.8.3.tgz", + "integrity": "sha512-9Qd6bib+sWRcpovvzvxwy/PdFrLUXGfmSW9XcVVG8pvgXsZPFaNjnNT8stzGQj1pQiougCoxMY4aTM5p1lGHEQ==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/plugin": "2.8.3", + "@parcel/source-map": "^2.1.1", + "@parcel/utils": "2.8.3", + "@parcel/workers": "2.8.3", + "@swc/helpers": "^0.4.12", + "browserslist": "^4.6.6", + "detect-libc": "^1.0.3", + "nullthrows": "^1.1.1", + "regenerator-runtime": "^0.13.7", + "semver": "^5.7.1" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "peerDependencies": { + "@parcel/core": "^2.8.3" + } + }, + "node_modules/@parcel/transformer-js/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/@parcel/transformer-js/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@parcel/transformer-json": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.8.3.tgz", + "integrity": "sha512-B7LmVq5Q7bZO4ERb6NHtRuUKWGysEeaj9H4zelnyBv+wLgpo4f5FCxSE1/rTNmP9u1qHvQ3scGdK6EdSSokGPg==", + "dependencies": { + "@parcel/plugin": "2.8.3", + "json5": "^2.2.0" + }, + "engines": { + "node": ">= 12.0.0", + "parcel": "^2.8.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/types": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.8.3.tgz", + "integrity": "sha512-FECA1FB7+0UpITKU0D6TgGBpGxYpVSMNEENZbSJxFSajNy3wrko+zwBKQmFOLOiPcEtnGikxNs+jkFWbPlUAtw==", + "dependencies": { + "@parcel/cache": "2.8.3", + "@parcel/diagnostic": "2.8.3", + "@parcel/fs": "2.8.3", + "@parcel/package-manager": "2.8.3", + "@parcel/source-map": "^2.1.1", + "@parcel/workers": "2.8.3", + "utility-types": "^3.10.0" + } + }, + "node_modules/@parcel/utils": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.8.3.tgz", + "integrity": "sha512-IhVrmNiJ+LOKHcCivG5dnuLGjhPYxQ/IzbnF2DKNQXWBTsYlHkJZpmz7THoeLtLliGmSOZ3ZCsbR8/tJJKmxjA==", + "dependencies": { + "@parcel/codeframe": "2.8.3", + "@parcel/diagnostic": "2.8.3", + "@parcel/hash": "2.8.3", + "@parcel/logger": "2.8.3", + "@parcel/markdown-ansi": "2.8.3", + "@parcel/source-map": "^2.1.1", + "chalk": "^4.1.0" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@parcel/utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@parcel/utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@parcel/utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@parcel/utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@parcel/utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@parcel/watcher": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", + "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.4.1", + "@parcel/watcher-darwin-arm64": "2.4.1", + "@parcel/watcher-darwin-x64": "2.4.1", + "@parcel/watcher-freebsd-x64": "2.4.1", + "@parcel/watcher-linux-arm-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-musl": "2.4.1", + "@parcel/watcher-linux-x64-glibc": "2.4.1", + "@parcel/watcher-linux-x64-musl": "2.4.1", + "@parcel/watcher-win32-arm64": "2.4.1", + "@parcel/watcher-win32-ia32": "2.4.1", + "@parcel/watcher-win32-x64": "2.4.1" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", + "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", + "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", + "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", + "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", + "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", + "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", + "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", + "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", + "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", + "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", + "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", + "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/workers": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.8.3.tgz", + "integrity": "sha512-+AxBnKgjqVpUHBcHLWIHcjYgKIvHIpZjN33mG5LG9XXvrZiqdWvouEzqEXlVLq5VzzVbKIQQcmsvRy138YErkg==", + "dependencies": { + "@parcel/diagnostic": "2.8.3", + "@parcel/logger": "2.8.3", + "@parcel/types": "2.8.3", + "@parcel/utils": "2.8.3", + "chrome-trace-event": "^1.0.2", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "peerDependencies": { + "@parcel/core": "^2.8.3" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz", + "integrity": "sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==", + "dependencies": { + "ansi-html": "^0.0.9", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^4.2.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <5.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x || 5.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pnpm/config.env-replace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", + "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", + "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", + "dependencies": { + "graceful-fs": "4.2.10" + }, + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + }, + "node_modules/@pnpm/npm-conf": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz", + "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==", + "dependencies": { + "@pnpm/config.env-replace": "^1.1.0", + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@sideway/address": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", + "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==" + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" + }, + "node_modules/@sigmacomputing/babel-plugin-lodash": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@sigmacomputing/babel-plugin-lodash/-/babel-plugin-lodash-3.3.5.tgz", + "integrity": "sha512-VFhaHjlNzWyBtBm3YdqOwP8GbQHK7sWzXKpSUBTLjl2Zz6/9PwCK4qXZXI5CHpDjmvbouHUDbjrZP2KU5h6VQg==", + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/types": "^7.0.0", + "glob": "^7.1.1", + "lodash": "^4.17.10", + "require-package-name": "^2.0.1" + } + }, + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@sindresorhus/slugify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-1.1.2.tgz", + "integrity": "sha512-V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA==", + "dependencies": { + "@sindresorhus/transliterate": "^0.1.1", + "escape-string-regexp": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@sindresorhus/transliterate": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-0.1.2.tgz", + "integrity": "sha512-5/kmIOY9FF32nicXH+5yLNTX4NJ4atl7jRgqAJuIn/iyDFXBktOKDxCvyGE/EzmF4ngSUvjXxQUQlQiZ5lfw+w==", + "dependencies": { + "escape-string-regexp": "^2.0.0", + "lodash.deburr": "^4.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@sindresorhus/transliterate/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@socket.io/component-emitter": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz", + "integrity": "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==" + }, + "node_modules/@swc/helpers": { + "version": "0.4.36", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.36.tgz", + "integrity": "sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q==", + "dependencies": { + "legacy-swc-helpers": "npm:@swc/helpers@=0.4.14", + "tslib": "^2.4.0" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@tokenizer/token": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", + "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@turist/fetch": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@turist/fetch/-/fetch-7.2.0.tgz", + "integrity": "sha512-2x7EGw+6OJ29phunsbGvtxlNmSfcuPcyYudkMbi8gARCP9eJ1CtuMvnVUHL//O9Ixi9SJiug8wNt6lj86pN8XQ==", + "dependencies": { + "@types/node-fetch": "2" + }, + "peerDependencies": { + "node-fetch": "2" + } + }, + "node_modules/@turist/time": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/@turist/time/-/time-0.0.2.tgz", + "integrity": "sha512-qLOvfmlG2vCVw5fo/oz8WAZYlpe5a5OurgTj3diIxJCdjRHpapC+vQCz3er9LV79Vcat+DifBjeAhOAdmndtDQ==" + }, + "node_modules/@types/acorn": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", + "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "node_modules/@types/common-tags": { + "version": "1.8.4", + "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.4.tgz", + "integrity": "sha512-S+1hLDJPjWNDhcGxsxEbepzaxWqURP/o+3cP4aa2w7yBXgdcmKGQtZzP8JbyfOd0m+33nh+8+kvxYE2UJtBDkg==" + }, + "node_modules/@types/configstore": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", + "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" + }, + "node_modules/@types/cookie": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" + }, + "node_modules/@types/cors": { + "version": "2.8.17", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.17.tgz", + "integrity": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/debug": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", + "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" + }, + "node_modules/@types/eslint": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", + "integrity": "sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + }, + "node_modules/@types/estree-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/@types/extend": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/extend/-/extend-3.0.4.tgz", + "integrity": "sha512-ArMouDUTJEz1SQRpFsT2rIw7DeqICFv5aaVzLSIYMYQSLcwcGOfT3VyglQs/p7K3F7fT4zxr0NWxYZIdifD6dA==" + }, + "node_modules/@types/get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" + }, + "node_modules/@types/glob": { + "version": "5.0.38", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.38.tgz", + "integrity": "sha512-rTtf75rwyP9G2qO5yRpYtdJ6aU1QqEhWbtW55qEgquEDa6bXW0s2TWZfDm02GuppjEozOWG/F2UnPq5hAQb+gw==", + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "peer": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.15", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", + "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/lodash": { + "version": "4.17.7", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.7.tgz", + "integrity": "sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==" + }, + "node_modules/@types/mdast": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", + "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/@types/mdast/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/@types/mdx": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", + "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==" + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" + }, + "node_modules/@types/mkdirp": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", + "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/ms": { + "version": "0.7.34", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", + "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==" + }, + "node_modules/@types/node": { + "version": "20.16.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.16.2.tgz", + "integrity": "sha512-91s/n4qUPV/wg8eE9KHYW1kouTfDk2FPGjXbBMfRWP/2vg1rCXNQL1OCabwGs0XSdukuK+MwCDXE30QpSeMUhQ==", + "dependencies": { + "undici-types": "~6.19.2" + } + }, + "node_modules/@types/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", + "dependencies": { + "@types/node": "*", + "form-data": "^4.0.0" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" + }, + "node_modules/@types/parse5": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz", + "integrity": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.12", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", + "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==" + }, + "node_modules/@types/reach__router": { + "version": "1.3.15", + "resolved": "https://registry.npmjs.org/@types/reach__router/-/reach__router-1.3.15.tgz", + "integrity": "sha512-5WEHKGglRjq/Ae3F8UQxg+GYUIhTUEiyBT9GKPoOLU/vPTn8iZrRbdzxqvarOaGludIejJykHLMdOCdhgWqaxA==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react": { + "version": "18.3.5", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.5.tgz", + "integrity": "sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.0", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", + "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/responselike": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", + "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/rimraf": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", + "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", + "dependencies": { + "@types/glob": "*", + "@types/node": "*" + } + }, + "node_modules/@types/sax": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz", + "integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==" + }, + "node_modules/@types/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "peer": true + }, + "node_modules/@types/yoga-layout": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", + "integrity": "sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", + "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", + "peer": true, + "dependencies": { + "@typescript-eslint/experimental-utils": "4.33.0", + "@typescript-eslint/scope-manager": "4.33.0", + "debug": "^4.3.1", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.1.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^4.0.0", + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "peer": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", + "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", + "peer": true, + "dependencies": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "peer": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", + "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", + "peer": true, + "dependencies": { + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "debug": "^4.3.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", + "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", + "peer": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", + "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", + "peer": true, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", + "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", + "peer": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "peer": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", + "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", + "peer": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "peer": true + }, + "node_modules/@vercel/webpack-asset-relocator-loader": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "dependencies": { + "resolve": "^1.10.0" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.12.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/abortcontroller-polyfill": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.5.tgz", + "integrity": "sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-loose": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/acorn-loose/-/acorn-loose-8.4.0.tgz", + "integrity": "sha512-M0EUka6rb+QC4l9Z3T0nJEzNOO7JcoJlYMrBlyBCiFSXRyxjLKayd4TbQs2FDRWQU1h9FR7QVNHt+PEaoNL5rQ==", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.3", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.3.tgz", + "integrity": "sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/anser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/anser/-/anser-2.1.1.tgz", + "integrity": "sha512-nqLm4HxOTpeLOxcmB3QWmV5TcDFhW9y/fyQ+hivtDFcK4OQ+pQ5fzPnXHM1Mfcm0VkLtvVi1TCPr++Qy0Q/3EQ==" + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", + "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/append-field": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", + "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" + }, + "node_modules/application-config-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz", + "integrity": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==" + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-iterate": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array-iterate/-/array-iterate-1.1.4.tgz", + "integrity": "sha512-sNRaPGh9nnmdC8Zf+pT3UqP8rnWj5Hf9wiFGsX3wUQ2yVSIhO2ShFwCoceIPpB41QF6i2OEmrHmCo36xronCVA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", + "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "engines": { + "node": ">=8" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==" + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/astring": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz", + "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==", + "bin": { + "astring": "bin/astring" + } + }, + "node_modules/async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/auto-bind": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz", + "integrity": "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.20", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.23.3", + "caniuse-lite": "^1.0.30001646", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.0.tgz", + "integrity": "sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "dependencies": { + "follow-redirects": "^1.14.0" + } + }, + "node_modules/axobject-query": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/b4a": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz", + "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==" + }, + "node_modules/babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "deprecated": "babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "node_modules/babel-eslint/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-jsx-utils": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/babel-jsx-utils/-/babel-jsx-utils-1.1.0.tgz", + "integrity": "sha512-Mh1j/rw4xM9T3YICkw22aBQ78FhsHdsmlb9NEk4uVAFBOg+Ez9ZgXXHugoBPCZui3XLomk/7/JBBH4daJqTkQQ==" + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/babel-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/babel-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-add-module-exports": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-1.0.4.tgz", + "integrity": "sha512-g+8yxHUZ60RcyaUpfNzy56OtWW+x9cyEe9j+CranqLiqbju2yf/Cy6ZtYK40EZxtrdHllzlVZgLmcOUCTlJ7Jg==" + }, + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.2", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", + "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-remove-graphql-queries": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.13.1.tgz", + "integrity": "sha512-yncJ/W6Un48aBRpK/rmdpQOMcr4+EmJ3oi2Wq1zXKu8WLlw+j93KTbejf7fg2msm8GUskb/+9Nnpz7oMCqO9aA==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@babel/types": "^7.20.7", + "gatsby-core-utils": "^4.13.1" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "gatsby": "^5.0.0-next" + } + }, + "node_modules/babel-plugin-syntax-trailing-function-commas": { + "version": "7.0.0-beta.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz", + "integrity": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==" + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "node_modules/babel-preset-fbjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz", + "integrity": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==", + "dependencies": { + "@babel/plugin-proposal-class-properties": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.0.0", + "@babel/plugin-syntax-class-properties": "^7.0.0", + "@babel/plugin-syntax-flow": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.0.0", + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "@babel/plugin-transform-arrow-functions": "^7.0.0", + "@babel/plugin-transform-block-scoped-functions": "^7.0.0", + "@babel/plugin-transform-block-scoping": "^7.0.0", + "@babel/plugin-transform-classes": "^7.0.0", + "@babel/plugin-transform-computed-properties": "^7.0.0", + "@babel/plugin-transform-destructuring": "^7.0.0", + "@babel/plugin-transform-flow-strip-types": "^7.0.0", + "@babel/plugin-transform-for-of": "^7.0.0", + "@babel/plugin-transform-function-name": "^7.0.0", + "@babel/plugin-transform-literals": "^7.0.0", + "@babel/plugin-transform-member-expression-literals": "^7.0.0", + "@babel/plugin-transform-modules-commonjs": "^7.0.0", + "@babel/plugin-transform-object-super": "^7.0.0", + "@babel/plugin-transform-parameters": "^7.0.0", + "@babel/plugin-transform-property-literals": "^7.0.0", + "@babel/plugin-transform-react-display-name": "^7.0.0", + "@babel/plugin-transform-react-jsx": "^7.0.0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0", + "@babel/plugin-transform-spread": "^7.0.0", + "@babel/plugin-transform-template-literals": "^7.0.0", + "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-gatsby": { + "version": "3.13.2", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.13.2.tgz", + "integrity": "sha512-1zZ3Fpt9jD63inJXWUF2hA6U2cBAMYFDSC5hKqnSSVbNUzKlHUcY0Vbx8azBSaHg27TVp9BitR10zvq5AHP/OQ==", + "dependencies": { + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.20.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-classes": "^7.20.7", + "@babel/plugin-transform-runtime": "^7.19.6", + "@babel/plugin-transform-spread": "^7.20.7", + "@babel/preset-env": "^7.20.2", + "@babel/preset-react": "^7.18.6", + "@babel/runtime": "^7.20.13", + "babel-plugin-dynamic-import-node": "^2.3.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24", + "gatsby-core-utils": "^4.13.1", + "gatsby-legacy-polyfills": "^3.13.1" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.6", + "core-js": "^3.0.0" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/bare-events": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.4.2.tgz", + "integrity": "sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==", + "optional": true + }, + "node_modules/bare-fs": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.3.3.tgz", + "integrity": "sha512-7RYKL+vZVCyAsMLi5SPu7QGauGGT8avnP/HO571ndEuV4MYdGXvLhtW67FuLPeEI8EiIY7zbbRR9x7x7HU0kgw==", + "optional": true, + "dependencies": { + "bare-events": "^2.0.0", + "bare-path": "^2.0.0", + "bare-stream": "^2.0.0" + } + }, + "node_modules/bare-os": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.4.2.tgz", + "integrity": "sha512-HZoJwzC+rZ9lqEemTMiO0luOePoGYNBgsLLgegKR/cljiJvcDNhDZQkzC+NC5Oh0aHbdBNSOHpghwMuB5tqhjg==", + "optional": true + }, + "node_modules/bare-path": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.3.tgz", + "integrity": "sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==", + "optional": true, + "dependencies": { + "bare-os": "^2.1.0" + } + }, + "node_modules/bare-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.2.0.tgz", + "integrity": "sha512-+o9MG5bPRRBlkVSpfFlMag3n7wMaIZb4YZasU2+/96f+3HTQ4F9DKQeu3K/Sjz1W0umu6xvVq1ON0ipWdMlr3A==", + "optional": true, + "dependencies": { + "streamx": "^2.18.0" + } + }, + "node_modules/base-x": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.10.tgz", + "integrity": "sha512-7d0s06rR9rYaIWHkpfLIFICM/tkSVdoPC9qYAQRpxn9DdKNWNsKC0uk++akckyLq16Tx2WIinnZ6WRriAt6njQ==", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/base64id": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", + "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", + "engines": { + "node": "^4.5.0 || >= 5.9" + } + }, + "node_modules/bcp-47-match": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/bcp-47-match/-/bcp-47-match-2.0.3.tgz", + "integrity": "sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/better-opn": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz", + "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==", + "dependencies": { + "open": "^7.0.3" + }, + "engines": { + "node": ">8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "node_modules/boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/boxen/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/boxen/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/boxen/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", + "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001646", + "electron-to-chromium": "^1.5.4", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cache-manager": { + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/cache-manager/-/cache-manager-2.11.1.tgz", + "integrity": "sha512-XhUuc9eYwkzpK89iNewFwtvcDYMUsvtwzHeyEOPJna/WsVsXcrzsA1ft2M0QqPNunEzLhNCYPo05tEfG+YuNow==", + "dependencies": { + "async": "1.5.2", + "lodash.clonedeep": "4.5.0", + "lru-cache": "4.0.0" + } + }, + "node_modules/cache-manager/node_modules/lru-cache": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.0.tgz", + "integrity": "sha512-WKhDkjlLwzE8jAQdQlsxLUQTPXLCKX/4cJk6s5AlRtJkDBk0IKH5O51bVDH61K9N4bhbbyvLM6EiOuE8ovApPA==", + "dependencies": { + "pseudomap": "^1.0.1", + "yallist": "^2.0.0" + } + }, + "node_modules/cache-manager/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" + }, + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001655", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001655.tgz", + "integrity": "sha512-jRGVy3iSGO5Uutn2owlb5gR6qsGngTw9ZTb4ali9f3glshcNmJ2noam4Mo9zia5P9Dk3jNNydy7vQjuE5dQmfg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/ccount": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz", + "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dependencies": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/change-case-all": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.14.tgz", + "integrity": "sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==", + "dependencies": { + "change-case": "^4.1.2", + "is-lower-case": "^2.0.2", + "is-upper-case": "^2.0.2", + "lower-case": "^2.0.2", + "lower-case-first": "^2.0.2", + "sponge-case": "^1.0.1", + "swap-case": "^2.0.2", + "title-case": "^3.0.3", + "upper-case": "^2.0.2", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.4.tgz", + "integrity": "sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-reference-invalid": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + }, + "node_modules/cheerio": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", + "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", + "dependencies": { + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "parse5": "^7.0.0", + "parse5-htmlparser2-tree-adapter": "^7.0.0" + }, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + } + }, + "node_modules/cheerio-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", + "dependencies": { + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/clipboardy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-4.0.0.tgz", + "integrity": "sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==", + "dependencies": { + "execa": "^8.0.1", + "is-wsl": "^3.1.0", + "is64bit": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/clipboardy/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "engines": { + "node": ">=16.17.0" + } + }, + "node_modules/clipboardy/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/clipboardy/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/cliui/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/cliui/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/cliui/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/collapse-white-space": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz", + "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==", + "peer": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "node_modules/colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/command-exists": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", + "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "node_modules/constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-hrtime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", + "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/core-js": { + "version": "3.38.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.38.1.tgz", + "integrity": "sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.38.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz", + "integrity": "sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==", + "dependencies": { + "browserslist": "^4.23.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-pure": { + "version": "3.38.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.38.1.tgz", + "integrity": "sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/create-gatsby": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.13.1.tgz", + "integrity": "sha512-CCg8Vz/iQs1cgMEzyRlVGMvNs8ivE/2w+TL6yS56FVe1JjOou8nKYHzxnWxRmBUtC7rTfjxVaTESIotuYBsltQ==", + "dependencies": { + "@babel/runtime": "^7.20.13" + }, + "bin": { + "create-gatsby": "cli.js" + } + }, + "node_modules/cross-fetch": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", + "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", + "dependencies": { + "node-fetch": "^2.6.12" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "dependencies": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/css-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/css-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/css-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-2.0.0.tgz", + "integrity": "sha512-cG/uc94727tx5pBNtb1Sd7gvUPzwmcQi1lkpfqTpdkuNq75hJCw7bIVsCNijLm4dhDcr1atvuysl2rZqOG8Txw==", + "dependencies": { + "cssnano": "^5.0.0", + "jest-worker": "^26.3.0", + "p-limit": "^3.0.2", + "postcss": "^8.2.9", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-selector-parser": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-1.4.1.tgz", + "integrity": "sha512-HYPSb7y/Z7BNDCOrakL4raGO2zltZkbeXyAd6Tg9obzix6QhzxCotdBl6VT0Dv4vZfJGVz3WL/xaEI9Ly3ul0g==" + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/d": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz", + "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==", + "dependencies": { + "es5-ext": "^0.10.64", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/debug": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-named-character-reference": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", + "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-equal": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz", + "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.5", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.2", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dependency-graph": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", + "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/detect-port": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz", + "integrity": "sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "4" + }, + "bin": { + "detect": "bin/detect-port.js", + "detect-port": "bin/detect-port.js" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/devcert": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", + "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", + "dependencies": { + "@types/configstore": "^2.1.1", + "@types/debug": "^0.0.30", + "@types/get-port": "^3.2.0", + "@types/glob": "^5.0.34", + "@types/lodash": "^4.14.92", + "@types/mkdirp": "^0.5.2", + "@types/node": "^8.5.7", + "@types/rimraf": "^2.0.2", + "@types/tmp": "^0.0.33", + "application-config-path": "^0.1.0", + "command-exists": "^1.2.4", + "debug": "^3.1.0", + "eol": "^0.9.1", + "get-port": "^3.2.0", + "glob": "^7.1.2", + "is-valid-domain": "^0.1.6", + "lodash": "^4.17.4", + "mkdirp": "^0.5.1", + "password-prompt": "^1.0.4", + "rimraf": "^2.6.2", + "sudo-prompt": "^8.2.0", + "tmp": "^0.0.33", + "tslib": "^1.10.0" + } + }, + "node_modules/devcert/node_modules/@types/node": { + "version": "8.10.66", + "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", + "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" + }, + "node_modules/devcert/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/devcert/node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/devcert/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "peer": true, + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/direction": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/direction/-/direction-2.0.1.tgz", + "integrity": "sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==", + "bin": { + "direction": "cli.js" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", + "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz", + "integrity": "sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/engine.io": { + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.5.5.tgz", + "integrity": "sha512-C5Pn8Wk+1vKBoHghJODM63yk8MvrO9EWZUfkAt5HAqIgPE4/8FF0PEGHXtEd40l223+cE5ABWuPzm38PHFXfMA==", + "dependencies": { + "@types/cookie": "^0.4.1", + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", + "accepts": "~1.3.4", + "base64id": "2.0.0", + "cookie": "~0.4.1", + "cors": "~2.8.5", + "debug": "~4.3.1", + "engine.io-parser": "~5.2.1", + "ws": "~8.17.1" + }, + "engines": { + "node": ">=10.2.0" + } + }, + "node_modules/engine.io-client": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.5.4.tgz", + "integrity": "sha512-GeZeeRjpD2qf49cZQ0Wvh/8NJNfeXkXXcoGh+F77oEAgo9gUHwT1fCRxSNU+YEEaysOJTnsFHmM5oAcPy4ntvQ==", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1", + "engine.io-parser": "~5.2.1", + "ws": "~8.17.1", + "xmlhttprequest-ssl": "~2.0.0" + } + }, + "node_modules/engine.io-parser": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz", + "integrity": "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/engine.io/node_modules/cookie": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/enquirer": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", + "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", + "dependencies": { + "ansi-colors": "^4.1.1", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/envinfo": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", + "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eol": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", + "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz", + "integrity": "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es5-ext": { + "version": "0.10.64", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz", + "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==", + "hasInstallScript": true, + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "esniff": "^2.0.1", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + }, + "node_modules/es6-symbol": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz", + "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==", + "dependencies": { + "d": "^1.0.2", + "ext": "^1.7.0" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dependencies": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-react-app": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz", + "integrity": "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==", + "dependencies": { + "confusing-browser-globals": "^1.0.10" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0", + "@typescript-eslint/parser": "^4.0.0", + "babel-eslint": "^10.0.0", + "eslint": "^7.5.0", + "eslint-plugin-flowtype": "^5.2.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-jest": "^24.0.0", + "eslint-plugin-jsx-a11y": "^6.3.1", + "eslint-plugin-react": "^7.20.3", + "eslint-plugin-react-hooks": "^4.0.8", + "eslint-plugin-testing-library": "^3.9.0" + }, + "peerDependenciesMeta": { + "eslint-plugin-jest": { + "optional": true + }, + "eslint-plugin-testing-library": { + "optional": true + } + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.2.tgz", + "integrity": "sha512-3XnC5fDyc8M4J2E8pt8pmSVRX2M+5yWMCfI/kDZwauQeFgzQOuhcRBFKjTeJagqgk4sFKxe1mvNVnaWwImx/Tg==", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.10.0.tgz", + "integrity": "sha512-vcz32f+7TP+kvTUyMXZmCnNujBQZDNmcqPImw8b9PZ+16w1Qdm6ryRuYZYVaG9xRqqmAPr2Cs9FAX5gN+x/bjw==", + "dependencies": { + "lodash": "^4.17.15", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.1.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "dependencies": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.9.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.9.0.tgz", + "integrity": "sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g==", + "dependencies": { + "aria-query": "~5.1.3", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.9.1", + "axobject-query": "~3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "es-iterator-helpers": "^1.0.19", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.0" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.35.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.35.0.tgz", + "integrity": "sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA==", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.2", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.19", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.8", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.0", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.11", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", + "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.7.0.tgz", + "integrity": "sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==", + "dependencies": { + "@types/eslint": "^7.29.0", + "arrify": "^2.0.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^3.1.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/eslint/node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/eslint/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/eslint/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/eslint/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/esniff": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", + "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.62", + "event-emitter": "^0.3.5", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/espree/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-util-attach-comments": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz", + "integrity": "sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-build-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz", + "integrity": "sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==", + "peer": true, + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "estree-walker": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-is-identifier-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", + "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", + "peer": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-to-js": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz", + "integrity": "sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==", + "peer": true, + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "astring": "^1.8.0", + "source-map": "^0.7.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-to-js/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "peer": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/estree-util-visit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz", + "integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==", + "peer": true, + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", + "dependencies": { + "d": "1", + "es5-ext": "~0.10.14" + } + }, + "node_modules/event-source-polyfill": { + "version": "1.0.31", + "resolved": "https://registry.npmjs.org/event-source-polyfill/-/event-source-polyfill-1.0.31.tgz", + "integrity": "sha512-4IJSItgS/41IxN5UVAVuAyczwZF7ZIEsM1XAoUzIHA6A+xzusEZUutdXz2Nr+MQPLxfTiCvqE79/C8HT8fKFvA==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/express": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express-http-proxy": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/express-http-proxy/-/express-http-proxy-1.6.3.tgz", + "integrity": "sha512-/l77JHcOUrDUX8V67E287VEUQT0lbm71gdGVoodnlWBziarYKgMcpqT7xvh/HM8Jv52phw8Bd8tY+a7QjOr7Yg==", + "dependencies": { + "debug": "^3.0.1", + "es6-promise": "^4.1.1", + "raw-body": "^2.3.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/express-http-proxy/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/express/node_modules/body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/express/node_modules/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/express/node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dependencies": { + "type": "^2.7.2" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/external-editor/node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "node_modules/fast-uri": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", + "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==" + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fbjs": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz", + "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==", + "dependencies": { + "cross-fetch": "^3.1.5", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^1.0.35" + } + }, + "node_modules/fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/file-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/file-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/file-type": { + "version": "16.5.4", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz", + "integrity": "sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==", + "dependencies": { + "readable-web-to-node-stream": "^3.0.0", + "strtok3": "^6.2.4", + "token-types": "^4.1.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" + } + }, + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/filenamify": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz", + "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==", + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.1", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/filter-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", + "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flat-cache/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==" + }, + "node_modules/follow-redirects": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/form-data-encoder": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", + "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", + "engines": { + "node": ">= 14.17" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + }, + "node_modules/fs-exists-cached": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-exists-cached/-/fs-exists-cached-1.0.0.tgz", + "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" + }, + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz", + "integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==" + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gatsby": { + "version": "5.13.7", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.13.7.tgz", + "integrity": "sha512-slQ0Ky+5ev5dMV6svAgQYWRw3lztTcj6FhmnGvFPWSwrE/L+2TlQG0Izjm8DRoqzQVBp0z+hkCEiRVF7IdzLCw==", + "hasInstallScript": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/core": "^7.20.12", + "@babel/eslint-parser": "^7.19.1", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/parser": "^7.20.13", + "@babel/runtime": "^7.20.13", + "@babel/traverse": "^7.20.13", + "@babel/types": "^7.20.7", + "@builder.io/partytown": "^0.7.5", + "@gatsbyjs/reach-router": "^2.0.1", + "@gatsbyjs/webpack-hot-middleware": "^2.25.3", + "@graphql-codegen/add": "^3.2.3", + "@graphql-codegen/core": "^2.6.8", + "@graphql-codegen/plugin-helpers": "^2.7.2", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", + "@nodelib/fs.walk": "^1.2.8", + "@parcel/cache": "2.8.3", + "@parcel/core": "2.8.3", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", + "@sigmacomputing/babel-plugin-lodash": "^3.3.5", + "@types/http-proxy": "^1.17.11", + "@typescript-eslint/eslint-plugin": "^5.60.1", + "@typescript-eslint/parser": "^5.60.1", + "@vercel/webpack-asset-relocator-loader": "1.7.3", + "acorn-loose": "^8.3.0", + "acorn-walk": "^8.2.0", + "address": "1.2.2", + "anser": "^2.1.1", + "autoprefixer": "^10.4.14", + "axios": "^0.21.1", + "babel-jsx-utils": "^1.1.0", + "babel-loader": "^8.3.0", + "babel-plugin-add-module-exports": "^1.0.4", + "babel-plugin-dynamic-import-node": "^2.3.3", + "babel-plugin-remove-graphql-queries": "^5.13.1", + "babel-preset-gatsby": "^3.13.2", + "better-opn": "^2.1.1", + "bluebird": "^3.7.2", + "body-parser": "1.20.1", + "browserslist": "^4.21.9", + "cache-manager": "^2.11.1", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "common-tags": "^1.8.2", + "compression": "^1.7.4", + "cookie": "^0.5.0", + "core-js": "^3.31.0", + "cors": "^2.8.5", + "css-loader": "^5.2.7", + "css-minimizer-webpack-plugin": "^2.0.0", + "css.escape": "^1.5.1", + "date-fns": "^2.30.0", + "debug": "^4.3.4", + "deepmerge": "^4.3.1", + "detect-port": "^1.5.1", + "devcert": "^1.2.2", + "dotenv": "^8.6.0", + "enhanced-resolve": "^5.15.0", + "error-stack-parser": "^2.1.4", + "eslint": "^7.32.0", + "eslint-config-react-app": "^6.0.0", + "eslint-plugin-flowtype": "^5.10.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-webpack-plugin": "^2.7.0", + "event-source-polyfill": "1.0.31", + "execa": "^5.1.1", + "express": "^4.18.2", + "express-http-proxy": "^1.6.3", + "fastest-levenshtein": "^1.0.16", + "fastq": "^1.15.0", + "file-loader": "^6.2.0", + "find-cache-dir": "^3.3.2", + "fs-exists-cached": "1.0.0", + "fs-extra": "^11.1.1", + "gatsby-cli": "^5.13.3", + "gatsby-core-utils": "^4.13.1", + "gatsby-graphiql-explorer": "^3.13.1", + "gatsby-legacy-polyfills": "^3.13.1", + "gatsby-link": "^5.13.1", + "gatsby-page-utils": "^3.13.1", + "gatsby-parcel-config": "1.13.1", + "gatsby-plugin-page-creator": "^5.13.1", + "gatsby-plugin-typescript": "^5.13.1", + "gatsby-plugin-utils": "^4.13.1", + "gatsby-react-router-scroll": "^6.13.1", + "gatsby-script": "^2.13.0", + "gatsby-telemetry": "^4.13.1", + "gatsby-worker": "^2.13.1", + "glob": "^7.2.3", + "globby": "^11.1.0", + "got": "^11.8.6", + "graphql": "^16.7.1", + "graphql-compose": "^9.0.10", + "graphql-http": "^1.19.0", + "graphql-tag": "^2.12.6", + "hasha": "^5.2.2", + "invariant": "^2.2.4", + "is-relative": "^1.0.0", + "is-relative-url": "^3.0.0", + "joi": "^17.9.2", + "json-loader": "^0.5.7", + "latest-version": "^7.0.0", + "linkfs": "^2.1.0", + "lmdb": "2.5.3", + "lodash": "^4.17.21", + "meant": "^1.0.3", + "memoizee": "^0.4.15", + "micromatch": "^4.0.5", + "mime": "^3.0.0", + "mini-css-extract-plugin": "1.6.2", + "mitt": "^1.2.0", + "moment": "^2.29.4", + "multer": "^1.4.5-lts.1", + "node-fetch": "^2.6.11", + "node-html-parser": "^5.4.2", + "normalize-path": "^3.0.0", + "null-loader": "^4.0.1", + "opentracing": "^0.14.7", + "p-defer": "^3.0.0", + "parseurl": "^1.3.3", + "path-to-regexp": "0.1.7", + "physical-cpu-count": "^2.0.0", + "platform": "^1.3.6", + "postcss": "^8.4.24", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^5.3.0", + "prompts": "^2.4.2", + "prop-types": "^15.8.1", + "query-string": "^6.14.1", + "raw-loader": "^4.0.2", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.14.0", + "react-server-dom-webpack": "0.0.0-experimental-c8b778b7f-20220825", + "redux": "4.2.1", + "redux-thunk": "^2.4.2", + "resolve-from": "^5.0.0", + "semver": "^7.5.3", + "shallow-compare": "^1.2.2", + "signal-exit": "^3.0.7", + "slugify": "^1.6.6", + "socket.io": "4.7.1", + "socket.io-client": "4.7.1", + "stack-trace": "^0.0.10", + "string-similarity": "^1.2.2", + "strip-ansi": "^6.0.1", + "style-loader": "^2.0.0", + "style-to-object": "^0.4.1", + "terser-webpack-plugin": "^5.3.9", + "tmp": "^0.2.1", + "true-case-path": "^2.2.1", + "type-of": "^2.0.1", + "url-loader": "^4.1.1", + "uuid": "^8.3.2", + "webpack": "^5.88.1", + "webpack-dev-middleware": "^4.3.0", + "webpack-merge": "^5.9.0", + "webpack-stats-plugin": "^1.1.3", + "webpack-virtual-modules": "^0.5.0", + "xstate": "^4.38.0", + "yaml-loader": "^0.8.0" + }, + "bin": { + "gatsby": "cli.js" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "gatsby-sharp": "^1.13.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^0.0.0", + "react-dom": "^18.0.0 || ^0.0.0" + } + }, + "node_modules/gatsby-cli": { + "version": "5.13.3", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.13.3.tgz", + "integrity": "sha512-JQTeivvZWuhxE1HRey2sRhwUmkCrs5478fiLR0XRFGin4X1ggCmrQx/DBkJP1TgktdPfNU8t987+slSnO2XzMA==", + "hasInstallScript": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/core": "^7.20.12", + "@babel/generator": "^7.20.14", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/preset-typescript": "^7.18.6", + "@babel/runtime": "^7.20.13", + "@babel/template": "^7.20.7", + "@babel/types": "^7.20.7", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/common-tags": "^1.8.1", + "better-opn": "^2.1.1", + "boxen": "^5.1.2", + "chalk": "^4.1.2", + "clipboardy": "^4.0.0", + "common-tags": "^1.8.2", + "convert-hrtime": "^3.0.0", + "create-gatsby": "^3.13.1", + "envinfo": "^7.10.0", + "execa": "^5.1.1", + "fs-exists-cached": "^1.0.0", + "fs-extra": "^11.1.1", + "gatsby-core-utils": "^4.13.1", + "gatsby-telemetry": "^4.13.1", + "hosted-git-info": "^3.0.8", + "is-valid-path": "^0.1.1", + "joi": "^17.9.2", + "lodash": "^4.17.21", + "node-fetch": "^2.6.11", + "opentracing": "^0.14.7", + "pretty-error": "^2.1.2", + "progress": "^2.0.3", + "prompts": "^2.4.2", + "redux": "4.2.1", + "resolve-cwd": "^3.0.0", + "semver": "^7.5.3", + "signal-exit": "^3.0.7", + "stack-trace": "^0.0.10", + "strip-ansi": "^6.0.1", + "yargs": "^15.4.1", + "yoga-layout-prebuilt": "^1.10.0", + "yurnalist": "^2.1.0" + }, + "bin": { + "gatsby": "cli.js" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/gatsby-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/gatsby-cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/gatsby-cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/gatsby-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/gatsby-cli/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gatsby-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/gatsby-core-utils": { + "version": "4.13.1", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.13.1.tgz", + "integrity": "sha512-w7G6SsQr8T2q+AJ1MxvRNGocCt+wjc22MiRLj2Zi3Ijpjszbr818JxwI4+aPt8WOSHlKT5SYCHICnEvcYPm9gg==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.15.0", + "file-type": "^16.5.4", + "fs-extra": "^11.1.1", + "got": "^11.8.6", + "hash-wasm": "^4.9.0", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby-graphiql-explorer": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.13.1.tgz", + "integrity": "sha512-WR6jv18OhKLwK/hGZ6ZGUd82GFtM6gHz+sOpgsJJx/+uqRjZwqcrH2LSrWRSWUCk7FoZY1rJuBSD1QkOODV01A==", + "engines": { + "node": ">=14.15.0" + } + }, + "node_modules/gatsby-image": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/gatsby-image/-/gatsby-image-3.11.0.tgz", + "integrity": "sha512-vRMhGLrgyQRH2RYs8leyZ1UyWYIew+NOZEsKur1w6gnWDf0U9UVmYFa9OIE1Vedlo1W+on3AuZ3/KwM+cI69VQ==", + "deprecated": "gatsby-image is now gatsby-plugin-image: https://npm.im/gatsby-plugin-image. This package will no longer receive updates.", + "dependencies": { + "@babel/runtime": "^7.14.6", + "object-fit-images": "^3.2.4", + "prop-types": "^15.7.2" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/gatsby-legacy-polyfills": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.13.1.tgz", + "integrity": "sha512-NjR3B/rq6dsJuaMmeHlGExdVXJfDqVWERXi9ROfIBt7O3Fwzy5WYgoPeVikVZE06DmeZWlBzuNcGSfc8lilB5g==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "core-js-compat": "3.31.0" + } + }, + "node_modules/gatsby-legacy-polyfills/node_modules/core-js-compat": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", + "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", + "dependencies": { + "browserslist": "^4.21.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/gatsby-link": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.13.1.tgz", + "integrity": "sha512-naQxvgX/rd4Pj5ICL2DcqT30TAENk6wHttcLioxIqW9/UhwAXGkM9QsOJOyUmwbrp37UIKU3K92Ks/cMbRxwXA==", + "dependencies": { + "@types/reach__router": "^1.3.10", + "gatsby-page-utils": "^3.13.1", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@gatsbyjs/reach-router": "^2.0.0", + "react": "^18.0.0 || ^0.0.0", + "react-dom": "^18.0.0 || ^0.0.0" + } + }, + "node_modules/gatsby-page-utils": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.13.1.tgz", + "integrity": "sha512-+/V+ZKPn1Lv3KfeTBV/XUVljwTFQq5kg3T0esu9ygXEz3EVXjG5VjL/IX57awiDm9sLsEALqRuuYLoHpfNHg0A==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "bluebird": "^3.7.2", + "chokidar": "^3.5.3", + "fs-exists-cached": "^1.0.0", + "gatsby-core-utils": "^4.13.1", + "glob": "^7.2.3", + "lodash": "^4.17.21", + "micromatch": "^4.0.5" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby-parcel-config": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.13.1.tgz", + "integrity": "sha512-zEiDKnq1UQvDDireYQN2TmDsxDf9n2SHYXASHyUTipwsMlNMEi0nLav1vHRQAfzbjw4tabk9Z5kcknkJ6nLqOA==", + "dependencies": { + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.13.1", + "@parcel/bundler-default": "2.8.3", + "@parcel/compressor-raw": "2.8.3", + "@parcel/namer-default": "2.8.3", + "@parcel/optimizer-terser": "2.8.3", + "@parcel/packager-js": "2.8.3", + "@parcel/packager-raw": "2.8.3", + "@parcel/reporter-dev-server": "2.8.3", + "@parcel/resolver-default": "2.8.3", + "@parcel/runtime-js": "2.8.3", + "@parcel/transformer-js": "2.8.3", + "@parcel/transformer-json": "2.8.3" + }, + "engines": { + "parcel": "2.x" + }, + "peerDependencies": { + "@parcel/core": "^2.0.0" + } + }, + "node_modules/gatsby-plugin-emotion": { + "version": "8.13.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-emotion/-/gatsby-plugin-emotion-8.13.1.tgz", + "integrity": "sha512-CiramBDe3ZR+evnraIOP7jrhD0k7TP0by4J9Li955kmB1m6di3p54G+BAClocrq8ad6GPxOeh5TyISq7ydXRmg==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@emotion/babel-preset-css-prop": "^11.11.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.6", + "@emotion/react": "^11.0.0", + "gatsby": "^5.0.0-next" + } + }, + "node_modules/gatsby-plugin-google-gtag": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-google-gtag/-/gatsby-plugin-google-gtag-5.13.1.tgz", + "integrity": "sha512-aaJKIDwUWwhooJnalse1uvcusBmCwCVK33pp1IrDU02E7IohMen3eR5TsjLbfKO7Z+SbfKJEqUoi/r0ozrJarA==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "minimatch": "^3.1.2" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next", + "react": "^18.0.0 || ^0.0.0", + "react-dom": "^18.0.0 || ^0.0.0" + } + }, + "node_modules/gatsby-plugin-image": { + "version": "3.14.0-next.2", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.14.0-next.2.tgz", + "integrity": "sha512-ghv4T+aBQCTr7waTYU/yHH4z2bgfKPn8w835BssdcIHQdHIAXJDP4+DlmRyfrqB5Tm/E691V4P3Cuz7b8pk29A==", + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.13", + "@babel/runtime": "^7.20.13", + "@babel/traverse": "^7.20.13", + "babel-jsx-utils": "^1.1.0", + "babel-plugin-remove-graphql-queries": "^5.14.0-next.2", + "camelcase": "^6.3.0", + "chokidar": "^3.5.3", + "common-tags": "^1.8.2", + "fs-extra": "^11.2.0", + "gatsby-core-utils": "^4.14.0-next.2", + "gatsby-plugin-utils": "^4.14.0-next.2", + "objectFitPolyfill": "^2.3.5", + "prop-types": "^15.8.1" + }, + "peerDependencies": { + "@babel/core": "^7.12.3", + "gatsby": "^5.0.0-next", + "gatsby-plugin-sharp": "^5.0.0-next", + "gatsby-source-filesystem": "^5.0.0-next", + "react": "^18.0.0 || ^0.0.0", + "react-dom": "^18.0.0 || ^0.0.0" + }, + "peerDependenciesMeta": { + "gatsby-plugin-sharp": { + "optional": true + }, + "gatsby-source-filesystem": { + "optional": true + } + } + }, + "node_modules/gatsby-plugin-image/node_modules/babel-plugin-remove-graphql-queries": { + "version": "5.14.0-next.2", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.14.0-next.2.tgz", + "integrity": "sha512-axtw4mzTVlJe1jiMmMV9ye/ZZaqByY3H+jG8nUsd99zcZwflsht0Zzq/+iynyDrEeGU7B0klx73f8z/3y7ahrQ==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@babel/types": "^7.20.7", + "gatsby-core-utils": "^4.14.0-next.2" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "gatsby": "^5.0.0-next" + } + }, + "node_modules/gatsby-plugin-image/node_modules/gatsby-core-utils": { + "version": "4.14.0-next.2", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.14.0-next.2.tgz", + "integrity": "sha512-GUBz6z348T6/Z4PReD5gNcXm0LhoO2xcASE0VvXxrhO/1GlqhDHfqIarAWEM8y4mvhL2HeTXs/7yWghx4Eu/UQ==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "ci-info": "2.0.0", + "configstore": "^5.0.1", + "fastq": "^1.15.0", + "file-type": "^16.5.4", + "fs-extra": "^11.2.0", + "got": "^11.8.6", + "hash-wasm": "^4.11.0", + "import-from": "^4.0.0", + "lmdb": "2.5.3", + "lock": "^1.1.0", + "node-object-hash": "^2.3.10", + "proper-lockfile": "^4.1.2", + "resolve-from": "^5.0.0", + "tmp": "^0.2.1", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby-plugin-image/node_modules/gatsby-plugin-utils": { + "version": "4.14.0-next.2", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.14.0-next.2.tgz", + "integrity": "sha512-AfdDl745v64cge0C+B1fjsxyz5vJ3pFRc6/l1Ao/CrrAcIGnve35XYc6ukEJpFgqK2kGB+YggU6ImMCLN3VXJw==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "fastq": "^1.16.0", + "fs-extra": "^11.2.0", + "gatsby-core-utils": "^4.14.0-next.2", + "gatsby-sharp": "^1.14.0-next.0", + "graphql-compose": "^9.0.10", + "import-from": "^4.0.0", + "joi": "^17.11.0", + "mime": "^3.0.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next", + "graphql": "^16.0.0" + } + }, + "node_modules/gatsby-plugin-image/node_modules/gatsby-sharp": { + "version": "1.14.0-next.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.14.0-next.0.tgz", + "integrity": "sha512-ZzztkJefgkwezHMB6B+KRsrB9FzNC0BX1wpSEh/nEIRepezLhDQIqYuTjJTwAVL0evCPvjOs5RTHFx1vQHPoVg==", + "dependencies": { + "sharp": "^0.32.6" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby-plugin-manifest": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.13.1.tgz", + "integrity": "sha512-F8zGMYz2tRDAzQO7hLrYv+xCFyIoeySeGsEk9j1KTdWB4liVQvLtFSXzj7yljyOTinDmA7mDStCiQFStC0rHZQ==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "gatsby-core-utils": "^4.13.1", + "gatsby-plugin-utils": "^4.13.1", + "semver": "^7.5.3", + "sharp": "^0.32.6" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next" + } + }, + "node_modules/gatsby-plugin-manifest/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gatsby-plugin-mdx": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-mdx/-/gatsby-plugin-mdx-5.13.1.tgz", + "integrity": "sha512-ZL/z1j8zBzQSqFTEoVdC+jPNpN/CXse2h87wUz78V+BMjp40ccR0DCo62KgF40HVz4iCEYVufqfjQNc0nLoSow==", + "dependencies": { + "@mdx-js/mdx": "^2.3.0", + "acorn": "^8.8.2", + "acorn-jsx": "^5.3.2", + "astring": "^1.8.5", + "deepmerge": "^4.3.1", + "estree-util-build-jsx": "^2.2.2", + "fs-extra": "^11.1.1", + "gatsby-core-utils": "^4.13.1", + "gatsby-plugin-utils": "^4.13.1", + "gray-matter": "^4.0.3", + "mdast-util-mdx": "^2.0.1", + "mdast-util-to-hast": "^10.2.0", + "mdast-util-to-markdown": "^1.5.0", + "mdast-util-toc": "^6.1.1", + "rehype-infer-description-meta": "^1.1.0", + "remark-unwrap-images": "^3.0.1", + "unified": "^10.1.2", + "unist-util-visit": "^4.1.2", + "vfile": "^5.3.7" + }, + "peerDependencies": { + "@mdx-js/react": "^2.0.0", + "gatsby": "^5.0.0-next", + "gatsby-source-filesystem": "^5.0.0-next", + "react": "^18.0.0 || ^0.0.0", + "react-dom": "^18.0.0 || ^0.0.0" + } + }, + "node_modules/gatsby-plugin-mdx-frontmatter": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/gatsby-plugin-mdx-frontmatter/-/gatsby-plugin-mdx-frontmatter-0.0.4.tgz", + "integrity": "sha512-itdhni+L7oZ9tpyipGVTmC32qcdd+FsWkDqcxnnQ9NCjEMIajPwit6fdzx/Zby1YaKVx6FSqkTp9tjQTde7BpQ==", + "peerDependencies": { + "@mdx-js/mdx": ">=1.6.1", + "@mdx-js/react": ">=1.6.1", + "gatsby": ">=2.21.33", + "gatsby-plugin-mdx": ">=1.2.7" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/@mdx-js/mdx": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-2.3.0.tgz", + "integrity": "sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/mdx": "^2.0.0", + "estree-util-build-jsx": "^2.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "estree-util-to-js": "^1.1.0", + "estree-walker": "^3.0.0", + "hast-util-to-estree": "^2.0.0", + "markdown-extensions": "^1.0.0", + "periscopic": "^3.0.0", + "remark-mdx": "^2.0.0", + "remark-parse": "^10.0.0", + "remark-rehype": "^10.0.0", + "unified": "^10.0.0", + "unist-util-position-from-estree": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "unist-util-visit": "^4.0.0", + "vfile": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/gatsby-plugin-mdx/node_modules/estree-util-attach-comments": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz", + "integrity": "sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==", + "dependencies": { + "@types/estree": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/estree-util-build-jsx": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz", + "integrity": "sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "estree-walker": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/estree-util-is-identifier-name": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", + "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/estree-util-to-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-1.2.0.tgz", + "integrity": "sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "astring": "^1.8.0", + "source-map": "^0.7.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/estree-util-visit": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.1.tgz", + "integrity": "sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/hast-util-to-estree": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.3.3.tgz", + "integrity": "sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "estree-util-attach-comments": "^2.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "hast-util-whitespace": "^2.0.0", + "mdast-util-mdx-expression": "^1.0.0", + "mdast-util-mdxjs-esm": "^1.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^0.4.1", + "unist-util-position": "^4.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/hast-util-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", + "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/markdown-extensions": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz", + "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/mdast-util-definitions": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", + "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/mdast-util-mdx-expression": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", + "integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/mdast-util-mdxjs-esm": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", + "integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/micromark-extension-mdx-expression": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz", + "integrity": "sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/estree": "^1.0.0", + "micromark-factory-mdx-expression": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-events-to-acorn": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/micromark-extension-mdx-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz", + "integrity": "sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==", + "dependencies": { + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "micromark-factory-mdx-expression": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/micromark-extension-mdx-md": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz", + "integrity": "sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==", + "dependencies": { + "micromark-util-types": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/micromark-extension-mdxjs": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz", + "integrity": "sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==", + "dependencies": { + "acorn": "^8.0.0", + "acorn-jsx": "^5.0.0", + "micromark-extension-mdx-expression": "^1.0.0", + "micromark-extension-mdx-jsx": "^1.0.0", + "micromark-extension-mdx-md": "^1.0.0", + "micromark-extension-mdxjs-esm": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-types": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/micromark-extension-mdxjs-esm": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz", + "integrity": "sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==", + "dependencies": { + "@types/estree": "^1.0.0", + "micromark-core-commonmark": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-events-to-acorn": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-position-from-estree": "^1.1.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/micromark-factory-mdx-expression": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz", + "integrity": "sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/estree": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-events-to-acorn": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-position-from-estree": "^1.0.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/micromark-util-events-to-acorn": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz", + "integrity": "sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "@types/unist": "^2.0.0", + "estree-util-visit": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/property-information": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/remark-mdx": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.3.0.tgz", + "integrity": "sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==", + "dependencies": { + "mdast-util-mdx": "^2.0.0", + "micromark-extension-mdxjs": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/remark-parse": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz", + "integrity": "sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==", + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/remark-rehype": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz", + "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-to-hast": "^12.1.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/remark-rehype/node_modules/mdast-util-to-hast": { + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz", + "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-definitions": "^5.0.0", + "micromark-util-sanitize-uri": "^1.1.0", + "trim-lines": "^3.0.0", + "unist-util-generated": "^2.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/unist-util-generated": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", + "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/unist-util-position": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", + "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/unist-util-position-from-estree": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz", + "integrity": "sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-plugin-mdx/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/gatsby-plugin-page-creator": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.13.1.tgz", + "integrity": "sha512-WBTQc0cFqaojS1Oh7MjBRSnLCOWWWl3L5t5LEsXwV+4L9OL6D5fLTz7K5xC34OVgfAIryuEKE/M2ZIEk3onVnw==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@babel/traverse": "^7.20.13", + "@sindresorhus/slugify": "^1.1.2", + "chokidar": "^3.5.3", + "fs-exists-cached": "^1.0.0", + "fs-extra": "^11.1.1", + "gatsby-core-utils": "^4.13.1", + "gatsby-page-utils": "^3.13.1", + "gatsby-plugin-utils": "^4.13.1", + "gatsby-telemetry": "^4.13.1", + "globby": "^11.1.0", + "lodash": "^4.17.21" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next" + } + }, + "node_modules/gatsby-plugin-react-helmet": { + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-6.13.1.tgz", + "integrity": "sha512-Fwgf2UDOo1LQgw1vUmGmDMK5hXVrIXDR92URzu4DylQWgyfycfQ3D9FdU2JZ8jB6F3OI6Yx6YHC7zL3OAL7iOw==", + "dependencies": { + "@babel/runtime": "^7.20.13" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next", + "react-helmet": "^5.1.3 || ^6.0.0" + } + }, + "node_modules/gatsby-plugin-sharp": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.13.1.tgz", + "integrity": "sha512-PA1LxLjZ7nKjgGykfbIxNQqrfqqfNsMN6+7wZNy5HK4Vhqjw1zDyImJEBEn6v08L2T3tlLMgR0or/OE7yo7F9A==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "async": "^3.2.4", + "bluebird": "^3.7.2", + "debug": "^4.3.4", + "filenamify": "^4.3.0", + "fs-extra": "^11.1.1", + "gatsby-core-utils": "^4.13.1", + "gatsby-plugin-utils": "^4.13.1", + "lodash": "^4.17.21", + "probe-image-size": "^7.2.3", + "semver": "^7.5.3", + "sharp": "^0.32.6" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next" + } + }, + "node_modules/gatsby-plugin-sharp/node_modules/async": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==" + }, + "node_modules/gatsby-plugin-sharp/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gatsby-plugin-sitemap": { + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sitemap/-/gatsby-plugin-sitemap-6.13.1.tgz", + "integrity": "sha512-PuBcCjpwVj7NVW/GXFgmP2NLhM5FsFV618pVGCWnLSr0cPrtJsmPtLze1PMaq148EGUGnnctl/+7VLozheQ/CA==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "common-tags": "^1.8.2", + "minimatch": "^3.1.2", + "sitemap": "^7.1.1" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next", + "react": "^18.0.0 || ^0.0.0", + "react-dom": "^18.0.0 || ^0.0.0" + } + }, + "node_modules/gatsby-plugin-typescript": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.13.1.tgz", + "integrity": "sha512-FsTihoFKWTjzyIaUTndqktL39qMTAb0KyHj9kP+LxTY2FySqHIvFoYc1ycS5q52J76AoWUiGStJuuQLMNq66FQ==", + "dependencies": { + "@babel/core": "^7.20.12", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.20.7", + "@babel/preset-typescript": "^7.18.6", + "@babel/runtime": "^7.20.13", + "babel-plugin-remove-graphql-queries": "^5.13.1" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next" + } + }, + "node_modules/gatsby-plugin-utils": { + "version": "4.13.1", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.13.1.tgz", + "integrity": "sha512-dQ8cZyUENWHqZOOSBBYWCJ8yG3zSYnHYk0mKQbgZblUS30Sp7ZFM4r0/+lsvUkEYaBOnzFBQjSSQtTa0xu9QWA==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "fastq": "^1.15.0", + "fs-extra": "^11.1.1", + "gatsby-core-utils": "^4.13.1", + "gatsby-sharp": "^1.13.0", + "graphql-compose": "^9.0.10", + "import-from": "^4.0.0", + "joi": "^17.9.2", + "mime": "^3.0.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next", + "graphql": "^16.0.0" + } + }, + "node_modules/gatsby-react-router-scroll": { + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.13.1.tgz", + "integrity": "sha512-srBpg/ZHW4miwH/4OWOcspHqr8ZmKLE4DBNvckt0KO4giJerWiGoLj6qePwLFRWZPfV7txJr2kuUzACxarpL5g==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@gatsbyjs/reach-router": "^2.0.0", + "react": "^18.0.0 || ^0.0.0", + "react-dom": "^18.0.0 || ^0.0.0" + } + }, + "node_modules/gatsby-remark-gifs": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-gifs/-/gatsby-remark-gifs-1.2.0.tgz", + "integrity": "sha512-i6V1RjhP+5E9wAUgJ7kWB/kVBj46VE8yVNo1+iBb1THhlZfDnSRsXf3DfrWrUYPAk1uQt5QBIRJl6ipZrZjFKA==", + "dependencies": { + "is-relative-url": "^3.0.0", + "unist-util-visit": "^2.0.3" + } + }, + "node_modules/gatsby-remark-gifs/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/gatsby-remark-gifs/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-remark-images": { + "version": "7.13.2", + "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-7.13.2.tgz", + "integrity": "sha512-a2oke2akTElGqTKzsJjU1NK9itgBPrYAIOOQW2ZuLTtb5fulsZNTJa2Q3vhRHiKLodvXrte+Gxv7znjY21/dTA==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "chalk": "^4.1.2", + "cheerio": "1.0.0-rc.12", + "gatsby-core-utils": "^4.13.1", + "is-relative-url": "^3.0.0", + "lodash": "^4.17.21", + "mdast-util-definitions": "^4.0.0", + "query-string": "^6.14.1", + "unist-util-select": "^3.0.4", + "unist-util-visit-parents": "^3.1.1" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next", + "gatsby-plugin-sharp": "^5.0.0-next" + } + }, + "node_modules/gatsby-remark-images/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/gatsby-remark-images/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/gatsby-remark-images/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/gatsby-remark-images/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/gatsby-remark-images/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/gatsby-remark-images/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/gatsby-script": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.13.0.tgz", + "integrity": "sha512-TGNQGerf1NMJrgJkWxWrW6FFMAuC0L76WlyZgGXmhckPW/x7V1SxZrm0a2Q99kRHyoC59RYl2gTQWHaIwV+ZjA==", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@gatsbyjs/reach-router": "^2.0.0", + "react": "^18.0.0 || ^0.0.0", + "react-dom": "^18.0.0 || ^0.0.0" + } + }, + "node_modules/gatsby-sharp": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.13.0.tgz", + "integrity": "sha512-DviUtgm7tatSd1Hm54o/orHimOcyXBO9OJkSfzEchPFClvOza+2Qe/lqZShio0gFDxmG0Jgn0XCLzG7uH5VyJQ==", + "dependencies": { + "sharp": "^0.32.6" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby-source-filesystem": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.13.1.tgz", + "integrity": "sha512-nFWzOBpi84nDeVNeO7bpKL9mVYMl1tfjJmE5l868YATFShGzZnA6qMd200XCsf78PexZHAiV/P1MlsyKqjJduA==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "chokidar": "^3.5.3", + "file-type": "^16.5.4", + "fs-extra": "^11.1.1", + "gatsby-core-utils": "^4.13.1", + "mime": "^3.0.0", + "pretty-bytes": "^5.6.0", + "valid-url": "^1.0.9", + "xstate": "^4.38.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next" + } + }, + "node_modules/gatsby-telemetry": { + "version": "4.13.1", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.13.1.tgz", + "integrity": "sha512-NstKs3N8LK9rwEli6SXO+ClNmewFbVzqS2yo6XZzQSXbymH6+Kkk+eqQivKhrD8PbQLLrdXkk1p47n91zc85XQ==", + "hasInstallScript": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/runtime": "^7.20.13", + "@turist/fetch": "^7.2.0", + "@turist/time": "^0.0.2", + "boxen": "^5.1.2", + "configstore": "^5.0.1", + "fs-extra": "^11.1.1", + "gatsby-core-utils": "^4.13.1", + "git-up": "^7.0.0", + "is-docker": "^2.2.1", + "lodash": "^4.17.21", + "node-fetch": "^2.6.11" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby-transformer-remark": { + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-6.13.1.tgz", + "integrity": "sha512-rHHr8QK6jELzUiv8Ip/IjxavApW38ga7qVOrk1cXsl9Feo8WDEgkc3eHUbSL6doTk63LY7e/OOgi6INFlfdCAA==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "gatsby-core-utils": "^4.13.1", + "gray-matter": "^4.0.3", + "hast-util-raw": "^6.1.0", + "hast-util-to-html": "^7.1.3", + "lodash": "^4.17.21", + "mdast-util-to-hast": "^10.2.0", + "mdast-util-to-string": "^2.0.0", + "mdast-util-toc": "^5.1.0", + "remark": "^13.0.0", + "remark-footnotes": "^3.0.0", + "remark-gfm": "^1.0.0", + "remark-parse": "^9.0.0", + "remark-retext": "^4.0.0", + "remark-stringify": "^9.0.1", + "retext-english": "^3.0.4", + "sanitize-html": "^2.11.0", + "underscore.string": "^3.3.6", + "unified": "^9.2.2", + "unist-util-remove-position": "^3.0.0", + "unist-util-select": "^3.0.4", + "unist-util-visit": "^2.0.3" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/gatsby-transformer-remark/node_modules/bail": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", + "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/github-slugger": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", + "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==" + }, + "node_modules/gatsby-transformer-remark/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/mdast-util-from-markdown": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz", + "integrity": "sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==", + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-to-string": "^2.0.0", + "micromark": "~2.11.0", + "parse-entities": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/mdast-util-toc": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-toc/-/mdast-util-toc-5.1.0.tgz", + "integrity": "sha512-csimbRIVkiqc+PpFeKDGQ/Ck2N4f9FYH3zzBMMJzcxoKL8m+cM0n94xXm0I9eaxHnKdY9n145SGTdyJC7i273g==", + "dependencies": { + "@types/mdast": "^3.0.3", + "@types/unist": "^2.0.3", + "extend": "^3.0.2", + "github-slugger": "^1.2.1", + "mdast-util-to-string": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/remark-parse": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-9.0.0.tgz", + "integrity": "sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==", + "dependencies": { + "mdast-util-from-markdown": "^0.8.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/trough": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", + "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/unified": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz", + "integrity": "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==", + "dependencies": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/vfile": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-transformer-remark/node_modules/vfile-message": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/gatsby-transformer-sharp": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.13.1.tgz", + "integrity": "sha512-H5gBpnKOn86ns65fv0cP8yIpnT//+dkpnSOZSrtrtYEgmwEFqblUHSSyolu2SURgE+Af55W7IKTYk2w2d9+PCQ==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "bluebird": "^3.7.2", + "common-tags": "^1.8.2", + "fs-extra": "^11.1.1", + "gatsby-plugin-utils": "^4.13.1", + "probe-image-size": "^7.2.3", + "semver": "^7.5.3", + "sharp": "^0.32.6" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "gatsby": "^5.0.0-next", + "gatsby-plugin-sharp": "^5.0.0-next" + } + }, + "node_modules/gatsby-transformer-sharp/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gatsby-worker": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.13.1.tgz", + "integrity": "sha512-CEm+5M2+3PzPcqTaJ0xjNuorQ3d1PfnKG1yqRRPfw8LFdPiycGhZAug/jqx0iTyVWXFHakEmddlykGFEbq54/Q==", + "dependencies": { + "@babel/core": "^7.20.12", + "@babel/runtime": "^7.20.13", + "fs-extra": "^11.1.1", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils/node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/gatsby/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/gatsby/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/gatsby/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/gatsby/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/gatsby/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/gatsby/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/gatsby/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gatsby/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/git-up": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", + "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", + "dependencies": { + "is-ssh": "^1.4.0", + "parse-url": "^8.1.0" + } + }, + "node_modules/github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" + }, + "node_modules/github-slugger": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", + "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==" + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "node_modules/graphql": { + "version": "16.9.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.9.0.tgz", + "integrity": "sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==", + "engines": { + "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" + } + }, + "node_modules/graphql-compose": { + "version": "9.0.11", + "resolved": "https://registry.npmjs.org/graphql-compose/-/graphql-compose-9.0.11.tgz", + "integrity": "sha512-p3+8p2lo7wel24IQwGIhwVGOnCJ3hfBno+x8CE7G4ZLaC4u5G2g6h1Mm8O5iJPTD0C+Q/WxxDqSL2qs8VOf5mg==", + "dependencies": { + "graphql-type-json": "0.3.2" + } + }, + "node_modules/graphql-http": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.22.1.tgz", + "integrity": "sha512-4Jor+LRbA7SfSaw7dfDUs2UBzvWg3cKrykfHRgKsOIvQaLuf+QOcG2t3Mx5N9GzSNJcuqMqJWz0ta5+BryEmXg==", + "workspaces": [ + "implementations/**/*" + ], + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "graphql": ">=0.11 <=16" + } + }, + "node_modules/graphql-tag": { + "version": "2.12.6", + "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", + "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", + "dependencies": { + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/graphql-type-json": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/graphql-type-json/-/graphql-type-json-0.3.2.tgz", + "integrity": "sha512-J+vjof74oMlCWXSvt0DOf2APEdZOCdubEvGDUAlqH//VBYcOYsGgRW7Xzorr44LvkjiuvecWc8fChxuZZbChtg==", + "peerDependencies": { + "graphql": ">=0.8.0" + } + }, + "node_modules/gray-matter": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", + "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", + "dependencies": { + "js-yaml": "^3.13.1", + "kind-of": "^6.0.2", + "section-matter": "^1.0.0", + "strip-bom-string": "^1.0.0" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hash-wasm": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.11.0.tgz", + "integrity": "sha512-HVusNXlVqHe0fzIzdQOGolnFN6mX/fqcrSAOcTBXdvzrXVHwTz11vXeKRmkR5gTuwVpvHZEIyKoePDvuAR+XwQ==" + }, + "node_modules/hasha": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", + "integrity": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==", + "dependencies": { + "is-stream": "^2.0.0", + "type-fest": "^0.8.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/hasha/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hast-to-hyperscript": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz", + "integrity": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==", + "dependencies": { + "@types/unist": "^2.0.3", + "comma-separated-tokens": "^1.0.0", + "property-information": "^5.3.0", + "space-separated-tokens": "^1.0.0", + "style-to-object": "^0.3.0", + "unist-util-is": "^4.0.0", + "web-namespaces": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-to-hyperscript/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/hast-to-hyperscript/node_modules/comma-separated-tokens": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", + "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/hast-to-hyperscript/node_modules/space-separated-tokens": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/hast-to-hyperscript/node_modules/style-to-object": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", + "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", + "dependencies": { + "inline-style-parser": "0.1.1" + } + }, + "node_modules/hast-util-excerpt": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hast-util-excerpt/-/hast-util-excerpt-1.0.2.tgz", + "integrity": "sha512-5q3+CAQwLBzcw4/1nwkdh91BSmoXmJSJQ1fYflhm2XpbYbrnXL+rgAbZsioVgVKV3xBlO1C9jp0wQ3ZYzfWibg==", + "dependencies": { + "@types/hast": "^2.0.0", + "hast-util-truncate": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-excerpt/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/hast-util-excerpt/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/hast-util-from-parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz", + "integrity": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==", + "dependencies": { + "@types/parse5": "^5.0.0", + "hastscript": "^6.0.0", + "property-information": "^5.0.0", + "vfile": "^4.0.0", + "vfile-location": "^3.2.0", + "web-namespaces": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/hast-util-from-parse5/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5/node_modules/vfile": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5/node_modules/vfile-message": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-has-property": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-2.0.1.tgz", + "integrity": "sha512-X2+RwZIMTMKpXUzlotatPzWj8bspCymtXH3cfG3iQKV+wPF53Vgaqxi/eLqGck0wKq1kS9nvoB1wchbCPEL8sg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-is-element": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-1.1.0.tgz", + "integrity": "sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-parse-selector": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz", + "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-6.1.0.tgz", + "integrity": "sha512-5FoZLDHBpka20OlZZ4I/+RBw5piVQ8iI1doEvffQhx5CbCyTtP8UCq8Tw6NmTAMtXgsQxmhW7Ly8OdFre5/YMQ==", + "dependencies": { + "@types/hast": "^2.0.0", + "hast-util-from-parse5": "^6.0.0", + "hast-util-to-parse5": "^6.0.0", + "html-void-elements": "^1.0.0", + "parse5": "^6.0.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0", + "vfile": "^4.0.0", + "web-namespaces": "^1.0.0", + "xtend": "^4.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/hast-util-raw/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/hast-util-raw/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/hast-util-raw/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw/node_modules/vfile": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw/node_modules/vfile-message": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-select": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/hast-util-select/-/hast-util-select-5.0.5.tgz", + "integrity": "sha512-QQhWMhgTFRhCaQdgTKzZ5g31GLQ9qRb1hZtDPMqQaOhpLBziWcshUS0uCR5IJ0U1jrK/mxg35fmcq+Dp/Cy2Aw==", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0", + "bcp-47-match": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "css-selector-parser": "^1.0.0", + "direction": "^2.0.0", + "hast-util-has-property": "^2.0.0", + "hast-util-to-string": "^2.0.0", + "hast-util-whitespace": "^2.0.0", + "not": "^0.1.0", + "nth-check": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "unist-util-visit": "^4.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-select/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/hast-util-select/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/hast-util-select/node_modules/hast-util-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", + "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-select/node_modules/property-information": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/hast-util-select/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-select/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-select/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-select/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/hast-util-to-estree": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.0.tgz", + "integrity": "sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-attach-comments": "^3.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^0.4.0", + "unist-util-position": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-estree/node_modules/property-information": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "peer": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/hast-util-to-estree/node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-estree/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "peer": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/hast-util-to-html": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-7.1.3.tgz", + "integrity": "sha512-yk2+1p3EJTEE9ZEUkgHsUSVhIpCsL/bvT8E5GzmWc+N1Po5gBw+0F8bo7dpxXR0nu0bQVxVZGX2lBGF21CmeDw==", + "dependencies": { + "ccount": "^1.0.0", + "comma-separated-tokens": "^1.0.0", + "hast-util-is-element": "^1.0.0", + "hast-util-whitespace": "^1.0.0", + "html-void-elements": "^1.0.0", + "property-information": "^5.0.0", + "space-separated-tokens": "^1.0.0", + "stringify-entities": "^3.0.1", + "unist-util-is": "^4.0.0", + "xtend": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-html/node_modules/comma-separated-tokens": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", + "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/hast-util-to-html/node_modules/hast-util-whitespace": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-1.0.4.tgz", + "integrity": "sha512-I5GTdSfhYfAPNztx2xJRQpG8cuDSNt599/7YUn7Gx/WxNMsG+a835k97TDkFgk123cwjfwINaZknkKkphx/f2A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-html/node_modules/space-separated-tokens": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/hast-util-to-jsx-runtime": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.0.tgz", + "integrity": "sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^1.0.0", + "unist-util-position": "^5.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-jsx-runtime/node_modules/inline-style-parser": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.3.tgz", + "integrity": "sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==", + "peer": true + }, + "node_modules/hast-util-to-jsx-runtime/node_modules/property-information": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "peer": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/hast-util-to-jsx-runtime/node_modules/style-to-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.7.tgz", + "integrity": "sha512-uSjr59G5u6fbxUfKbb8GcqMGT3Xs9v5IbPkjb0S16GyOeBLAzSRK0CixBv5YrYvzO6TDLzIS6QCn78tkqWngPw==", + "peer": true, + "dependencies": { + "inline-style-parser": "0.2.3" + } + }, + "node_modules/hast-util-to-jsx-runtime/node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-parse5": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz", + "integrity": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==", + "dependencies": { + "hast-to-hyperscript": "^9.0.0", + "property-information": "^5.0.0", + "web-namespaces": "^1.0.0", + "xtend": "^4.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-2.0.0.tgz", + "integrity": "sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A==", + "dependencies": { + "@types/hast": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-string/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/hast-util-to-string/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/hast-util-to-text": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-3.1.2.tgz", + "integrity": "sha512-tcllLfp23dJJ+ju5wCCZHVpzsQQ43+moJbqVX3jNWPB7z/KFC4FyZD6R7y94cHL6MQ33YtMZL8Z0aIXXI4XFTw==", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0", + "hast-util-is-element": "^2.0.0", + "unist-util-find-after": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-text/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/hast-util-to-text/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/hast-util-to-text/node_modules/hast-util-is-element": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-2.1.3.tgz", + "integrity": "sha512-O1bKah6mhgEq2WtVMk+Ta5K7pPMqsBBlmzysLdcwKVrqzZQ0CHqUPiIVspNhAG1rvxpvJjtGee17XfauZYKqVA==", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-truncate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hast-util-truncate/-/hast-util-truncate-1.0.2.tgz", + "integrity": "sha512-IWLuKZGZ9YaA4mmxlYyQgxbYARRRjomRaPnwvgwhC6VfUD9uAhdDa6+B0ad23rOoC4RyLVMB8fIE40x/O6qK1Q==", + "dependencies": { + "@types/hast": "^2.0.0", + "micromark-util-character": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-truncate/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/hast-util-truncate/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hastscript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz", + "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==", + "dependencies": { + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^1.0.0", + "hast-util-parse-selector": "^2.0.0", + "property-information": "^5.0.0", + "space-separated-tokens": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hastscript/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/hastscript/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/hastscript/node_modules/comma-separated-tokens": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", + "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/hastscript/node_modules/space-separated-tokens": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dependencies": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hosted-git-info": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz", + "integrity": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/html-entities": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] + }, + "node_modules/html-void-elements": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz", + "integrity": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/htmlparser2": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", + "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/immutable": { + "version": "3.7.6", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz", + "integrity": "sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", + "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", + "engines": { + "node": ">=12.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + }, + "node_modules/inquirer": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/inquirer/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/inquirer/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/inquirer/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/inquirer/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/inquirer/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/inquirer/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dependencies": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-hexadecimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-inside-container/node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-invalid-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz", + "integrity": "sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==", + "dependencies": { + "is-glob": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-invalid-path/node_modules/is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-invalid-path/node_modules/is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==", + "dependencies": { + "is-extglob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-2.0.2.tgz", + "integrity": "sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" + }, + "node_modules/is-reference": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz", + "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==", + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dependencies": { + "is-unc-path": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-relative-url": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-relative-url/-/is-relative-url-3.0.0.tgz", + "integrity": "sha512-U1iSYRlY2GIMGuZx7gezlB5dp1Kheaym7zKzO1PV06mOihiWTXejLwm4poEJysPyXF+HtK/BEd0DVlcCh30pEA==", + "dependencies": { + "is-absolute-url": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ssh": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", + "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", + "dependencies": { + "protocols": "^2.0.1" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "node_modules/is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dependencies": { + "unc-path-regex": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-2.0.2.tgz", + "integrity": "sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/is-valid-domain": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", + "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", + "dependencies": { + "punycode": "^2.1.1" + } + }, + "node_modules/is-valid-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", + "integrity": "sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==", + "dependencies": { + "is-invalid-path": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", + "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is64bit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is64bit/-/is64bit-2.0.0.tgz", + "integrity": "sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==", + "dependencies": { + "system-architecture": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/javascript-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", + "integrity": "sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==" + }, + "node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/joi": { + "version": "17.13.3", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz", + "integrity": "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==", + "dependencies": { + "@hapi/hoek": "^9.3.0", + "@hapi/topo": "^5.1.0", + "@sideway/address": "^4.1.5", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "node_modules/json-loader": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz", + "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/latest-version": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz", + "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==", + "dependencies": { + "package-json": "^8.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/legacy-swc-helpers": { + "name": "@swc/helpers", + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz", + "integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/linkfs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/linkfs/-/linkfs-2.1.0.tgz", + "integrity": "sha512-kmsGcmpvjStZ0ATjuHycBujtNnXiZR28BTivEu0gAMDTT7GEyodcK6zSRtu6xsrdorrPZEIN380x7BD7xEYkew==" + }, + "node_modules/lmdb": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.5.3.tgz", + "integrity": "sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==", + "hasInstallScript": true, + "dependencies": { + "msgpackr": "^1.5.4", + "node-addon-api": "^4.3.0", + "node-gyp-build-optional-packages": "5.0.3", + "ordered-binary": "^1.2.4", + "weak-lru-cache": "^1.2.2" + }, + "optionalDependencies": { + "@lmdb/lmdb-darwin-arm64": "2.5.3", + "@lmdb/lmdb-darwin-x64": "2.5.3", + "@lmdb/lmdb-linux-arm": "2.5.3", + "@lmdb/lmdb-linux-arm64": "2.5.3", + "@lmdb/lmdb-linux-x64": "2.5.3", + "@lmdb/lmdb-win32-x64": "2.5.3" + } + }, + "node_modules/lmdb/node_modules/node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lock": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/lock/-/lock-1.1.0.tgz", + "integrity": "sha512-NZQIJJL5Rb9lMJ0Yl1JoVr9GSdo4HTPsUEWsSFzB8dE8DSoiLCVavWZPi7Rnlv/o73u6I24S/XYc/NmG4l8EKA==" + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "node_modules/lodash.deburr": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/lodash.deburr/-/lodash.deburr-4.1.0.tgz", + "integrity": "sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ==" + }, + "node_modules/lodash.every": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.every/-/lodash.every-4.6.0.tgz", + "integrity": "sha512-isF82d+65/sNvQ3aaQAW7LLHnnTxSN/2fm4rhYyuufLzA4VtHz6y6S5vFwe6PQVr2xdqUOyxBbTNKDpnmeu50w==" + }, + "node_modules/lodash.flattendeep": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==" + }, + "node_modules/lodash.foreach": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", + "integrity": "sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==" + }, + "node_modules/lodash.map": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", + "integrity": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==" + }, + "node_modules/lodash.maxby": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.maxby/-/lodash.maxby-4.6.0.tgz", + "integrity": "sha512-QfTqQTwzmKxLy7VZlbx2M/ipWv8DCQ2F5BI/MRxLharOQ5V78yMSuB+JE+EuUM22txYfj09R2Q7hUlEYj7KdNg==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lower-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-2.0.2.tgz", + "integrity": "sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lru-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", + "integrity": "sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==", + "dependencies": { + "es5-ext": "~0.10.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dependencies": { + "p-defer": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/map-age-cleaner/node_modules/p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/markdown-extensions": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz", + "integrity": "sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==", + "peer": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/markdown-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz", + "integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==", + "dependencies": { + "repeat-string": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-definitions": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", + "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==", + "dependencies": { + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-definitions/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/mdast-util-definitions/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-1.1.1.tgz", + "integrity": "sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==", + "dependencies": { + "escape-string-regexp": "^4.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-footnote": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/mdast-util-footnote/-/mdast-util-footnote-0.1.7.tgz", + "integrity": "sha512-QxNdO8qSxqbO2e3m09KwDKfWiLgqyCurdWTQ198NpbZ2hxntdc+VKS4fDJCmNWbAroUdYnSthu+XbZ8ovh8C3w==", + "dependencies": { + "mdast-util-to-markdown": "^0.6.0", + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-footnote/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/mdast-util-footnote/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-footnote/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-footnote/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-footnote/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-footnote/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-footnote/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-footnote/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-footnote/node_modules/longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-footnote/node_modules/mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-footnote/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/mdast-util-footnote/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", + "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "mdast-util-to-string": "^3.1.0", + "micromark": "^3.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-decode-string": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/mdast-util-from-markdown/node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", + "dependencies": { + "@types/mdast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-0.1.2.tgz", + "integrity": "sha512-NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ==", + "dependencies": { + "mdast-util-gfm-autolink-literal": "^0.1.0", + "mdast-util-gfm-strikethrough": "^0.2.0", + "mdast-util-gfm-table": "^0.1.0", + "mdast-util-gfm-task-list-item": "^0.1.0", + "mdast-util-to-markdown": "^0.6.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-0.1.3.tgz", + "integrity": "sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==", + "dependencies": { + "ccount": "^1.0.0", + "mdast-util-find-and-replace": "^1.1.0", + "micromark": "^2.11.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-0.2.3.tgz", + "integrity": "sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==", + "dependencies": { + "mdast-util-to-markdown": "^0.6.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-0.1.6.tgz", + "integrity": "sha512-j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==", + "dependencies": { + "markdown-table": "^2.0.0", + "mdast-util-to-markdown": "~0.6.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/mdast-util-gfm-table/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-0.1.6.tgz", + "integrity": "sha512-/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A==", + "dependencies": { + "mdast-util-to-markdown": "~0.6.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/mdast-util-gfm/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm/node_modules/longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm/node_modules/mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-mdx": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-2.0.1.tgz", + "integrity": "sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==", + "dependencies": { + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-mdx-expression": "^1.0.0", + "mdast-util-mdx-jsx": "^2.0.0", + "mdast-util-mdxjs-esm": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.0.tgz", + "integrity": "sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==", + "peer": true, + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "peer": true, + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "peer": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/mdast-util-from-markdown": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.1.tgz", + "integrity": "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/mdast-util-to-markdown": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.0.tgz", + "integrity": "sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.0.tgz", + "integrity": "sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-core-commonmark": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz", + "integrity": "sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-factory-destination": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz", + "integrity": "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-factory-label": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz", + "integrity": "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-factory-space": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz", + "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-factory-title": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz", + "integrity": "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-factory-whitespace": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz", + "integrity": "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-chunked": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz", + "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-classify-character": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz", + "integrity": "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-combine-extensions": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz", + "integrity": "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz", + "integrity": "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-decode-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz", + "integrity": "sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", + "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-html-tag-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz", + "integrity": "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-normalize-identifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz", + "integrity": "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-resolve-all": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz", + "integrity": "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-sanitize-uri": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", + "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-subtokenize": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz", + "integrity": "sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/mdast-util-mdx-expression/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/mdast-util-mdx-expression/node_modules/unist-util-is": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", + "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "peer": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-mdx-jsx": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.1.3.tgz", + "integrity": "sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==", + "peer": true, + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-stringify-position": "^4.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "peer": true, + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "peer": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "peer": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "peer": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/mdast-util-from-markdown": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.1.tgz", + "integrity": "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/mdast-util-to-markdown": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.0.tgz", + "integrity": "sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.0.tgz", + "integrity": "sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-core-commonmark": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz", + "integrity": "sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-factory-destination": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz", + "integrity": "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-factory-label": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz", + "integrity": "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-factory-space": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz", + "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-factory-title": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz", + "integrity": "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-factory-whitespace": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz", + "integrity": "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-chunked": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz", + "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-classify-character": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz", + "integrity": "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-combine-extensions": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz", + "integrity": "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz", + "integrity": "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-decode-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz", + "integrity": "sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", + "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-html-tag-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz", + "integrity": "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-normalize-identifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz", + "integrity": "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-resolve-all": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz", + "integrity": "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-sanitize-uri": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", + "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-subtokenize": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz", + "integrity": "sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/mdast-util-mdx-jsx/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/mdast-util-mdx-jsx/node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "peer": true, + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/unist-util-is": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", + "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "peer": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-mdx/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/mdast-util-mdx/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/mdast-util-mdx/node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-mdx/node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-mdx/node_modules/mdast-util-mdx-expression": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", + "integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx/node_modules/mdast-util-mdx-jsx": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.4.tgz", + "integrity": "sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "ccount": "^2.0.0", + "mdast-util-from-markdown": "^1.1.0", + "mdast-util-to-markdown": "^1.3.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-remove-position": "^4.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx/node_modules/mdast-util-mdxjs-esm": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", + "integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx/node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-mdx/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx/node_modules/unist-util-remove-position": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz", + "integrity": "sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx/node_modules/vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", + "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", + "peer": true, + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "peer": true, + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "peer": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/mdast-util-from-markdown": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.1.tgz", + "integrity": "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/mdast-util-to-markdown": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.0.tgz", + "integrity": "sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.0.tgz", + "integrity": "sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-core-commonmark": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz", + "integrity": "sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-factory-destination": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz", + "integrity": "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-factory-label": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz", + "integrity": "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-factory-space": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz", + "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-factory-title": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz", + "integrity": "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-factory-whitespace": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz", + "integrity": "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-chunked": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz", + "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-classify-character": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz", + "integrity": "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-combine-extensions": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz", + "integrity": "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz", + "integrity": "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-decode-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz", + "integrity": "sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", + "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-html-tag-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz", + "integrity": "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-normalize-identifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz", + "integrity": "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-resolve-all": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz", + "integrity": "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-sanitize-uri": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", + "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-subtokenize": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz", + "integrity": "sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/unist-util-is": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", + "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "peer": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", + "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", + "dependencies": { + "@types/mdast": "^3.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/mdast-util-phrasing/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-10.2.0.tgz", + "integrity": "sha512-JoPBfJ3gBnHZ18icCwHR50orC9kNH81tiR1gs01D8Q5YpV6adHNO9nKNuFBCJQ941/32PT1a63UF/DitmS3amQ==", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "mdast-util-definitions": "^4.0.0", + "mdurl": "^1.0.0", + "unist-builder": "^2.0.0", + "unist-util-generated": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/mdast-util-to-hast/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", + "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^3.0.0", + "mdast-util-to-string": "^3.0.0", + "micromark-util-decode-string": "^1.0.0", + "unist-util-visit": "^4.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/mdast-util-to-markdown/node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", + "dependencies": { + "@types/mdast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-to-nlcst": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-nlcst/-/mdast-util-to-nlcst-4.0.1.tgz", + "integrity": "sha512-Y4ffygj85MTt70STKnEquw6k73jYWJBaYcb4ITAKgSNokZF7fH8rEHZ1GsRY/JaxqUevMaEnsDmkVv5Z9uVRdg==", + "dependencies": { + "nlcst-to-string": "^2.0.0", + "repeat-string": "^1.0.0", + "unist-util-position": "^3.0.0", + "vfile-location": "^3.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", + "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-toc": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/mdast-util-toc/-/mdast-util-toc-6.1.1.tgz", + "integrity": "sha512-Er21728Kow8hehecK2GZtb7Ny3omcoPUVrmObiSUwmoRYVZaXLR751QROEFjR8W/vAQdHMLj49Lz20J55XaNpw==", + "dependencies": { + "@types/extend": "^3.0.0", + "@types/mdast": "^3.0.0", + "extend": "^3.0.0", + "github-slugger": "^2.0.0", + "mdast-util-to-string": "^3.1.0", + "unist-util-is": "^5.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-toc/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/mdast-util-toc/node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", + "dependencies": { + "@types/mdast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-toc/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-toc/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-toc/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" + }, + "node_modules/meant": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/meant/-/meant-1.0.3.tgz", + "integrity": "sha512-88ZRGcNxAq4EH38cQ4D85PM57pikCwS8Z99EWHODxN7KBY+UuPiqzRTtZzS8KTXO/ywSWbdjjJST2Hly/EQxLw==" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mem": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/mem/-/mem-8.1.1.tgz", + "integrity": "sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==", + "dependencies": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/mem?sponsor=1" + } + }, + "node_modules/mem/node_modules/mimic-fn": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz", + "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/memoizee": { + "version": "0.4.17", + "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.17.tgz", + "integrity": "sha512-DGqD7Hjpi/1or4F/aYAspXKNm5Yili0QDAFAY4QYvpqpgiY6+1jOfqpmByzjxbWd/T9mChbCArXAbDAsTm5oXA==", + "dependencies": { + "d": "^1.0.2", + "es5-ext": "^0.10.64", + "es6-weak-map": "^2.0.3", + "event-emitter": "^0.3.5", + "is-promise": "^2.2.2", + "lru-queue": "^0.1.0", + "next-tick": "^1.1.0", + "timers-ext": "^0.1.7" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromark": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", + "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "micromark-core-commonmark": "^1.0.1", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.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.0", + "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.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", + "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-factory-destination": "^1.0.0", + "micromark-factory-label": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-factory-title": "^1.0.0", + "micromark-factory-whitespace": "^1.0.0", + "micromark-util-character": "^1.0.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.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-extension-footnote": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/micromark-extension-footnote/-/micromark-extension-footnote-0.3.2.tgz", + "integrity": "sha512-gr/BeIxbIWQoUm02cIfK7mdMZ/fbroRpLsck4kvFtjbzP4yi+OPVbnukTc/zy0i7spC2xYE/dbX1Sur8BEDJsQ==", + "dependencies": { + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-footnote/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-footnote/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-footnote/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-footnote/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-footnote/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-footnote/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-footnote/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-footnote/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-extension-footnote/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-0.3.3.tgz", + "integrity": "sha512-oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==", + "dependencies": { + "micromark": "~2.11.0", + "micromark-extension-gfm-autolink-literal": "~0.5.0", + "micromark-extension-gfm-strikethrough": "~0.6.5", + "micromark-extension-gfm-table": "~0.4.0", + "micromark-extension-gfm-tagfilter": "~0.3.0", + "micromark-extension-gfm-task-list-item": "~0.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-0.5.7.tgz", + "integrity": "sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==", + "dependencies": { + "micromark": "~2.11.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-0.6.5.tgz", + "integrity": "sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==", + "dependencies": { + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-strikethrough/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-strikethrough/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-strikethrough/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-strikethrough/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-strikethrough/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-strikethrough/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-strikethrough/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-strikethrough/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-table": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-0.4.3.tgz", + "integrity": "sha512-hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA==", + "dependencies": { + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-0.3.0.tgz", + "integrity": "sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-0.3.3.tgz", + "integrity": "sha512-0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ==", + "dependencies": { + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-mdx-expression": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.0.tgz", + "integrity": "sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-mdx-expression": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-expression/node_modules/micromark-factory-space": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz", + "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-expression/node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-expression/node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-extension-mdx-expression/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-extension-mdx-jsx": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.0.tgz", + "integrity": "sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w==", + "peer": true, + "dependencies": { + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "micromark-factory-mdx-expression": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdx-jsx/node_modules/micromark-factory-space": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz", + "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-jsx/node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-jsx/node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-extension-mdx-jsx/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-extension-mdx-md": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz", + "integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==", + "peer": true, + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdx-md/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-extension-mdxjs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz", + "integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==", + "peer": true, + "dependencies": { + "acorn": "^8.0.0", + "acorn-jsx": "^5.0.0", + "micromark-extension-mdx-expression": "^3.0.0", + "micromark-extension-mdx-jsx": "^3.0.0", + "micromark-extension-mdx-md": "^2.0.0", + "micromark-extension-mdxjs-esm": "^3.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs-esm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz", + "integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-core-commonmark": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz", + "integrity": "sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-factory-destination": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz", + "integrity": "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-factory-label": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz", + "integrity": "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-factory-space": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz", + "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-factory-title": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz", + "integrity": "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-factory-whitespace": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz", + "integrity": "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-chunked": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz", + "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-classify-character": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz", + "integrity": "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-html-tag-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz", + "integrity": "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-normalize-identifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz", + "integrity": "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-resolve-all": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz", + "integrity": "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-subtokenize": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz", + "integrity": "sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-extension-mdxjs/node_modules/micromark-util-chunked": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz", + "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs/node_modules/micromark-util-combine-extensions": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz", + "integrity": "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs/node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-extension-mdxjs/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-factory-destination": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", + "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", + "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-factory-mdx-expression": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.1.tgz", + "integrity": "sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" + } + }, + "node_modules/micromark-factory-mdx-expression/node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-mdx-expression/node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-factory-mdx-expression/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-factory-space": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", + "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", + "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", + "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz", + "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", + "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", + "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", + "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", + "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", + "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", + "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-events-to-acorn": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.2.tgz", + "integrity": "sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "estree-util-visit": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "vfile-message": "^4.0.0" + } + }, + "node_modules/micromark-util-events-to-acorn/node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-util-events-to-acorn/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/micromark-util-html-tag-name": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", + "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", + "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", + "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", + "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", + "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", + "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark/node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.53.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", + "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz", + "integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "webpack-sources": "^1.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mitt": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", + "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==" + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + }, + "node_modules/moment": { + "version": "2.30.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", + "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", + "engines": { + "node": "*" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/msgpackr": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.11.0.tgz", + "integrity": "sha512-I8qXuuALqJe5laEBYoFykChhSXLikZmUhccjGsPuSJ/7uPip2TJ7lwdIQwWSAi0jGZDXv4WOP8Qg65QZRuXxXw==", + "optionalDependencies": { + "msgpackr-extract": "^3.0.2" + } + }, + "node_modules/msgpackr-extract": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.3.tgz", + "integrity": "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==", + "hasInstallScript": true, + "optional": true, + "dependencies": { + "node-gyp-build-optional-packages": "5.2.2" + }, + "bin": { + "download-msgpackr-prebuilds": "bin/download-prebuilds.js" + }, + "optionalDependencies": { + "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.3", + "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3" + } + }, + "node_modules/msgpackr-extract/node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz", + "integrity": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==", + "optional": true, + "dependencies": { + "detect-libc": "^2.0.1" + }, + "bin": { + "node-gyp-build-optional-packages": "bin.js", + "node-gyp-build-optional-packages-optional": "optional.js", + "node-gyp-build-optional-packages-test": "build-test.js" + } + }, + "node_modules/multer": { + "version": "1.4.5-lts.1", + "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", + "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "dependencies": { + "append-field": "^1.0.0", + "busboy": "^1.0.0", + "concat-stream": "^1.5.2", + "mkdirp": "^0.5.4", + "object-assign": "^4.1.1", + "type-is": "^1.6.4", + "xtend": "^4.0.0" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + }, + "node_modules/needle": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", + "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", + "dependencies": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" + }, + "engines": { + "node": ">= 4.4.x" + } + }, + "node_modules/needle/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" + }, + "node_modules/nlcst-to-string": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-2.0.4.tgz", + "integrity": "sha512-3x3jwTd6UPG7vi5k4GEzvxJ5rDA7hVUIRNHPblKuMVP9Z3xmlsd9cgLcpAMkc5uPOBna82EeshROFhsPkbnTZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-abi": { + "version": "3.67.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.67.0.tgz", + "integrity": "sha512-bLn/fU/ALVBE9wj+p4Y21ZJWYFjUXLXPi/IewyLZkx3ApxKDNBWCKdReeKOtD8dWpOdDCeMyLh6ZewzcLsG2Nw==", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-abi/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==" + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-gyp-build-optional-packages": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz", + "integrity": "sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==", + "bin": { + "node-gyp-build-optional-packages": "bin.js", + "node-gyp-build-optional-packages-optional": "optional.js", + "node-gyp-build-optional-packages-test": "build-test.js" + } + }, + "node_modules/node-html-parser": { + "version": "5.4.2", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.4.2.tgz", + "integrity": "sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==", + "dependencies": { + "css-select": "^4.2.1", + "he": "1.2.0" + } + }, + "node_modules/node-html-parser/node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/node-html-parser/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/node-html-parser/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/node-html-parser/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/node-html-parser/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + }, + "node_modules/node-object-hash": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/node-object-hash/-/node-object-hash-2.3.10.tgz", + "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/not": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/not/-/not-0.1.0.tgz", + "integrity": "sha512-5PDmaAsVfnWUgTUbJ3ERwn7u79Z0dYxN9ErxCpVJJqe2RK0PJ3z+iFUxuqjwtlDDegXvtWoxD/3Fzxox7tFGWA==" + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/null-loader": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/null-loader/-/null-loader-4.0.1.tgz", + "integrity": "sha512-pxqVbi4U6N26lq+LmgIbB5XATP0VdZKOG25DhHi8btMmJJefGArFyDg1yc4U3hWCJbMqSrw0qyrz1UQX+qYXqg==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/null-loader/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/null-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/null-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/null-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/nullthrows": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", + "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-fit-images": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/object-fit-images/-/object-fit-images-3.2.4.tgz", + "integrity": "sha512-G+7LzpYfTfqUyrZlfrou/PLLLAPNC52FTy5y1CBywX+1/FkxIloOyQXBmZ3Zxa2AWO+lMF0JTuvqbr7G5e5CWg==" + }, + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/objectFitPolyfill": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/objectFitPolyfill/-/objectFitPolyfill-2.3.5.tgz", + "integrity": "sha512-8Quz071ZmGi0QWEG4xB3Bv5Lpw6K0Uca87FLoLMKMWjB6qIq9IyBegP3b/VLNxv2WYvIMGoeUQ+c6ibUkNa8TA==" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/opentracing": { + "version": "0.14.7", + "resolved": "https://registry.npmjs.org/opentracing/-/opentracing-0.14.7.tgz", + "integrity": "sha512-vz9iS7MJ5+Bp1URw8Khvdyw1H/hGvzHWlKQ7eRrQojSCDL1/SrWfrY9QebLw97n2deyRtzHRC3MkQfVNUCo91Q==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ordered-binary": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.5.1.tgz", + "integrity": "sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==" + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-defer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-3.0.0.tgz", + "integrity": "sha512-ugZxsxmtTln604yeYd29EGrNhazN2lywetzpKhfmQjW/VJmhpDmWbiX+h0zL8V91R0UXkhb3KtPmyq9PZw3aYw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.1.tgz", + "integrity": "sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==", + "dependencies": { + "got": "^12.1.0", + "registry-auth-token": "^5.0.1", + "registry-url": "^6.0.0", + "semver": "^7.3.7" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/@sindresorhus/is": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", + "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/package-json/node_modules/@szmarczak/http-timer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", + "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", + "dependencies": { + "defer-to-connect": "^2.0.1" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/package-json/node_modules/cacheable-lookup": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", + "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", + "engines": { + "node": ">=14.16" + } + }, + "node_modules/package-json/node_modules/cacheable-request": { + "version": "10.2.14", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", + "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", + "dependencies": { + "@types/http-cache-semantics": "^4.0.2", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.1", + "keyv": "^4.5.3", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/package-json/node_modules/got": { + "version": "12.6.1", + "resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz", + "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==", + "dependencies": { + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.8", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/package-json/node_modules/http2-wrapper": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", + "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/package-json/node_modules/lowercase-keys": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", + "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/mimic-response": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", + "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/normalize-url": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", + "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/p-cancelable": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", + "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/package-json/node_modules/responselike": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", + "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", + "dependencies": { + "lowercase-keys": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-english": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/parse-english/-/parse-english-4.2.0.tgz", + "integrity": "sha512-jw5N6wZUZViIw3VLG/FUSeL3vDhfw5Q2g4E3nYC69Mm5ANbh9ZWd+eligQbeUoyObZM8neynTn3l14e09pjEWg==", + "dependencies": { + "nlcst-to-string": "^2.0.0", + "parse-latin": "^4.0.0", + "unist-util-modify-children": "^2.0.0", + "unist-util-visit-children": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-entities": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", + "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", + "dependencies": { + "@types/unist": "^2.0.0", + "character-entities": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-entities/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", + "dependencies": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-latin": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-4.3.0.tgz", + "integrity": "sha512-TYKL+K98dcAWoCw/Ac1yrPviU8Trk+/gmjQVaoWEFDZmVD4KRg6c/80xKqNNFQObo2mTONgF8trzAf2UTwKafw==", + "dependencies": { + "nlcst-to-string": "^2.0.0", + "unist-util-modify-children": "^2.0.0", + "unist-util-visit-children": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-path": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", + "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", + "dependencies": { + "protocols": "^2.0.0" + } + }, + "node_modules/parse-srcset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz", + "integrity": "sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==" + }, + "node_modules/parse-url": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", + "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", + "dependencies": { + "parse-path": "^7.0.0" + } + }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", + "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", + "dependencies": { + "domhandler": "^5.0.2", + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/password-prompt": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz", + "integrity": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==", + "dependencies": { + "ansi-escapes": "^4.3.2", + "cross-spawn": "^7.0.3" + } + }, + "node_modules/path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "dependencies": { + "path-root-regex": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/peek-readable": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz", + "integrity": "sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==", + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/periscopic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", + "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^3.0.0", + "is-reference": "^3.0.0" + } + }, + "node_modules/physical-cpu-count": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/physical-cpu-count/-/physical-cpu-count-2.0.0.tgz", + "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" + }, + "node_modules/picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/platform": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz", + "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.4.41", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz", + "integrity": "sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.1", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "node_modules/postcss-loader": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-5.3.0.tgz", + "integrity": "sha512-/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.4", + "semver": "^7.3.4" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-loader/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", + "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", + "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/prebuild-install": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.2.tgz", + "integrity": "sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==", + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + }, + "bin": { + "prebuild-install": "bin.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/prebuild-install/node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/prebuild-install/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prebuild-install/node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/prebuild-install/node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "node_modules/probe-image-size": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/probe-image-size/-/probe-image-size-7.2.3.tgz", + "integrity": "sha512-HubhG4Rb2UH8YtV4ba0Vp5bQ7L78RTONYu/ujmCu5nBI8wGv24s4E9xSKBi0N1MowRpxk76pFCpJtW0KPzOK0w==", + "dependencies": { + "lodash.merge": "^4.6.2", + "needle": "^2.5.2", + "stream-parser": "~0.3.1" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dependencies": { + "asap": "~2.0.3" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/proper-lockfile": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz", + "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==", + "dependencies": { + "graceful-fs": "^4.2.4", + "retry": "^0.12.0", + "signal-exit": "^3.0.2" + } + }, + "node_modules/property-information": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz", + "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", + "dependencies": { + "xtend": "^4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" + }, + "node_modules/protocols": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", + "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/query-string": { + "version": "6.14.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz", + "integrity": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==", + "dependencies": { + "decode-uri-component": "^0.2.0", + "filter-obj": "^1.1.0", + "split-on-first": "^1.0.0", + "strict-uri-encode": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/queue-tick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==" + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-loader": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-4.0.2.tgz", + "integrity": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/raw-loader/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/raw-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/raw-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/raw-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/react-dev-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/react-dev-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/react-dev-utils/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", + "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/react-dev-utils/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" + }, + "node_modules/react-fast-compare": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", + "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" + }, + "node_modules/react-helmet": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/react-helmet/-/react-helmet-6.1.0.tgz", + "integrity": "sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==", + "dependencies": { + "object-assign": "^4.1.1", + "prop-types": "^15.7.2", + "react-fast-compare": "^3.1.1", + "react-side-effect": "^2.1.0" + }, + "peerDependencies": { + "react": ">=16.3.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-server-dom-webpack": { + "version": "0.0.0-experimental-c8b778b7f-20220825", + "resolved": "https://registry.npmjs.org/react-server-dom-webpack/-/react-server-dom-webpack-0.0.0-experimental-c8b778b7f-20220825.tgz", + "integrity": "sha512-JyCjbp6ZvkH/T0EuVPdceYlC8u5WqWDSJr2KxDvc81H2eJ+7zYUN++IcEycnR2F+HmER8QVgxfotnIx352zi+w==", + "dependencies": { + "acorn": "^6.2.1", + "loose-envify": "^1.1.0", + "neo-async": "^2.6.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "react": "0.0.0-experimental-c8b778b7f-20220825", + "webpack": "^5.59.0" + } + }, + "node_modules/react-server-dom-webpack/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/react-side-effect": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/react-side-effect/-/react-side-effect-2.1.2.tgz", + "integrity": "sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw==", + "peerDependencies": { + "react": "^16.3.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/read": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", + "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", + "dependencies": { + "mute-stream": "~0.0.4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/readable-web-to-node-stream": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", + "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", + "dependencies": { + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "dependencies": { + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/redux": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", + "dependencies": { + "@babel/runtime": "^7.9.2" + } + }, + "node_modules/redux-thunk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", + "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", + "peerDependencies": { + "redux": "^4" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", + "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.1", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/registry-auth-token": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", + "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", + "dependencies": { + "@pnpm/npm-conf": "^2.1.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/registry-url": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz", + "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==", + "dependencies": { + "rc": "1.2.8" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/rehype-infer-description-meta": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/rehype-infer-description-meta/-/rehype-infer-description-meta-1.1.0.tgz", + "integrity": "sha512-TGGIYo5YpkQuUxTp9niX7/G1+9VCeC1d3O625jTRDZLUybpjfvekTw70M7dg3viUwdAmXXxqe2A8K0eUz1tTCg==", + "dependencies": { + "@types/hast": "^2.0.0", + "hast-util-excerpt": "^1.0.0", + "hast-util-select": "^5.0.0", + "hast-util-to-text": "^3.0.0", + "hast-util-truncate": "^1.0.0", + "unified": "^10.0.0", + "unist-util-remove-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-infer-description-meta/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/rehype-infer-description-meta/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/rehype-infer-description-meta/node_modules/unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-infer-description-meta/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-infer-description-meta/node_modules/unist-util-remove-position": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz", + "integrity": "sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-infer-description-meta/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-infer-description-meta/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-infer-description-meta/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-infer-description-meta/node_modules/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-infer-description-meta/node_modules/vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/relay-runtime": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/relay-runtime/-/relay-runtime-12.0.0.tgz", + "integrity": "sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "fbjs": "^3.0.0", + "invariant": "^2.2.4" + } + }, + "node_modules/remark": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/remark/-/remark-13.0.0.tgz", + "integrity": "sha512-HDz1+IKGtOyWN+QgBiAT0kn+2s6ovOxHyPAFGKVE81VSzJ+mq7RwHFledEvB5F1p4iJvOah/LOKdFuzvRnNLCA==", + "dependencies": { + "remark-parse": "^9.0.0", + "remark-stringify": "^9.0.0", + "unified": "^9.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-footnotes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-3.0.0.tgz", + "integrity": "sha512-ZssAvH9FjGYlJ/PBVKdSmfyPc3Cz4rTWgZLI4iE/SX8Nt5l3o3oEjv3wwG5VD7xOjktzdwp5coac+kJV9l4jgg==", + "dependencies": { + "mdast-util-footnote": "^0.1.0", + "micromark-extension-footnote": "^0.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-gfm": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-1.0.0.tgz", + "integrity": "sha512-KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA==", + "dependencies": { + "mdast-util-gfm": "^0.1.0", + "micromark-extension-gfm": "^0.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.0.1.tgz", + "integrity": "sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==", + "peer": true, + "dependencies": { + "mdast-util-mdx": "^3.0.0", + "micromark-extension-mdxjs": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "peer": true, + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/remark-mdx/node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "peer": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/remark-mdx/node_modules/mdast-util-from-markdown": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.1.tgz", + "integrity": "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/mdast-util-mdx": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz", + "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==", + "peer": true, + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/mdast-util-to-markdown": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.0.tgz", + "integrity": "sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/micromark": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.0.tgz", + "integrity": "sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-core-commonmark": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz", + "integrity": "sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-factory-destination": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz", + "integrity": "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-factory-label": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz", + "integrity": "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-factory-space": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz", + "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-factory-title": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz", + "integrity": "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-factory-whitespace": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz", + "integrity": "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-util-chunked": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz", + "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-util-classify-character": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz", + "integrity": "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-util-combine-extensions": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz", + "integrity": "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz", + "integrity": "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-util-decode-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz", + "integrity": "sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-util-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", + "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/remark-mdx/node_modules/micromark-util-html-tag-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz", + "integrity": "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/remark-mdx/node_modules/micromark-util-normalize-identifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz", + "integrity": "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-util-resolve-all": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz", + "integrity": "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-util-sanitize-uri": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", + "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-util-subtokenize": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz", + "integrity": "sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-mdx/node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/remark-mdx/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/remark-mdx/node_modules/unist-util-is": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", + "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "peer": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark-parse": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse/node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "peer": true, + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/remark-parse/node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "peer": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/remark-parse/node_modules/mdast-util-from-markdown": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.1.tgz", + "integrity": "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse/node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse/node_modules/micromark": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.0.tgz", + "integrity": "sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-core-commonmark": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz", + "integrity": "sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-factory-destination": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz", + "integrity": "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-factory-label": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz", + "integrity": "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-factory-space": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz", + "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-factory-title": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz", + "integrity": "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-factory-whitespace": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz", + "integrity": "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-util-chunked": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz", + "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-util-classify-character": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz", + "integrity": "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-util-combine-extensions": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz", + "integrity": "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz", + "integrity": "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-util-decode-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz", + "integrity": "sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-util-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", + "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/remark-parse/node_modules/micromark-util-html-tag-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz", + "integrity": "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/remark-parse/node_modules/micromark-util-normalize-identifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz", + "integrity": "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-util-resolve-all": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz", + "integrity": "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-util-sanitize-uri": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", + "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-util-subtokenize": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz", + "integrity": "sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-parse/node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/remark-parse/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/remark-rehype": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.0.tgz", + "integrity": "sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "mdast-util-to-hast": "^13.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-rehype/node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "peer": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/remark-rehype/node_modules/mdast-util-to-hast": { + "version": "13.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz", + "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-rehype/node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/remark-rehype/node_modules/micromark-util-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", + "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/remark-rehype/node_modules/micromark-util-sanitize-uri": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", + "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/remark-rehype/node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/remark-rehype/node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "peer": true + }, + "node_modules/remark-rehype/node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-retext": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/remark-retext/-/remark-retext-4.0.0.tgz", + "integrity": "sha512-cYCchalpf25bTtfXF24ribYvqytPKq0TiEhqQDBHvVEEsApebwruPWP1cTcvTFBidmpXyqzycm+y8ng7Kmvc8Q==", + "dependencies": { + "mdast-util-to-nlcst": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-9.0.1.tgz", + "integrity": "sha512-mWmNg3ZtESvZS8fv5PTvaPckdL4iNlCHTt8/e/8oN08nArHRHjNZMKzA/YW3+p7/lYqIw4nx1XsjCBo/AxNChg==", + "dependencies": { + "mdast-util-to-markdown": "^0.6.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/remark-stringify/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark-stringify/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark-stringify/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark-stringify/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark-stringify/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark-stringify/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark-stringify/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark-stringify/node_modules/longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark-stringify/node_modules/mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark-unwrap-images": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/remark-unwrap-images/-/remark-unwrap-images-3.0.1.tgz", + "integrity": "sha512-5VUY0n+J9lPTPfkct5S3/SbutryBjp8J/4mbgtlkDrOk3h8jde0hyqdYUJOoJKherZezS08tjd6i4+nnQ+wl5w==", + "dependencies": { + "@types/mdast": "^3.0.0", + "hast-util-whitespace": "^2.0.0", + "unified": "^10.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-unwrap-images/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/remark-unwrap-images/node_modules/hast-util-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", + "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-unwrap-images/node_modules/unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-unwrap-images/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-unwrap-images/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-unwrap-images/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-unwrap-images/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-unwrap-images/node_modules/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-unwrap-images/node_modules/vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/remark/node_modules/bail": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", + "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark/node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark/node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark/node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark/node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark/node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark/node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/remark/node_modules/mdast-util-from-markdown": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz", + "integrity": "sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==", + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-to-string": "^2.0.0", + "micromark": "~2.11.0", + "parse-entities": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/remark/node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark/node_modules/remark-parse": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-9.0.0.tgz", + "integrity": "sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==", + "dependencies": { + "mdast-util-from-markdown": "^0.8.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark/node_modules/trough": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", + "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark/node_modules/unified": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz", + "integrity": "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==", + "dependencies": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark/node_modules/vfile": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark/node_modules/vfile-message": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" + }, + "node_modules/renderkid": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz", + "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + } + }, + "node_modules/renderkid/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/renderkid/node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/renderkid/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/renderkid/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "node_modules/require-package-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", + "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==" + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "dependencies": { + "lowercase-keys": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/retext-english": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/retext-english/-/retext-english-3.0.4.tgz", + "integrity": "sha512-yr1PgaBDde+25aJXrnt3p1jvT8FVLVat2Bx8XeAWX13KXo8OT+3nWGU3HWxM4YFJvmfqvJYJZG2d7xxaO774gw==", + "dependencies": { + "parse-english": "^4.0.0", + "unherit": "^1.0.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/sade": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "dependencies": { + "mri": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sanitize-html": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.13.0.tgz", + "integrity": "sha512-Xff91Z+4Mz5QiNSLdLWwjgBDm5b1RU6xBT0+12rapjiaR7SwfRdjw8f+6Rir2MXKLrDicRFHdb51hGOAxmsUIA==", + "dependencies": { + "deepmerge": "^4.2.2", + "escape-string-regexp": "^4.0.0", + "htmlparser2": "^8.0.0", + "is-plain-object": "^5.0.0", + "parse-srcset": "^1.0.2", + "postcss": "^8.3.11" + } + }, + "node_modules/sax": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", + "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==" + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/section-matter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", + "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", + "dependencies": { + "extend-shallow": "^2.0.1", + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shallow-compare": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/shallow-compare/-/shallow-compare-1.2.2.tgz", + "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" + }, + "node_modules/sharp": { + "version": "0.32.6", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.6.tgz", + "integrity": "sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==", + "hasInstallScript": true, + "dependencies": { + "color": "^4.2.3", + "detect-libc": "^2.0.2", + "node-addon-api": "^6.1.0", + "prebuild-install": "^7.1.1", + "semver": "^7.5.4", + "simple-get": "^4.0.1", + "tar-fs": "^3.0.4", + "tunnel-agent": "^0.6.0" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/sharp/node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/sharp/node_modules/node-addon-api": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" + }, + "node_modules/sharp/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/signedsource": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/signedsource/-/signedsource-1.0.0.tgz", + "integrity": "sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==" + }, + "node_modules/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "node_modules/sitemap": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-7.1.2.tgz", + "integrity": "sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==", + "dependencies": { + "@types/node": "^17.0.5", + "@types/sax": "^1.2.1", + "arg": "^5.0.0", + "sax": "^1.2.4" + }, + "bin": { + "sitemap": "dist/cli.js" + }, + "engines": { + "node": ">=12.0.0", + "npm": ">=5.6.0" + } + }, + "node_modules/sitemap/node_modules/@types/node": { + "version": "17.0.45", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", + "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/slice-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/slugify": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/socket.io": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.1.tgz", + "integrity": "sha512-W+utHys2w//dhFjy7iQQu9sGd3eokCjGbl2r59tyLqNiJJBdIebn3GAKEXBr3osqHTObJi2die/25bCx2zsaaw==", + "dependencies": { + "accepts": "~1.3.4", + "base64id": "~2.0.0", + "cors": "~2.8.5", + "debug": "~4.3.2", + "engine.io": "~6.5.0", + "socket.io-adapter": "~2.5.2", + "socket.io-parser": "~4.2.4" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socket.io-adapter": { + "version": "2.5.5", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.5.tgz", + "integrity": "sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==", + "dependencies": { + "debug": "~4.3.4", + "ws": "~8.17.1" + } + }, + "node_modules/socket.io-client": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.1.tgz", + "integrity": "sha512-Qk3Xj8ekbnzKu3faejo4wk2MzXA029XppiXtTF/PkbTg+fcwaTw1PlDrTrrrU4mKoYC4dvlApOnSeyLCKwek2w==", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.2", + "engine.io-client": "~6.5.1", + "socket.io-parser": "~4.2.4" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socket.io-parser": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.4.tgz", + "integrity": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/split-on-first": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", + "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/sponge-case": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sponge-case/-/sponge-case-1.0.1.tgz", + "integrity": "sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" + }, + "node_modules/stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "engines": { + "node": "*" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "dependencies": { + "internal-slot": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/stream-parser": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/stream-parser/-/stream-parser-0.3.1.tgz", + "integrity": "sha512-bJ/HgKq41nlKvlhccD5kaCr/P+Hu0wPNKPJOH7en+YrJu/9EgqUF+88w5Jb6KNcjOFMhfX4B2asfeAtIGuHObQ==", + "dependencies": { + "debug": "2" + } + }, + "node_modules/stream-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/stream-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/streamx": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.19.0.tgz", + "integrity": "sha512-5z6CNR4gtkPbwlxyEqoDGDmWIzoNJqCBt4Eac1ICP9YaIT08ct712cFj0u1rx4F8luAuL+3Qc+RFIdI4OX00kg==", + "dependencies": { + "fast-fifo": "^1.3.2", + "queue-tick": "^1.0.1", + "text-decoder": "^1.1.0" + }, + "optionalDependencies": { + "bare-events": "^2.2.0" + } + }, + "node_modules/strict-uri-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", + "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "node_modules/string-similarity": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/string-similarity/-/string-similarity-1.2.2.tgz", + "integrity": "sha512-IoHUjcw3Srl8nsPlW04U3qwWPk3oG2ffLM0tN853d/E/JlIvcmZmDY2Kz5HzKp4lEi2T7QD7Zuvjq/1rDw+XcQ==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", + "dependencies": { + "lodash.every": "^4.6.0", + "lodash.flattendeep": "^4.4.0", + "lodash.foreach": "^4.5.0", + "lodash.map": "^4.6.0", + "lodash.maxby": "^4.6.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/string.prototype.includes": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.0.tgz", + "integrity": "sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", + "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "regexp.prototype.flags": "^1.5.2", + "set-function-name": "^2.0.2", + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-entities": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-3.1.0.tgz", + "integrity": "sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg==", + "dependencies": { + "character-entities-html4": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "xtend": "^4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/stringify-entities/node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-bom-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-outer/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/strtok3": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz", + "integrity": "sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "peek-readable": "^4.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/style-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", + "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/style-loader/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/style-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/style-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/style-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/style-to-object": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz", + "integrity": "sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==", + "dependencies": { + "inline-style-parser": "0.1.1" + } + }, + "node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/stylis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" + }, + "node_modules/sudo-prompt": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", + "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/svgo/node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/svgo/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/svgo/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/swap-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-2.0.2.tgz", + "integrity": "sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/system-architecture": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/system-architecture/-/system-architecture-0.1.0.tgz", + "integrity": "sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/table": { + "version": "6.8.2", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.2.tgz", + "integrity": "sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==", + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar-fs": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz", + "integrity": "sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==", + "dependencies": { + "pump": "^3.0.0", + "tar-stream": "^3.1.5" + }, + "optionalDependencies": { + "bare-fs": "^2.1.1", + "bare-path": "^2.1.0" + } + }, + "node_modules/tar-stream": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", + "dependencies": { + "b4a": "^1.6.4", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" + } + }, + "node_modules/terser": { + "version": "5.31.6", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz", + "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/terser-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/text-decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.1.1.tgz", + "integrity": "sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==", + "dependencies": { + "b4a": "^1.6.4" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + }, + "node_modules/timers-ext": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.8.tgz", + "integrity": "sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==", + "dependencies": { + "es5-ext": "^0.10.64", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/title-case": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/title-case/-/title-case-3.0.3.tgz", + "integrity": "sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/tmp": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", + "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", + "engines": { + "node": ">=14.14" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/token-types": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz", + "integrity": "sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/trim-repeated/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/true-case-path": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz", + "integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==" + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/type": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.3.tgz", + "integrity": "sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/type-of": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/type-of/-/type-of-2.0.1.tgz", + "integrity": "sha512-39wxbwHdQ2sTiBB8wAzKfQ9GN+om8w+sjNWzr+vZJR5AMD5J+J7Yc8AtXnU9r/r2c8XiDZ/smxutDmZehX/qpQ==" + }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", + "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/ua-parser-js": { + "version": "1.0.38", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.38.tgz", + "integrity": "sha512-Aq5ppTOfvrCMgAPneW1HfWj66Xi7XL+/mIy996R1/CLS/rcyJQm6QZdsKrUeivDFQ+Oc9Wyuwor8Ze8peEoUoQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "engines": { + "node": "*" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/underscore.string": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.6.tgz", + "integrity": "sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==", + "dependencies": { + "sprintf-js": "^1.1.1", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/underscore.string/node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" + }, + "node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==" + }, + "node_modules/unherit": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz", + "integrity": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==", + "dependencies": { + "inherits": "^2.0.0", + "xtend": "^4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unified": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/unist-builder": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-2.0.3.tgz", + "integrity": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-find-after": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-4.0.1.tgz", + "integrity": "sha512-QO/PuPMm2ERxC6vFXEPtmAutOopy5PknD+Oq64gGwxKtk4xwo9Z97t9Av1obPmGU0IyTa6EKYUfTrK2QJS3Ozw==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-find-after/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/unist-util-find-after/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-generated": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz", + "integrity": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-modify-children": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-2.0.0.tgz", + "integrity": "sha512-HGrj7JQo9DwZt8XFsX8UD4gGqOsIlCih9opG6Y+N11XqkBGKzHo8cvDi+MfQQgiZ7zXRUiQREYHhjOBHERTMdg==", + "dependencies": { + "array-iterate": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz", + "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position-from-estree": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz", + "integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-remove-position": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-3.0.0.tgz", + "integrity": "sha512-17kIOuolVuK16LMb9KyMJlqdfCtlfQY5FjY3Sdo9iC7F5wqdXhNjMq0PBvMpkVNNnAmHxXssUW+rZ9T2zbP0Rg==", + "dependencies": { + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-remove-position/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/unist-util-remove-position/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-select": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/unist-util-select/-/unist-util-select-3.0.4.tgz", + "integrity": "sha512-xf1zCu4okgPqGLdhCDpRnjwBNyv3EqjiXRUbz2SdK1+qnLMB7uXXajfzuBvvbHoQ+JLyp4AEbFCGndmc6S72sw==", + "dependencies": { + "css-selector-parser": "^1.0.0", + "not": "^0.1.0", + "nth-check": "^2.0.0", + "unist-util-is": "^4.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", + "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-children": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-1.1.4.tgz", + "integrity": "sha512-sA/nXwYRCQVRwZU2/tQWUqJ9JSFM1X3x7JIOsIgSzrFHcfVt6NkzDtKzyxg2cZWkCwGF9CO8x4QNZRJRMK8FeQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/unist-util-visit/node_modules/unist-util-is": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", + "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit/node_modules/unist-util-visit-parents": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", + "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unixify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz", + "integrity": "sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==", + "dependencies": { + "normalize-path": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unixify/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "dependencies": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/url-loader/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/url-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/url-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/url-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + }, + "node_modules/utility-types": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.11.0.tgz", + "integrity": "sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/uvu": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", + "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", + "dependencies": { + "dequal": "^2.0.0", + "diff": "^5.0.0", + "kleur": "^4.0.3", + "sade": "^1.7.3" + }, + "bin": { + "uvu": "bin.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/uvu/node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", + "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==" + }, + "node_modules/valid-url": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz", + "integrity": "sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==" + }, + "node_modules/value-or-promise": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.12.tgz", + "integrity": "sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==", + "engines": { + "node": ">=12" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-location": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz", + "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", + "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", + "peer": true, + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/watchpack": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", + "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/weak-lru-cache": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/weak-lru-cache/-/weak-lru-cache-1.2.2.tgz", + "integrity": "sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==" + }, + "node_modules/web-namespaces": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz", + "integrity": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/webpack": { + "version": "5.94.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.94.0.tgz", + "integrity": "sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==", + "dependencies": { + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.7.1", + "acorn-import-attributes": "^1.9.5", + "browserslist": "^4.21.10", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.1", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-4.3.0.tgz", + "integrity": "sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==", + "dependencies": { + "colorette": "^1.2.2", + "mem": "^8.1.1", + "memfs": "^3.2.2", + "mime-types": "^2.1.30", + "range-parser": "^1.2.1", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= v10.23.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-merge": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack-sources/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-stats-plugin": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/webpack-stats-plugin/-/webpack-stats-plugin-1.1.3.tgz", + "integrity": "sha512-yUKYyy+e0iF/w31QdfioRKY+h3jDBRpthexBOWGKda99iu2l/wxYsI/XqdlP5IU58/0KB9CsJZgWNAl+/MPkRw==" + }, + "node_modules/webpack-virtual-modules": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" + }, + "node_modules/webpack/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack/node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.4.tgz", + "integrity": "sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==", + "dependencies": { + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dependencies": { + "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/xmlhttprequest-ssl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz", + "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/xstate": { + "version": "4.38.3", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.38.3.tgz", + "integrity": "sha512-SH7nAaaPQx57dx6qvfcIgqKRXIh4L0A1iYEqim4s1u7c9VoCgzZc+63FY90AKU4ZzOC2cfJzTnpO4zK7fCUzzw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/xstate" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/xxhash-wasm": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-0.4.2.tgz", + "integrity": "sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA==" + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yaml-loader": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/yaml-loader/-/yaml-loader-0.8.1.tgz", + "integrity": "sha512-BCEndnUoi3BaZmePkwGGe93txRxLgMhBa/gE725v1/GHnura8QvNs7c4+4C1yyhhKoj3Dg63M7IqhA++15j6ww==", + "dependencies": { + "javascript-stringify": "^2.0.1", + "loader-utils": "^2.0.0", + "yaml": "^2.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yaml-loader/node_modules/yaml": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.0.tgz", + "integrity": "sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yoga-layout-prebuilt": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz", + "integrity": "sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g==", + "dependencies": { + "@types/yoga-layout": "1.9.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yurnalist": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/yurnalist/-/yurnalist-2.1.0.tgz", + "integrity": "sha512-PgrBqosQLM3gN2xBFIMDLACRTV9c365VqityKKpSTWpwR+U4LAFR3rSVyEoscWlu3EzX9+Y0I86GXUKxpHFl6w==", + "dependencies": { + "chalk": "^2.4.2", + "inquirer": "^7.0.0", + "is-ci": "^2.0.0", + "read": "^1.0.7", + "strip-ansi": "^5.2.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/yurnalist/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/yurnalist/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/zwitch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", + "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + } +} diff --git a/package.json b/package.json index 2af38a1d..a06f9424 100644 --- a/package.json +++ b/package.json @@ -1,59 +1,53 @@ { - "name": "keshavlingala", + "name": "keshavlingala-migrated", + "version": "1.0.0", "private": true, - "version": "0.1.0", - "dependencies": { - "@emotion/core": "^10.0.35", - "@emotion/styled": "^10.0.27", - "@mdx-js/mdx": "^1.6.17", - "@mdx-js/react": "^1.6.17", - "font-awesome": "^4.7.0", - "gatsby": "^2.24.58", - "gatsby-image": "^2.4.17", - "gatsby-plugin-emotion": "^4.3.10", - "gatsby-plugin-google-gtag": "^4.16.0", - "gatsby-plugin-manifest": "^2.4.28", - "gatsby-plugin-mdx": "^1.2.39", - "gatsby-plugin-offline": "^3.2.27", - "gatsby-plugin-react-helmet": "^3.3.10", - "gatsby-plugin-react-svg": "^3.0.0", - "gatsby-plugin-sharp": "^2.6.35", - "gatsby-plugin-sitemap": "^6.10.0", - "gatsby-remark-gifs": "^1.0.0", - "gatsby-remark-images": "^3.3.29", - "gatsby-source-filesystem": "^2.3.29", - "gatsby-transformer-sharp": "^2.5.14", - "pageclip": "^1.0.0", - "prop-types": "^15.7.2", - "react": "^16.12.0", - "react-dom": "^16.12.0", - "react-helmet": "^6.1.0" - }, - "devDependencies": { - "gh-pages": "^3.1.0", - "prettier": "2.0.5" - }, + "description": "keshavlingala-migrated", + "author": "Keshav Reddy", "keywords": [ "gatsby" ], - "license": "0BSD", "scripts": { - "build": "npm run clean && gatsby build", "develop": "gatsby develop", - "deploy": "gatsby clean && gatsby build && echo keshav.codes > public/CNAME && cp README.md audits.png public/ && gh-pages -d public -b master", - "gitploy": "gh-pages -d public -b master", - "format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"", - "start": "npm run develop", - "serve": "gatsby serve", + "start": "gatsby clean && gatsby develop --verbose -H 127.0.0.1", + "build": "gatsby clean && gatsby build --verbose", + "serve": "gatsby serve --verbose", "clean": "gatsby clean", - "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1", - "simulate": "gatsby clean && gatsby build && gatsby serve" + "typecheck": "tsc --noEmit", + "buildRun": "npm run build && npm run serve" }, - "repository": { - "type": "git", - "url": "https://github.com/gatsbyjs/gatsby-starter-default" + "dependencies": { + "@emotion/react": "^11.13.0", + "@emotion/styled": "^11.13.0", + "@mdx-js/react": "^2.0.0", + "gatsby": "^5.13.7", + "gatsby-image": "^3.11.0", + "gatsby-plugin-emotion": "^8.13.1", + "gatsby-plugin-google-gtag": "^5.13.1", + "gatsby-plugin-image": "^3.14.0-next.2", + "gatsby-plugin-manifest": "^5.13.1", + "gatsby-plugin-mdx": "^5.13.1", + "gatsby-plugin-mdx-frontmatter": "^0.0.4", + "gatsby-plugin-react-helmet": "^6.13.1", + "gatsby-plugin-sharp": "^5.13.1", + "gatsby-plugin-sitemap": "^6.13.1", + "gatsby-remark-gifs": "^1.2.0", + "gatsby-remark-images": "^7.13.1", + "gatsby-source-filesystem": "^5.13.1", + "gatsby-transformer-remark": "^6.13.1", + "gatsby-transformer-sharp": "^5.13.1", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-helmet": "^6.1.0" + }, + "devDependencies": { + "@types/node": "^20.11.19", + "@types/react": "^18.2.55", + "@types/react-dom": "^18.2.19", + "ajv": "^8.17.1", + "typescript": "^5.3.3" }, - "bugs": { - "url": "https://github.com/gatsbyjs/gatsby/issues" + "engines": { + "node": ">=18.0.0" } } diff --git a/src/Archive/IOT/feature.jpg b/src/Archive/IOT/feature.jpg deleted file mode 100644 index e40fb73979ccd31e4639f7ab07f8c4ec30f3aa8f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96840 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
2Ljb&H>3P%=iRMA#EcdJiC zSa05Fqnhm@LK~N4;-A!5ZVEAU$N>#fPoDADkNvx`GYqxTqmOwvCk6@B25v@wgr^pZ zdpVtR7>_Ow)#Z$Mhc$xn`?<>ng1~LM12|Ig7UUTqG2Hy5e1cnHnMiWM*Idg%4i|e^ zn~0eh(>9|p^*uVK03330EHQbqvDb#@Mj#)ibkuh&uSFDC2(3~56 zI$4O1PAMLVA#=R*>n$CorY96a0*D(-cr2Ed_wq8wqPLrNr8>W7F1p`03~xWW(lQoh zOIpoajZWZPlCcZLGS%-u8*QZ73b@a*#f^!coC!qq8v+abWQ$ShvlGNNfwnQ5upEl`m z$4RLwbhu%%VdP1o z)!I<$ulvkt&%I?Ds{9L%49kYYtUHT}K;@6*Td{|Qvo(^cFQ=?B*f=8`5io|m=ee&U zZJP_~bV<2#^LW#uk)Zcv?<C3qf!XB@@wYqp>!R z2CEft7iZ4Y4Uz6W=RcB4XhtsdG~-%csra|0ls&B|+yRS7&;I2ZoG-%?H!NZw#JyW6 z{l~oQ1Gab4&!>0wlGR;(Yp+r~PGVay&?o*N`2J_S(64vM(D+G5sqHyYkb?It*WrKh^xOT$sgDM9 zs8>XWS-8nMEe)_eFb{PACxFPvGx-vN`F~EBtdN!?bjGR8n*P`41|Kp~&W$f_?=ztZ z1j1{MHGBi{J0`)(Q_LCG1Q*uBgW+el-Xy(u5d*q6k&IAywJQC&i(4P`Sy)qe%S#a; z#_$foK~bNc|3nu*?q6_|BW(2mh2T&6%}M(XPg=-e)KsR?`HnP{&WW!8(3pUAC?M77 zos;4I%fb-#t7j&h$(T}m`!Uiu8d}ChRDElyEShOcZ8itK7C?o_OBMh5XeoXQ*za*t zzEP-fu%dUIgI^$x!+R9JzCJ~2J8HQc5sLVoMh_~JL|`<|xA42Q5iBL;AsQ?=W8OFS zDZ)827mF~m>JQXz8L<`GKT(&kaGNnEn>2W#=su>aKCtCQ>*2- zRHiQZJ2?bVFL+CMpL5qjv~5KcH?q9Unv1cQhA^pO;Q77RUGT!L{d6{x$hi|UDseXe zUm;G^v&do&sY{LXrl5wR-ZF47_#QdT4AuDap%Nsa0!>u8rl4Za%*Bk1S&rPgGcyX) zusi80`eh<>O50_s<3qqKq<;XG-{fL({g_enGOhr_&04Ej-#Y`1K8x_~YW0VjDK`m~ zk^<_`T-f=u8zk<@2=lN*=~^QYk(&Y4j-y{CHX&$^-theX?4ZQ4D_PX&@qT7ZVlPY~ zrVNJH*b$-ezcb?s$$T_L(o9na$chDwlVa0Llqa(c&N+QtKH@YLZcAoFO5D~^fA@Vp z=CfhBV!)31x4yur-|}3Ow)@trPT@a)Ji;3lJPQ%C^;U|SRp%y0Ct3gHDgDcHuwkpK zb1;AOw*wW~o&VVIv&0^Em7@cKu|FPeej4r~(8#uj+eNmkRVg)D1)v>M3mN}-Es_Gj`iG(PDThLLzc9fp>Rqwb|bye3; z#LR1KW}WuCsN8@(>N%sy_L`OH4v#5wm~Bs~H+c=j>K?Y|2Ef-RmT*=L&QrXo`XG|AS|X;B8pi=quwl zFHBFc9S)}RSr3NujoF^HdI;QX{9{!kd)%_MYICZR#rcRt-3b5go}jsjQ%MdJ-M()lKv^#rUQ`HaXyqV_)jG0cfcn_Cdn{cbys9F&H zXKQRYU6C;NY?FC#7J&fZF^&LUc)No(Z>(8Vf9HyJXQ)V0w%{6~z%u#+;7irm^S4KU z$(!UfFHgEQD=OG=_2F7vb1~Wo6O!G$(A^a#fLe30(twqsTjSiNejzs_7^BW3IvTPH zY-HeZAHIrN7%&r+_4<=x$CXRSMNEo2l$F>5Pub}Q)!Ow$5yMxuq^8*7l%I;d`?lwz z$0-6gHcJa?=v7lP`tN{t?SI5wk5$r&R}H?Ox;~{P!nL?8HmL`UA2On%dIk;;F7? z22-8l4cm$%P;Dm5(XH+9CT2oqyxTm zY$6wH$W-P>{R!c5*{-M1wym1pR;kz zq#U+>d^sCo$~WkgDb!2bfOd3aZytyb*ol2E8qLXwFbLAaU*>W9=cMXG%u>dIacAL7?#WuJEu8mh6KhDB7*(}P6Q#?uQKs7_G1>k~pv z)mZkuBC)IJn?f`xwWdvgxeu=+O-Fk7pSS>{rM)&y;23ya-6&pMIgyn9_CWf=EB$OvA8u{L)IR&@fBBNuAmhI=ns=| zKTFQT9c~Za)%i2_iJxrnom2B{A~Sn}g3dX8H_WDaTJ zd1)ps@ce!K5(ZUCBqQa)(FYm;#g3&8_3b177cIsg+7kZo!9sr{DkdGEblL51ntYJ} z3m-!rQUAK$AS=xQVc8n9t2jaw#$HM4_Njb8^pA1ezFg zW2`Hia~#0LgV~L}QSuQPy1TkPpT{YKd0U3t`PHy16t(`L&XJy#32p??B zDAOC|DE9+y?x*e;PU2`q5r5=n30FPde|~#A>0W8OyupJmnaP{WQVM~s+fy~agC=)& zDzTNL8_u6QiIRVe$XRQK*9wKkFgpM`_CL*_zP%~OA3<-ZuuL)JfiCoHo){Ve@#1s6}MN&M>X=8h`EgIZv*oyHGLHgzdNI> zm{FFQkr}okEOH&jm=Q^C2abRBku}HJm;gZ1ehk;7C(*l`5SV(TzgTt8-0V6!+iYC4 z1Dj$+Y%?VpJFRn+bFU%HRf35j9k2u4RenK@z$wkTGdu%Bd(3V4;g=t?B`IX3D8rjU z?{>|Ur7fqt(>^+hvVV8zD9iJ_32|hefUm1L4E6R@mOXLb2m|>jD)fA2U}lM8Uceb= zC%g93&0@Rh#|$iZ0Cvm1t3{NRP4k1JxHVrY-G2~s4WTXbc#93el@LcSe-a6tYT}sA zKjar;S4JE?X^&Li`@My{TLg7!>x8?$g_6FSbaahSCi# z_#WStr3drqo)ld_F{Ti8WbSexU+$-^Kv;6E4Owl~!B%oq_miZ(ql3gZ?WZSeP~Koy zr_4mDXxq}bR6xfac;M~iJi1!yOpW!T_(x1f*DuaKP$95{pDRcrIFFdgzzyjwd8|{J zbvAUy*?d#iQ$0hyFX1v&2df+vVDcRrQ{$7~%CEW`9~EOzjE#Lokyn}ezc3)sUjqH{ z_wzGAmiPSLGr|oq$tDu?m0F=0o}IF-6=H{5F`;Rex+;uGwxEMfGvlGlkq3jiJyb3c+ungm7t;7 zwjDc}XSm%mR!#T~DIlZyI_0}p$&22@`k6QUA4t*0>Jht2yWQ(6pKc{MREDxxWhMh; zJm+|e%j3N6PSNcRow?SCeOtPYwmE*)&D}&SMU?*@nZi^gl-DwX!W;uyj!oXymlz2ivn2hZi*^U5T#iv@PyCF405~L z-i`ljf9jPkc359#M!>Ch!lCMHvZMVmh7k4E@79su7<$7sv+KQ`ZYvWtQLlE}nR>Wg z(SM5hCn5n7WB47JL7yPWgEl!~@}BrL0>m)u=Dgjhd!jw01;+(1d`(s6>J9DEJBhlr zx^=i!OEOBVbWOGOAP0YMTNZ$9B)V6)2~siz%6QL+Ey$#4tcy<1<6YqUH*lW;TT#*3 z!TU+HAEC^H1Bx$t1RY#ilBAu8x_-jF?w*eDrz0NbT|*%*PAN)|&x@OEKd32*;e#tp+;VlihDI`jQ6ac<~8My-8i3z zrLxTw1%T!w#KjN*gxp`@Ey=bd8)gxHTUaw1qbvVQhe_!@zwHZD~a9wzTn@2*$uax;YF zCLk7@&49p6MSFpp(YtYc~ z!N{yx>KBPbu%S`YR?q}lXU`k+#A8&$zL#L~iuFqBK`#unu61CfasJLN3bosF&AqOQ zT1|+X=p@W*v?y%2ogk zfolPqUjy^nok9%Bwc?ASO4xN?dyTg3h}C+uMhHP}vL$WanMHL^JpN?6-sYqX;LZ4H z$Hu#0xR^)x(AE2iSj5LD3@HR-yVRlYGR3+!FQLE2kn_stI7gezhF9oVb6~ zBG}bKe{%8G{YMb#iO}^6BXh+C-h#-*U-mcI?@jubfiIxB@%r&<`$1~YA0A$hn4iPZ z+q<(L>SFb4>|)2A{BQtLcT$I?vSwq!E%GZ*7~Wx#tcNS5q^^xpe(N=LBp$yYfP}yh zCVS|sUi9j^$$E1C5H{NEvZy2;g}vC>cQJ2>IQtG^?0=)p44Yt^4NVZ~=o51L%Y&=P zm6DPcD-F{LmJ1UIbFg<-Pc?K|;dsPOaO*tRW*95}gREJ(rdqz2Ak__)A~jw~ ztz2JIdtLQc-kZ`)H0SasB6VJe(L1#-bSJL=n!Dz8lge6EW%Pzr(`s9_V+q`vH7sR< z)zHmxys%7a5ECcNEr(+~bzmuU+zmKccuV%-P-l=PI*aMMx^8d&7M$8QGB|)r|1k>< z^9pl~K@~?p!LzA{N3oht*9HYsCX^jMSj(X7=UUTkH?eP-qPU8ABB-_`!d!qgk<2hE zdj3N-Stb^UhMI%%f}U1;gvdQJVY^0k*8{xhsVCJ9lNC@?k0fB*XQAy80qwghoX4LI z=^$OHLf;EkqkD5Cj{xNzNEJ3>r)N}-rSeZLv^k6A_}*rwj*$KHCG!e zS&av`*DtTq0HcbNQPD*7F%c1Jo66!f>AeXroEQv#YZd;=u?8=%``iqbnGzR1mEz+8 z6@777h}MN$blf&|_{N%`zjxC(lsN)c-$ec**fmB6R0GFOPn9RXm?R&SZ#m-QExvXIMWg6ifi6!x7DwgQhhTW@odQ9E~GE(sRqU zBR`sN1SP2}?jN^6ma6aw_-+YoqF_T{)| zAnO)W8Vj@d*ff?%#(+ouv}LQypQPKUXXj{#8@QcjRU0piMrZ6Kash-I;mHmAE|)Jy z7>%j_yjilq%Ft}U5M<4FdO`8vDaY-o6;{97;Wu3MPOlqEU9Xq5%%N0!#6wK!!cE>zTWY5WfkmSvPZQ~gA%62d?OL^!?&?GLY%)!S zA5(4$Dd;4g)9~5v+5^gata2o3(1EyyG zWM+=<`1eF=z3wTCcTB<6U!ZlYZ)A&NxT4KW%bV)-4^4#R zC2)?>fnl%uIH1YqqCW>({pz=n@&m0YrQA4A5O>pBh`aQ#4^CG_*qx90XeKlBdZ|&1 zj`5xvR0i9wA@Zv^k667a6RfTfrIHolcS$0&(YyHip=zD0jBQLv1Q9&fz@jFl9ryFW zUcrb-B#T{WRCnra9zj-KsjB{>Cnw?)QGO7O!p_%7_CztuT)+Lpf0n-V>rg^=zeoCW zHDnNC;XSMrS0iQpry@$wxHn|h5Eh>9YqTAep*AHJpNkiA?D78I+(C zL=>+9rO4sBpy*Qi;6~&|{|FmY#XE0m#V0(BD-KUyXk1@cShw9OI{9rTZM$XM_&O;7 z>CUAhHlCnTB*dgQy@w<6K~E&hCXsD5-C>D9P2@3`pAe~wNBR4u(m1E z#I~@yN#V9o$rce63b*}}`vR&a{BGy^7i8LDMWOh}8FfS%n?!&mq-*VMdqWzWm)OFmvkpC#RXdC2`Hv?@dhH_4LBx{RlYZV)8jzb6R4JbX#(kp3)vdPRDj+z$)i zQs56{#LVhGHf$C%$ou`}=D$vdMy_~<9*Zc$Q0O?DEzh8{biNExzmIxt*TrQXe zzxFwF74S=#{~aacdNABeH{dl!+-T&}1^!!9*zK6um=EuT)>JUiz3D|j{v#_DD}W`3 zYP_Gmcl&zs!d^jYw6RqM=}ZTp(IFiE7|<)qj#O{M^527&*XcP}sY=o^;PWM(Pn&{r z%A=0g7tVj)lx9}wAmE$`05@TRxpaE{_JNN3FYVNy9L>mjp@@&VDscZ__g3nDFb!wP z&s$j=RkxwZJjqT^qL0v_HGqib{H{J49a=+_vS!7bAM`_KXai%+BQE4}Kw1--JQ_O) zgbKNJjJ)^{<5i(E6UZ#!&D{x|9tBkfHb)F};<^#GoNRi{*%}=mihyRi5Wvw&0er-D zRoq$T<4=!UPgBp#&o}DmBE*zY#hX`N)F}rpfz=5VkTK%VZ z7r{}XUX<;7y*+BKOBRXJ`)8p(e|dB@f&oy#x4%623q&PWTNDRvW_ElRSay;n_Lm0% z^ghnc#qTYilaQea|JF9=uX|bt7=Ksw)UG^|FoOE_2e=5J_9-&Vq|7GG?nA|5B*`#L zF^H#kNb`&m;mG%IY`yTDs19MPC{Nqf-(_onL-{5(j#4w^9d>>M40zr4LOW2d%yj&xzc_Zc~|F6e*u9uw*gUJm|d!Yery+& z+T+WiR2yiHV-DrEqWKykT1m-3qBi@_TuL@wBs#wH{( z6Rvir8X9Ji#-nihq%{!wvw_ZQwi+wKi3*b!s`YX*cp>1{J@uJG@tb$R4cXH<5yRnf zU;4jxeXmV*_$1=ncn;nzWlCbqu7ztqz3U;NrMkKs7`DC)^6DUTgL_e1SP?^sw~0(`yN7OcrIsyy0z^1wAK%njCRgk=Z? zBG>V)7OL4aaR`SE8@WP+r&rUQKe4O)-#IB2I6&eXYYf(9*I@WYBa2SX$G+mltPp{b8X|N8;dV4q6FK-m#r%m2l#>nuL9T;3o936Ia{3>B%O zBaD`C9dptv&!sR~)Q0Dcq1W8(82^IbO&Y$RsW78U{R0a~8!t?m^)I}mUFm9yX(Amo8s$LIV2(Y!Io=W-;#YHZ3M=snO9R}>M@faO&!k~y zbmZ)vhD*e&74gusVu9cj85Pmzh(U0!zzzM%HYbkKaemF3xy0 zwqVXD0gp_ozY~175gg|ql6a&7{f&BYWd7<^+CQnrhpzI16kFxxb`)45^cKRAx5vfM zeViX*U4MC!lF@^LF9-Ri?LPcBpyJP>#5-VF!(mWk^R%!BTN#tuad#am+lxMct3vL? z{Bksz!?UVbI=R5!HuR$&bjw=>mYL#@EtbM83Cw_9c22#%Fp50 z6~{ZnFM$_kod>vm5P3I2DC(n%;C6_7b${N+mgJjc!?J_XBb0z~SgGE^$j^dvFMIB6 zAr}n?B7{G(7f8cI+C=MQ_sBQsAi8B?^`$^!%kj*4?s1LTHn}3YD63s8q@oIcET?m# zN(*P=#uoGhRKHj35PX)VFP|J5U$SLW2foN zc0pY=+mgNAf>c6vB)0Z{s;a&CSM?~l0qJk0*^awjm$%^7bI=iodPRd^+Pd5&wo zhbxm>Tek~|xpZj~}kzsT3U0`_{z|%&{&Z!9QF{t^{BeGd08{0`6Tv zcg~-)PJeu}>CHr3%4Iow$IJ1uvXV)kW9peA%3aS%`z5_$!yi7rhGneSu;T8#90(TO zh5^ZdTfhUu65he}+EoK658ica^B1T~AY)RWJ?w6cLz(Ae5J(c=%Mkx?rd>r(_0Myn zPSwvRD>g=E`IGx!!|4b1HwO_W9`YX1yBhz)epm3& zS1r`z(QOOjeN+{}F7Tj?v|?e!#YFeC51l;Qk!}8-mO=IPa-rO}-P@twyl-b6>)LC> zDgu9P_07sh)s?0j>9{nLW^B0iM5xyCEEW9OQ6MEM;$B=E%9tfqMpg`=hSUXLr$$RV zISEfh+4csj&26*p-Coyye-~%->9`h0i(^3t$;ncre~6 z%+sN4%Guh=HeGM3?&re#oTy1yRF)o5m06&xjM3C4oFYh#->{G-Hn$+JDeoXLo4MDr z&s#m-eijr^!8hNmB&NPqK0+d6n8F?+Tj56eOujezOFRZ*Wg%_tKhg@T!gVTnCsihB z35PF-?{5#;&+Gpl^V2#%Ws~YWgc5Gj#QTYr?I}iC8`p$0@XoFR$dG5eWPb&g*vVj0 zV$koywX?r1v!QO;hg@|afG)h$=CY<|zH!-f{gLWSwc|LU?sZ~St6ovl+W?>=??*(Y zlo}qx92_;ca9$gb)n)lqyDBg2(3<&QeoP7!fXZL@e9(Us()cFyZ65bn0a@?KoOA5Q z32GOb@#AAVzOgxPaddNRlcnHDedf@1qlRww@ipeu>QR$EwwCNu*^JGU;RkX#8Bczm zFe-3I{Lo=%plFM$HYP#}VA1G{$YaBG`fYUfcG=mI80Kt$*Z0qJi&Ny!8wWf2dGamI z4PSW_I6ba?r7HL4YAC?Z2K^nQ8wI|)b#>|Zt508Fjg~%kJ1h5I_x}5%*PzCCqAg=9 z+*1vA*6@S;G#8}Z?xd+_Vv37M%8*cEg*vcgJCd1~G-)@bZ7pR{v;OnZfNQv-B;zlS z8+Yml4j@cf(MuDufzC2WWbL^vTMhsKIw5vT2gA*$j*=BW#={zgL_S2pcm5m*ic-zN zH)ZHIn{nw$mMH43y73#cFDvG%o;myr~mi)QCTnhOhv~h+QHJ$Jk18u`Ou$Fd;++XMkI~5saa11#VeYJ?Ot$ zPsxnUt#Q|x3H{+_z8%9FQs6d#%t)+14rk}39zSkih1os0*p=o|&hce6kGp%(kNQ3Z zyeAUvL!d=p5|DiFqbvRH8m~wXZI!Dh%`m#vxcVi-0RMZu(GmipgvbXe1jwD%pm-H_ zL9>0UAnlzZq#XpRQX25_Cj#el=J>39Wf^``S|S@E1#CS>&_tSZT5~qodX5_j!5g|Q zYt2A$JUrR-(QMde!%;&b^A?rw)k6)=HW%vd?xoV3VPmHl^wFbwZu$BB6XhhCi{?!l z8Iq!EvMeOa%;fFkgs^m}poy>EXE#ogr;ia^8fafvbshFgk3}oM_TO1})dWE8tiv|RfI0c!oa=w~gZoM>!R>-a7Vy!~r)NIx4qPpLw^S^;G1Uchvx|cqnW%H6 zdQByNH4jnypVFE`=1sBtj;XpK3wmHo+-cl35ss9^+RS3Nuv3;4u$3$dhcg{> zE_LhXf`rE9#Vj}BScla_<7=u(A6}dzPQkWR>+k#wWzWUT3j(WRf`-f(ZS52UV2F&xX}Q`YQ;hA}G3u=(aB&Fl-t=pF|K}7CMb~H_Mo#9s z65W8o-y6{VkrFwLve0+emkHgOQn)?jpD%C{!G?YdExun_L@O=5j%)S~`F`lKp8bDQ z$R?@Z3G~*`2m5|Jt=hZHK!=ca|E-XuW#xDQuXM-8UjB8wC%5q!ghJ<> z|D5Y0rS}3WcjCsW-WSUQ_KQ1YE>K$xM)p8_6~*RJ$=97u*@L3I%?>MM`}fsIzF&>I zF_A8k+cA8dExQA(N8$Nl;x>ghI^D=y^Xy4Gz-I8%yg2nPi**09K%nQ?Cj86Ic_7Q& zY|}O)nMtxzz90sHct(Hn2kIk|MWb4nP*m0uDjySiYW$LVlK#g};<9%9fgeu(Vj7J( z1x$@pImsO>y&)#Amj~q0J$t4*olS_F2+MWgM2EDDR7e<)c}>rI1+KD$_O_uuojggM zT`C%HcLG9jRkoQN9U;L=@r@0?D>^_LM*dw@4Wu1`@x_{n)ytJLQt|3AtfBZ#LO=tN zgYqhZJtRA+1P7HL?`tk}TsybnLzt)xVxUNQjeea`qRwjqMJvq1k5*nERe0VkKW7g` zR=I*jMS3{GjRvO>zB)nvA?^aYLRYy%-uvSvZV+LSv;z)ymET%_O#o|{to`O6@?aLW zWMlS=HG~ZMn2wuac-^_|OYO>(j<41l#H~gOK9AHNTppqzY`QYXh-dG{RyuG0DAEbK zjD7U%nwCDceaNHu#OfU{1VoS&36Z|vcj~#`x4h>-DgG0n6C%&aDRY2wsdh}Et6PCn z)`1`qQ4fK2f)Pv4=F-wp>trCkyHs}WN&2^!^= z9_P_2gg%I2LX!YLaC_Y8!`EibFJLasJ+M}p%a}c&rj1N$m?Unwv$7pn>QTZrc-hEZ zkqG_(kGwDL4HJPr-kh^(LIq&)>d>kbR4Ar}<>a@phpL7+*~JOlZgNQ>R{m`cViOh9 zlDz)xtIE(jSW&=Bzc3gzD_T z)xe@;2-AuZCm=HgT)#Wsb{{4wjS~rc`8}$rA#fQ4z67d@cVc9Vgv==`&xN=5SVsiW zvQ5NCEcbkG+|2Qt>l~)=^J+C&*L_0g&&9X;H2`WcXDvFQ&b=;nJuyz*^~9o=d13TB z#B2@bRKNW{Z9|POjDu)w`1o9hiBb)kHkh|oHZF}5Z)^66J&AdjT31S!OTZfQ*h3f07d`9la?iApPecWE&%{JaZ&_YUH z7uCh?A5HoOy}tZg^t3i)zxbU6erWi^=Hvm{=0{H*6hgx1T!Y088xJ9dw$g!0)4ArI*;vqf5+*!3U7V5_v%yPt8Z6J zUp?$OQ}XWvbAPf-Xm7XXjh=S7Ox6^Arx@l^u;Gz3KykmL>34&_;g93Us&4?Ng?46d zdzU!mX^uyab_z|`RhDzjpTXGh!McRfzdWb5K=s-mqmHM4_^pP9Q*6?HdboT3bjbX) zr)RZCQgbD_ukrOQ;Dng&2AcZ8n_*^53)c{MWLZ?k*s&x)YXUt& zQh{`mws!#F_1I8ric6@-T}a=dDIgap53dR()#o3N8TohcOBx|`^JmB+QjFWid2Dw|zynUh@%-yfc+s~nDOnbD&ug1(L z1#HXN&Yv!KcHT*5tF!ZFPC0-~5RnaR>GI~1!Tfi??@}}S+mMehwz_m%rYLIM?LVB= z!*N8Tp?n=Nn% zM+dR2ZRqFs92@@fxYASD@3wb<-XYZi*e)L)E_v6m-bYPs!`tWb`3qR){bPBr|NA%{ zU3LdX8cLUzJ-7qC6x;4CPm_9IXv~XE+TFFNO1ivUqaDJw#ahFbd|ppO21{+r66mgF zu*u;|Y&7ca)nDx;laWdf3%Kz{o`TNR(5CGuyHda&NCKeERRNFe9X3^TlA`HRWUtS?Ef5rSqy&1P-@IWcq1&a5^Pk8DbS#_Z#vNJ*Ql1T6{Dwz zT*VGlUN~?yP$gHes!y%AX@`I30hiLE7<9@&`mJDZxp5gG zqn3(I#WQ_V`Kh9M40SYSjw-R2=xe59q`UJ2X>Iy=MgN$5eiO!68qVQp3Y;)`n>pH` zU+1;_gMKPV+yA0s581(;FUe@u1cU66J2OhA84O4D(944W7-?=yubJR0#s@`U{&!YzSV0Ygjjv2#X3~LpEMTB^=DT5(ZlVj zb`J7Q7Jy@k;udAN>P)hVT__m7my+odQUu}=DfIH1>eOruZ4s26)%LurmU33pnSht- zxQIo6=2m1_bhhLrQ*s-Xn~$qab{=*OjQA4D(rM3%jwfh4J;A%5HhC*}h~Aw4ok)9Q zk6xoC_zL>paS&Z}5fqnwQhk^*{qr{GbI`YM_`2tDlwTWlc=4Y2wqZr^=S7E_?daf- z%H;Yo>k!`%qqf-ji(Tf!-22-q?aj3P7X%l2WY@!&#Bltt)mUI5>fV6AIY7ZQ9H*#?#=!VIB-L zAfj6^QFj#zzjtZyAXiPpm4WK0$nx66~K@w`Rir15zNM;CONJ&9!J zS|6%hOqPCqVZvQZ2c5~lG}E&9sPc3Xb?Bikr)-=$Ztlq!hJ7!8y0CJ!;_MSIrbYR% zCbF@vgIlSt4jX;O?e{|y?_iA;`Hr7NAB)>;&*pshem<_W{(2jnw~T*t<>tyS!v^cr zvCWgRL$>IucMc|-u8?3+7mEuw1!R&zYihtyzIZX_x=Hk#KL%fvJsG?n{-fUauHW88 z-9EU+r&hmq0v|J%d(gq`bqg7EsE%&)&stcE28L!!Dy{9^f(h+Z&1Tu~k81m0|Ju>p z8L)eFw$~^k1SoEFkz2Vk9qxDy?dR4^ld_jtWl?7gZ`Hmwar^Q{=KoGwCg_Hpt{z^n zC)B4L{t~;%Kb5e?$yK$X3Jvz$Yza0YI+;H30}ecuE7K;Ol9DoDxNJKxL~6Efn^9cW zBzPV6H+1G7YoOK6miisKJsZ@|X#{oa4jln~FIc1=N~)cwk$P=FU{oc;ta;siWFtbwn)V`CeYmtsCC8eNluS#8G9 z9mFspVb$q~5^MeKVkRI}wS_I^%l>n=+5E`3vB@pqVw=bUGEVXT&w9B3xA@|!@^#q` zZE%ONxm@mKhzhYC&$r^RS<(C%)cTiaA+lsrWd{nrKKF;RzS1?vh z7uQfth)AC%9~Zb}n4(|Q)}E$_c%q}xB>b6H!E*oXP4H)`-5Rkf*eoBT2n{cNi{_Gk zUdz>YTl}^ep>4yZSHB7lZHZ``JetIf5dp5Tif#WtQ$)8-X>q)~5Gf@&ks1lHh-!sa~P$ z5B~D_XiK-(OGNF~x?gD==cmCVSQQh2?(Cc+-pK}QkE^1tc~yqI4%5JKZ{n6D<1;4Z zx(>z92T2X__T&-TNZB0o(mE9t#qSMM&ErNq-uRTG#J%$RK5GrnuKvuJtB!XdQ3Gsb z;&6$lf!d_NV>2Woq;+ANBOH_PHrz77mq!(*BT*#A@q&}Asua^ah|qRB3zod79@piU zDc2#LA!EBCneEWjaKFMcaeicCANc4eB3<96m(=Nwe$!Nrf$xA+bgne)x)>sHFzH2{*0?0#K`H~AI8J^0$+<;l&+Q*i zsQbQ@%#q{akOtw+5l&u}PY6CGh~mp8&O^7W!v_;{h;lu>mntPW00VR_?Q&4R^YP#T z5i)jwNHh88B)qV_SUmMWlKd54~JS|D5W74^}UZrT%!A_-~82X zV7U#&%XmE$uI6k8=~Mb%SNvI)Xyt&*28(ecPxTn}hyH#LA~Y_#tL3uH7ODW#Al~20 z#)~eItP6K!Az2!1xEe95g_Y@~z;l?lUSdz}iHnswPycrMH3((IqR_ z@hc{#j2L-jF+{5W5fAv}vOZq&q838W$aCSYWiG_mvpQ(>>4CjIm*fHdN(;$i!>rA7 zpoB2mkH|4bLiI=3Pqv|`-cV^4NE_L|(lWIPo(sxi^WyII;K&-o(Fv)AExmUayu;B;54sE@y z)5IOIz3(T|tMzU&YBf)Te@@lzszxE}9B4{X#w{V&Gy59KITZ{|{;J9o6L5Z40BQ*uV-ZRRu(( z35ax}B25HDq=sswh7JJ*lZYs&ln6)@Fe*(-=t&@yhzJM>NDB}M0Ypk5)Pxd}c%R>U z-gECc-#FiQ|M>o7WRQ&K*?X_O)?9PVnb_v>=vs8WsM-vVOwfMJ#5|jVG_3oHs5HoN z+P16FR$WS76hC-6Hk$69Cc!{%OP9RdHMEgES}+D+=3%vbwc@(%0kanwJ@~AF=&@I` zQEut@OvyS+3u*c%&zSS-LkxlPq#;%g(z5{Pik)L*YHy8@a>QjJMjI#&r_=6njT^-F z^&6`B``g#TK@D5zo=6HKUD|fo7r^Yat;BV1y!?b>_6oIWl77t|{;D)qx;L!zjiJ%~ zPJnlIPU_Vqqo|=n+qJj_Kfwm^n_feF`7j;xVufAVpld?0&q0y%-SBpcT}Nvl?2r#h z^r-GCa)TaFBE3Ac?ZMHeuPXEWFHq3sv)qTFzL#ln1&+!}@D-?w9cHLj!+7h}GwOsH zo_~szuJ=UJgeOB{)Tp&+R5}A+SIgw@3n80=Kj{H{M$O&q6{w(Aba7>xHv8P$f$@YJ zCWo$1)$;gO9Q$+atVG2AF_B#OlEBsZ=eH%nk$#mVGG)`w^uzSsWJJna1xb(Rd$b&nvA8=pIdu-XJ1H7*j_sd2CP$Mx;pd-`&JmRm1uM;|*PaUA&!Qwlo! zPY^Ye6;WSx+1 zZO8zq6=mNM>uK-2-xI)Pw0)7*Nmig^h(VA_hCWjy5no0VB7$@`f z45IoYV(%jh2iE*L!$Yi0ytr6mw>q0i3I*JxNWsQP%cj!9yOrny{OXt~vZpcv1GBZ- z4^zfg64VlS_N+o5B;|vDGSF)&jH`kr~+3=iyhW+qWm>x$;k>Bt-op`>Ae8XR3e9U1b52(<=zDlg#A(kRUy=IB8F$g*OYkHdxJ%kq;_&GvR)Xz)iW zx`OI#n(sbtgilqG*+!SjA+>Fr3&R&ZRUzrUf zmMM4_Kz$uOO~Ur<>iT&r`A^Sg!lDWsb*Uc!KwCP={n|CH;WGwE5{^A7?324sE;Y`fk6y6-8lNx`syu-J0ZGKa*9ei$nE%3+jx z2s5ECscbVg=6reJmjVE9oG& z;h;lAw)jnj{NEdwn$_?L%|IFIFX?=24!(J>L; zXRFoaEdqo7tg9|SXa5nkUH;UK>=OutbPPtZ-<^D(#`-B=5l~v&V)24==E5W_+dRiT zqi*yTVaQn~XdOOj2hhq8J03nWBTTrH~H958^5y2dtKGkwPSbA(`V_Xig# zRH7%(%PsV&tL$j?f0sN1q6O&J&-b$|*n)|??BRfWp4+wGYg$wTAjclIX#k`jx|1}2 zqD`9i$cTwKatK{~bbchwik6+FR6SVL|7+qvn{ug0Q=Cl;;ohpvd|AWC9|DM@uM=vtiCYal4)fygViVqfQxfO4PO@zDHx zlp?sM8YI4CT*3(@>57;f7K0ld*tMr!>3MQM%$~1>P=|_X4)jpN;Ox)z|E?f%Bt@LE zK-D|6J?X4+96@X$-nA!%t>h3v|Z{BX2`G&=cIe*zb z-_|$ZOi^!6lrE8HZs;ZwE)GbQKw##XnQkSg6yxJ~#_g>WBA@*ZBWZT_-#+n4aQ2gt zd$Rc_zac9y2HTukVVX_n5%-c#zVnRL@=H_-CVxw(9ANxjLT~=%0lIo!qAt4;MD}|m z9z;nW!N1XMCsR#4fnhEI07go)BW`k#JJ)=jiv~iRX{+lCKOzszsgww>^ND1WG=H2m zKB6o+|MuocOuvcL`~Q%L`%k~y|6~FD^Qia#H!a}v9QL{64N;R@nzeql_ZAn=2#M@> zr;pnS40v=A2<@)oXu@DZ1Q-d&9{ZbPqHGKbi>`{O6=tkCuL;S{Se<4eP8^b5~| zeb4WLY7)ddao_Hw)0-0T;bUvKS1GhAwUg8y_Dl|mr5d)}+a~h8%Fh)|+im>u%9wug z>GPw{#$#xAvLbqoL!!YsiH>yP{iRZX_M(k!Q}&zI8eN=?$)0W%DY3HOJ2!dH8O`o{ z^70UGC11xy%;43M?lzcW-#FMSY4>+=Zcb5NlmOS^pX;PWOI^4P94?2 zr3a?52k%A_ftr6)8*x}EtY;BT2Z5m|v!7ww=$qbECEtbiTwP&gA!(%ar7g{bc2{-Q zB+4xB2iJKHE>tPq*vu01i9y;J}%sAbA(o9xR_WUpz5m%x>1 ze@4yEIo+~rkHjHDP%Fr0Y?skzjzjyxq|;NUcZPW!A>gVZZvCmraR10#IMOY8J4N>7 z<9aq5RL|+9RTjT5Dz&xJKTF{?j51R`e@JV8FB64PyC-I35#m?l#g4}Ka?4qfp!rLx zzVl3fd~AO)B}l36>-%|+^3ZUu0dh6bF^*da{{l`=b&sbB9$(IKy3LXYxHb|~>c|)- zu^B+Vs;VR+>FV|nbn*_>X1J@6Eo@>gL6fo7#OZ6s@uQ< z*+;r!qiGd<$}P_iA2$AHkDvczWoW4T?vXNX0BY)s`KBMWbnD7X;_bY`L>kgs3oPcB zk?!t+G&t@jshSSLucoJ-h1mU48r&uzJqdTa199u{O>&5GK+!<9`RR?M=9Y7uky zFq=A8&!&{r@7Zltd>7%{CfTwycyhCaA_|y`m25nnqf9-Oks=u7BOP2mXFyJ_K9wAR z7VRkiROvrKel@j#m2hg`F zMDjYHQ^N`Ifv@I&o@8vC?HFTtifsq5IyCS8?*iw${ho4Tyu$BBYbd54W09Y4PL8_%Wh#^2jl05 zT~-v!22zs-#Squ6MEYo$RLGFAH}ut(2C~^N7@ho8^Qrz>od+g*!EU`5RACNUYABQM zxPyGellhOCkVn|=Xw}lK-y1gWoQH4Z>oPGKv->mXIc>l6k{(5Zm)S#+g<9-Q$e%u| zMxC_da}v4s-s~;zh7;XpJ455(9ev6J&Gn=6pcKa2aoR%Z+c4#~COUrMa|)v7sPw@4 zLGf3RmIX@7*0FxP#pjBq8ta_?RpI{45yeX-l#@JK{lZ!D*%ud{2CWGj3=uLv_g42A zjV1bdh?wTLcnyu&eStg9zaTW_C;Pf%MS2v1Z@dd zDgP9qGx+&BGF%OF=@G5uj-g?f>z)%gQ^3+rZ7oWYw?#et1Dzx+T8|$(B>S=Fo$-{# zrfu>(SpUWp=yUJBcN@g&?1{avzgITw?-v%1ysRx4TXp9NYq3TX>J}Srv@5A|0{TTw zTJnc)MOmbdP|C?OW?uXAu*> z-m4z37g~%u=-k}UID*o!BRA)9x>fv&`Huu<9rHbgJAgp5FAf4e4m+84aPWmB<4N$JcHu^r7Y+#9)*yW(yiz#CogTgo(8qz2d`U@mk!VLKbpFAtUgC%x9f~fi%HoEq)kDkB&e{&}(X2500FHN4+c5AZfc8DMmmctJHzg0J z{1x)*g@0_wcL&v^Bq`<+jlBl1#{`Ko(tnkVZ;ysq` zNNtYMqENf;peuRe1JHrb_9OAy&Sxam0__F;HM*nAsM#Y{sv#vic;8w}o5Wq#3wL(q*{J-uvD|RX=(v~t{ftur;7<^gg2oX zL}u@tkPwv6fd?s%)L3Vw$Id^Dad6&L#&Axp{fViE!u_i#Xrkv_v4q>=U4L-I2t=#N zuV5`^%;D&mpe@9|d>EKn|BybqL|s%ycVp0H6vT2|zu&hq95pHR4dAA7(5p;8i1$53 zf@Lcb77+=`ylozmJwJS)Ew*HUB=^%T@py&wcY!pxp5)8viHT2fES;r@qL8e7fBw_t zVQ=dtY@%YA4Zx8I-v#xv?qKUQVN*_V^M(fT@+B8PLaV;bsWm0)-^R=Bh^L^zLmx8J zcfqv9wTKi-n9U^vqrLr;{_wD4x7b&N!|DU(GvVbxUV63=CZ@`d;pD%Q^}E5+7(6-M z+vA78cm|L`NI(<}Z{2WTC1FPAJpWzub?(YCwtz?NM8r~r!KVOvQ$Cb@&Rh-a>)NvS zP!uCEOSlb7%!~X`%2-O*+G4QZjM?bRklJhbRLSZ9LwGilb7%aEK;vMQ$=CV8_ZgE$ zl^;jIs)TlqPzcL(qDovbS7Ay0i2MODzkrEjBA@#h1FIXc`-;WCoT8m1JG+qVQ+PVB zIAC>>$C8*zh18I^(ntlxC$n(y ztyQRs1Fa;_rcHQ!ORJeN;cT=~#vyNV6C&~3I3AASLR4XzgBmcoQwQv1`|7L?1(2ac zuHbeBq;=iMs)1-skg(Ni%^dlbU0Hp-;Q3@I^DH7pAB5QfDh}`w^}Nu#{+V{?v#N~A z>{uE=x-@cOX%XMnygT|u_3GM2P-*KAe-@x-1zPFmTG@U8_lI01M6-YqNNPwxbPdU( zszrh+v2Z5;GT6-4hKBKi2LSE_HxHst-f!&@;XU?HgWH`-?bq3maBnBzRhdG6ot-24@0e-u`V68+2b_%F|RX)MCv>>w~y zk1NiQ?hSgjw`hnpamJ(&J_8IcmBsjMA!p=(%spa8>t!azYak^hj4Y;?bF{BCeD<0@ zH@F=ELzzADgO!(tF)zJWjwrpTc=ib%o+qh2f8Jo*3Bu$*sC#sy6drxWcyvetqwaaSELHBcg1Vw-_+At00)7 z0%ic=aPyDjVJRNv;eD?6%W^|FMz0?2?%qW}K<|=sXc7Y`(^iD3NUC)yBLLeDXO6OG z737P{S6xgu8qLsVjx6+Mu>?Y}oMP;StDJP4Qya5bCi<@|mU%gCn$5n?#I-0WCWG0T zY~b>{KpIWY^h>5Mc{XgFuSe1H3M=j=-+m^Qv-hym{a%{JNJ5;b`iDLGT{PG;Xwl?Z z0QUw_eEtx=!q);rN(GUcGsos+FC;Rxl`Ry!#m01vG{BKA;B1G!OI2?5L`3flo-HDH z_ilVih&Nni{%N{VKktGc_s%B|V?iwHKyP3S-bfD-CyGq2j9{Ye4Q`RYRAm9{WgeZl z6N7iTLl|Wl>GjeI-A`P7$0Kx8c$>Ta^Ooa7LmFkJ91y~6DVO~Go13C^sbWm>4H>AF zxTgYU%jM)5HIfN3Rf?`7_I^0K;3Y*^cU_sAH`=qQ7nT@4hoKgq-L|z)4uJUAMdc?v z9{)8AS0N$ot!H+OgI6aL3mkf!x*&??3ecO?sZr@3l7QB@h@ZCyp~b1^H6h?WkyjH> zG93jKlvKAP>4@nGR&U?h7l03|`{6YOf2AUH3(hyRTgus#ZxBdv$B2X~CJ|&P!ZvMO z7C;-5Ez#UkLtYGkF%kKdwle2?m%|2Dq{J?eF{_50C1!BlWloqYn7Cf2(IbX~#`sB4yYUhDaayP0zHxXTcvCv$CQ0KCib-!e)Y= zt5<=1C)&piA(P4_BhirVG>yh(l{t+LnH_W4RQ;Y##;fu(xv^}!=9a~7RlU^{@u1dp zk>v+7mhgvUUq5VpY(?xfpjloV++bS(LwxElKQl>&g0g$;rl#DH23CGF#`r~|*Z)QPJEte&jz&JGlmVe$# z>U59wm)D1JhF2d?Ihfu~o(2!>Q9WGE0`mMW;Rj}Bmy2ed`g@~hd*;@OIDka1B;FxEPw0Y7Fb-plX|_gRSoG*wBViqjGBd) zL$q8hB1P>s-T9R1S7&RL|CB>x`$DX}*S~L^Xw{5Z7m)2@tus~PpFvc3jpubT;DNvm zM})#DR-YHr-IRW`25pip`r%698{tUF9pE{e%dc0aSwm>p#4>V+UuuI;U70AB9^U6% z$UL%`X5>&h=}Fr9^NXS~(hsf7<;cCiZVjv^S}2xOUIYg%?)R8FOEGvZ*XcE@QGS6q z1qHrQ&L(gpqvh;UTR)~A8pUyzO%O+L|UGP%F+zbk>;=E1~KX-npxObYr+EaW4R z{Z^jahF75XjE(p5M_2Nzp5#Aa+G(BfBX1k*!U0(#zE6=+E8Iuztp z&3$Q-`A9M`7?gVwxqrL0NAkPgdU9Mg>00BA8fIVJ_pdy`CXV=_^70H$WSK`Oso(ok zDKo-vIcf9F$eb0tdt8Lh2{=J^W3sodn=%;n3c)+%k$n*QI$|m^0k?b0|(f&{cQSeP)6=L2N2uFZsHl%qel4v z&kgyEb)>K*SF=&|WCPi0(UNAniL}J&7329VX)TRF-J!Vv2N}Mb{}A`+T4;m^zeZ-% z_L=LOk03`qlCE}c5lEVe;d!$Zr$m+zD_y=9qe-y^Vy0pJ5h3z9gQ~gNy8KPMNe8jG zyNEjZ8XY*`BVmNTF1f^urZr^6>HEWu~fh4A8=gAqlFu0G zse?VC+5(*aitNaW(Ra;^k6jAI?K*#XK7|*7{a9f(xgSKW(og3GpSVh-b=B_Jwpqn{ z-HEzr{rgOh^R9|tn7Jw1J#hsRmm|@|wIaeonVJk_oanGEgMhN~(0(>B3I@A+gNBRT zLgTMQ#6W}mew=OVzLG3L(^+J(-KSw78iVlcI3Lo+rhjzF0lxrr`li}($eaTyN zphXgg-E@e`K7U)!;S4@E21GJ`t+j%Lda`Y&@Rt^=mWy!$S=i6By$k-;L6EWuXR7Tv z;)h;~9WNILkpV)iT`%ASF&ek*uR}VrSosW5wqmYc)uzg5N(JS1AUA9kqw^rY8NEfL zk25BR!B>L=>XwghWywWCBZ^)3pk4OG z8^m`%)*dG&Nlbt2?Dm(OM{)W9EkIJMUwrt;s!`tJ6?p2SN3TQ3>N?hOW`5OF1hsE@ zqG$|-((lf>|J&mx01u~XXmxPL<54iXZeW37Z6^GF0XxTY0 z8}D^RYyg8xB>>T&^%MFFM~Q_4q&pYW_k$z+kKI)JZ8Hl_?h>EP@Y+;o91EW#Zfq%T zv4Q-1S|T6d6;s)q;8<}h&7anWg5Qu&r0$6;nFA;C9&jwBWq~Met{7m@rD<<3rbjN> zg+FXaisXNLgFM`?pM@u{z>wXg!<>6GBe9I%*YVd2Vg{YtBO$i%Gm(wdo3PhXg{jpv zf3u$l#?vAy1r(sq^nxy1!%YFTt9r%HlLwC-4c~m^?-XGo``ey*MkU-S-6^&O`U3qY z5(sp&2v1H&dCR;wsK?2{MD~vuQ(d}SK~wE5^6d&cnKaM2xOBwDy&Usr3CdT{KQg8# z?NhvyiG5fd!VLFFv>g2SR!!EoGWBZX9MmYdl7PNfH{cZ5cH&}W^tYeAwDcKjjkfn| zsMtr;OaX&z$3Jaxp|O|wuCm>sBj(B7nmExgO@PE!4THbZN&xjC?FD=H`RzS71qiC0 z(W&j&-ZOF~QxkUt(Gk-eW`B}Swzaa@c8o>kvflu8d8O8U@LA56^%!vlEPl zePrLzZt7*dcAfQ4D!9jQj?4}8 zGxruT2NV`IR|6%|eNR=TAvHZYYs9W#N@b324Hn}~Zlgy@@#vg>`#Pz*T6E^(Wq+(a zihz&N7nw99c)f&-x8?LLYA>7^CDwBu0qq^bigo&O7?yVgvG$<6iQog@(mMOqaZ6A> z!Rzd2B^%4}8l0Kx{%-t#q^LR|F?*zoed4!fHRj5_`d z^EOjl<=Qfd-;fz){CCP_T~Z!ijP^Wj`g|b*_Hb|W*Sz%o18%n1PuKF#kOV$PxZLji z>5-1wdr>koTKsLmbaXvoTZygRU9W z)f->oqY{1XH1sxFwa;y~!eifb$GNCRF$iZq7mT!u$RZ$J+O zZ;s*4?7QnDW@s(cNcV${wCm1%^%4*Wp|H~wF0A$-1VQyPzb2yJxJ(<7s^6cjTHgu! zk$CRb4Ng{5e~v)h!jB?+AH=V?xi0N$tXfNJna_C}pBkl{BH)N$F*zo8DgG`rxXSs; z=NPRn-*A4Y;au%s9`_)?)Nq;t5wKA*s$!q`QcZHjdjk#kC3s>PF`#~+T4vD1!Ylb3 zkmi8{3EDwWcTXiH&HU{_wdQEo=ZhTA4y(QD7cfBBMbirkI1;^8U7+_EY3)EjbL|#u%GQb|uwb82zCgLH zN-8U?k5nl2nzIZe<2BJ}Fzw-|94;VY*VFxpbA3^n;MbO2`ew;35J1;eag9Sj;1<+< zV;t&YV1lh3ZArHfuvyfzUQXdF7|??wyqDrl>8u&U0Y~N!gNoft4N`{ zW?!}Xb?nWt)*Pa>>ia(%k7fhTUVO%6e?-2>wt5j1fpP-=N%c#pbMz~*6n71cZr0J` zzmO@`@__#U4p5NqT`PiaS^fIL7;7i5??Wd59tQSQW`6U`pGSWtf>o9g2FtT!j*csh zR0Dpq*eSrl;s?CrF&piFd-#}8Y*ExD@_q5#DAc9%Z1e`akC>A+7@8>C5J{!F^-Y|h11CaOXWr^Fz*b-l= zxq#T??@*m%7$>E38F+@w%D1*X{ShJ03i~^KmnVQM&%(2wae6dh+Zw_PWTJ}kOYNb{ zm9LYR7M&3KRco(cs6bS|ZeryaD2X9h0&GBT5Bup)fz&~7Y(c%fHSV9wQ+!}?7rtai zuQ`jhMO1TKzZZgvIS}0YU^|6!k^DVoZYX}he_^K!PFy(4gaA^FiZQTi)h{E!_%XnC zCekd4trL9C3pxB0b&TaaJZ(<>6eFSHy%Wo+zC@Ah-%j+Q-M9Mg&H*Hd1+^s$;NCwM ze(pn>RpPCr=ujsb>#qOG=M)5%W*`aZ^C$ET!%14)x$G zWn_v|sb6ZXe#YcM$sM!c*81E>p_982Qd+URi=lBA^YZ(4+vL#oOSYQz9Q3cHzdT2* zKp#xZ%LKwC?zNVy9-e&!A*ihq8KyUbFg`ZYZRFA*Jp{aU>Lo82|c1>N=OAQW20u{}m z4h-779eD}c1sqDn#^G!qR&IY+&%JDGUA z`l2(eF+jFyw*U9Sbj7xHf+KPkIiGHj-nXg}VMdYc_tOX;q`|e`3zM)d0rO-kGz^eg zWdqHBt<8WtepoAOb*m>(Oxf&D`oI|Ehe+qx}o3%PS+apJ1uQGOT;bY15AVA z+`R%tq*4nu6}3x3*%L{F!CL-yV+hqQvBG}dc|cCnp*Qllt~|n+E>2OCjZ?AXU!9>|b;OJ< zj*2Pv;!vy)mFwTi(_-aJVsc<2}WxjM%p1-~I{1)%|=B1*fQ?+CFerUwB zhhw`~i>UCSpFNqc&8Xf#p-ltu@4nDOB4cKLiXk61@d2B|r^ybq@hv-2Qtnx`5LDNE z^^Q-Q+}FpI6C{2yF=F*@aoDdm_i+bWtMw`IXAx;weFW1Fy?>zOq zWMwJw+mu!L269UB=FDm^MW5dvGh{Q#>nwt8+=`$!%^~w`nzOP3PlRYZo(XgE2Q-GA zEb*>=F*o$Smp1o(&r3obG67W@{KyqsT=L`j}Gx~K6&q5HSkeUMqlg4sxzJ`DGGtxHh6`d0_r2*MU2oJ*r@tG7)cx_DoLn`&dAXAHBydWUQ55xk3oK~mba$N2 zV_%nZgB9)7*ABHfFLUdXf$!`^9ZPT`i^c#ucY@E;^*G3HNZC$n;Y^fbdNpopf2%gf zwhpJ&Qk`{Zb=7*gmb@^PYlz}0tk|#iRpq+f$d+zv&tPh==M1;6iy=Q z=(mBlh{`StqmS|T0gr8Ia#{)>yT9y=+Gi7<$H@fLv*6g|7L}c*L0!A`IfN}wikHcpWQgovUeYI zWt6;)YQNf*a=iJ1PQ!OyN0~Po5D1a7)%y4l_hKHw3dl(q_hcC-G$!p+AKn zS6zCYrxKFPtp#U(H`tqX10Z4GY^^^uy}N4!)C#(fupL^wx}*~5FAp#QavwA8K)p=s zW83XN^q++U?p58VuYkx%?^5M>HIQVX-w-I@WD`aEoE8>6HYtl~Q4E3XUChysbI{bj zIIK(@hF&kG+Uixn?Q&^7g4j8TCCcfjklLnN8FUk6ou=GFrLoX+Wl4b1&TD4iAJCOz zUA__14_C;2G7ElT?Eqlt(s(6GYrpaiT(Y=aS(`5d4Uw+LKzunTX)KifLXO4$+H*B= zm80SrVfp#FP{&~{_zy7|TCd5%^@v(*ikCN3e17v9=h9&3n3FGMXL+m&a(D^|<_@oM;qRnP6+%gR6{69iW(t>;GUhhBcCK3ZPtn zmOtkRQ8&PoV>zF>L-L%tkLU|=7!#GeM-ll1OQ^z5 z1eoSmro7gqi0l~a{;(gDXh?;}`~8G0Iw$obN<%-Sc$UQ3Uyn(vTt-1H`u%({SW-9j z13hbqpyeTWPVBN7D#^~FVBf@2~-(qWPu-UIepbKVCCAuQ@dqc zqir>~^+Jy7vHXYXM-CMS~m|G6( z0i?t#gL9lVePJG*zWmZCzk1QhUJnl1?8(dY!|@KoS9cQh%vo~asnNBT6E6xR6)*Z2 z#omdt&3q9bwU;rUDs>FoH;tHS8a8^poBEfh!41IbB-Wx`#?Z^?N-bjvXzq7ThbVz> zPNMGEzdwB5SjS!1J=K|djhX^~JTgRBip#+j+e!C;Iu5ORmn+WV#tlw#`{?{uU~ zD4JI>P_1MZim5^@*`AYA^2@QkPzi0r6roL*2I~Rfc$6!+SnNpTYJ#kh17m-Ae1Se! zlIdR_fCEHa0Ps$nFVN2}_3p7sdYABH8T^drvak3jX(03box-%`=n^-((L1M!YaOf- z?g#3wM=$%0kMsZc=XWArq$~a9NwgSpVE{MR*mdO0{l7fzGBkjzh@@wM)@5ahgEUWz zZci&7c>3k)GexBN5eL9v81jc0j)z~@%-G~|6`FwH&s0>G5LvV}TpR`6X9<~UWT?k_ zx;~nTh7^BlQ)+L8;wyXImyuPy+bgSak#dWG!P(IU0P!UZI4!{f4rFNrj_sDD(*O@O zr%V?cty)66N9Zp9xj9H14HJ+HbXABHmm+`|r68>v0KAbi6iJcuo=mVjAX%D{@;g+=&{T#DySNVcDwY91xJ*El_1YAWHBr2esGOsD?(-dTeid@?m1xHAmX14ZhZ$kzGpJ*4&KI}keC4a99Sc}Q${ro?mP(SM-8mGl z_l3dD%!F^kWYVn?e{H;KsUfQ=Dk1y*)aV?U!WDa8T0g{U_d)x#;98^>L_dh3c-1wo5;aP7H5-LBxeEWouP|4Fs{c1{^y**sePu zow$WwSawI&mI7L2go7-M!SadC`YII%>VZ*6BM4A7bg^S~^!pYnHlh8{J~V$uGzA>f zW+&ndY%k{fa|;hzhh5=MSm@|jL%}l+vTc}mBwap^5Pvj&PR`}vpFfGG-c3VVTO?e% z=XU^zK{r56S@JmlFZM(orr**qD!7FW;XII-!uE>wd+xE>pdCxLOPY=b6mpGoY zJHGz(DIYUU+=!GIJMSRZL|G9rn$Ny?58(aT`c#(h8XA1AR>QSvHs^68!MpQ45c4nX zyqNh#R@hu?CS;&hc=*ke@aT0UBbHNJsyBN48t=18Dzo}?JzD|2Ira|t+Se0fAbR0t zlg80!g?4-IRHNeOl0N?^Tm%iR8ZQ2`E{@nBL@oS5nYv3jr-G5ZJmq@Z7<~Fy=a|e5 zHR%u-K;1r8>?_d=INBfXTD ztb_RTp_A+j@<33jdHRlmU2q+M=S;~C`p!UM{} zLUr+ZzR&5@uz83@Wh2{SMINwPF%&$nN=XUFrG;>yV(geJLhvvaq3sL{R~wZJmpKF? zRQj;G1{8i&t11p>x$H?0tc|$_7arrdu&|;9U1znnN4}-4gcG)CTOS_LRyLBzQl;pf zzCMd>Fo=$q>|^GBwBtx@yx*A7 z?74X0=zH{dN)P8LwtP{Lq*)vj`_vRbGFZuVHO`*~dk}u3Y4eNOPU5^Vs=NG~#oX#M zo}C+xW%6g&vbW2W&n%+4Sr#sx!Rswu)87p%UY+D_EvPydab>(BBLXacNRGNMK`gRF z>Zm)+l1?zhagx*#62IrjuwE(0kCpo?;yTF8-yjhVf%TpqU9Oy1bYdVQ$-Oi3RMf_{ zbZ4YSm624HvCE$6sTaCo;K!dIm%b?g*%4e9LB9n)Wcro4^W{hUIx?w?x1%(tj@l9f zfY=1IzP;csEYeDe=DC3GuU)OX&L?Wp^$L|Ia%y-XrO3QlppM7}GJrTV;9pi5OCsx4 zghDf2&l(A|%~%HU>*bbFaMfT6F(Tan*khnMF@T6W3!%Qdva2gt6^l)9Q^ggN{b4Xw zu28Sdn7m__Hkj5e1_FK2aDVh@cu-_e;q=%7#U0V5K16e&#Us1Ns(l7oKvea~mUOXh zuUkTd-z%t>6R0>?TTk-lsQ-#2Dq}Ei40LJ2{N{|U_2VbkvVpOprX{dT5R^g;5f`PJ z?(l<&jtF2l9Xk+I^u4LqRzfj8x&8i{0*0FB73xR9?j~7zE?V3M*&;qMV;;^l#EF?D zoUh9-9QuSBbF1por32$B)<&k^NH}SdP|CkEUG%>o=T~n=OPO$AI!TrtzM}dgxyj0`HqXWPHb((rk&#P z#kFhhE{-+szr?C%-l3LqE;ivwRgUZiI!UEBDDtLEKmncZuj>a`7?^9zfkAe9Uu={5 z&%t(-!Ys^M;14IAkF@%Q6o=r(sr~9(oE67(6V_tRub`a1)#Y5d!e4VoMN1YMM&yE& zAo9f-)P-gC+sn<2){p~a|`dkg6OrB22!UpXj}3G zdVl~}35fbPJy&p>ppP{Y2wl#Uu}tC)Hs$3otAKC2+^?3@Fl(R2)>4wHqYDA07h-Ff zBWd4=C2j};r90B8sXVm2q*hE@aZw~G!MTg4XvTaF5#msJRSPvVz*Lf?&3ag;&WOe zfCL@G8%VAYX(n}}} za}@rWrM!TLC-6~}su|ZvEBOKWv_=4duk-;e$_x=Ah(qjb-z>3&z6GLq-+aT_Dx9@b zv<0<%KCjSIqRe(k56ci;IwBfKh&At!E_@9w3CWn{NH}EKFEob9bp%GBhn6#$lpL31 zmj?Q%PQ46%i#PuD0mbAJ)a-JIuEoQp|CXr#Pl-4{YU-cqzj|BDC~8nD`SK06s4Wdj ze(K<+zv-{E4$QCFBpbcjvQ{%PYyBYl6fbFuGH|HEMgKmDJbn9ZRYVbhk^Pskw0|>S z?)|asYJA^{_n91Mt+T>M8k?f=Q+F_9HA`o;Ub zcaDjt$4T3voV6trW;ht~UmaoKZ zxYQxzBd2KE;j^gEpf{nPubJ;X8;BG3RgA^?+g9HyAmyW7dWSy%4=+kWd`vc&)6 z$|L^{%=DW`{co~`aq#*9wF8v;_-B0Hpa!7$@uhNKqo3GnMK3aR`Lvzfc~^4}mrsR*%12G%?%t01n^X-A>}bO0`N{S%|)YBEF1wwb$5s5D0?T{=S^``@I8qW#`3fb2s+@i$>+S#)dqr*$01rALUUhyelV9aKb+P>q0sAu4v7B1NP`dMC8d0z{;PNJ|2Q z5~P#RNhpED^Q?8=^}cKEy?^X;uJ6aW&JQo|a78QUb6DFcRhN!@3ldQ5!qp_>e&=*HCAG z+LmhRXsrSDL}aeD_??E00ebWn#%{K2PRxZRNme+~Uoty%YGAM`c>x!oP=H_Bv9*G5nh+fYqh$k_lFH6jk@tZBiLHbM9QBJsTpPXa8^rVsS3tYw4-RX%iKt1Y z1J|5L1nn#s;A`4}`jA5)Og-|j-z658r$w^$(|&r0n^z*;;m6+Vo%K!M52_r@jrS=S zt{}Jtx1eMa;$#TWW+QF>n{D-4njL)dh1mo0ZhT~CpZo6mkGv{+9eM*hYvo8n!o$tw zBNgEL45YPe=HB88u<)PV&^;yHK@W|hIhZq&E7=)yf#S6>dx?-Yyn}WD zkhSDl$6mJm6HcfP%$Nrh7CAU=x&PwWcEK}E6nEV7H2HwR+jmiOR~2{s9c@XW&XLZmYyV@9?Sw)&5rMQq$Vs2ZEVOL2wcm2s#vJQJOW`@ois|HF!R4>i1({`)>uudgU%^>wiOW#NzW=tEj4P5WkO(<2LB&+K)2ktz?bjM zHZ-B)$NO^b^m@)!@pj1zP(>;F4PfNZqMtWAt5_eul0&c;o_R=C{iLv~zpLFEmmEr5 zsqQk&%AVLovO7tvR#RGlc;sxOeA{GJF33x&ADWI5?LF~a8DZbI)#;F>4=|D|`{8$w z8HOTkOC?m-BU`J0PvrB+)B*w@n~e&)adaGc7x|qt|3^;6SJsL$d1=AJoz9<2+59|* z+O);DMxjqrkx939>IoCF4MOYA${iyqD`8D0-^XKVMNH7s47Jzft>-gA6_u z<1)(|USu`TkwRi4|4Pp7-?ruP>np%Lzc1r~U%4~<#IEExp(9+S`fI;A2Sn$I2B=Nc z(|yJ;rc!n$tC{Sc^=lKP4xXW!q{%W>wF|QgcJWRVs^7ydhItRBMATJS_A^U_9aX&$ zNF`j%TZRGcbZ`OXgLCl@v-5H;LAGNpyS~|rEyl7R=m#3_xPzPO0KV;zJTTxbYQoBj zZHs3Qdb6W#K}%Ad35l7e2|wr2f*9D|Q&?Qcb&K1JRIwJ@;z&Ce%3p^ zfA7cIdNhoJlaUz@#BWx48_hkonWvuV3$>}}^V3PGuc-)fT*wP^z<|GXjOZsG7xT=? z2x-)wPo!!$R~7K}{2-GSAB_K*yn6p<@(MtifjYNx+45D{J31#;m1XBFymB2X)ytA^ zOP%xOfOVfF%$>Q)?PK=2u}!LHJX7UROm6(%&FGZU@zlPPFcDqF)Abi)c1>5z9Xf)% z$97ZL++AQEquzg2!nENl?9?=DslZ zd#WY_glL@I{`-Fuw*May1Ypd62;Bd6#xKHu;N?Q1aPN#yH*9lv^14#S(#Zm^^kl(+ zN$1J&VY#wP_xa8|6o;6a9aPnB#;cGiZrahyr0`>cd}*|$?8!@IMXlb4HGRUq56L;h zL62Jgp}h@X+3f{!2=LALg_nzPc8cgVm`8P`zoia1ZQj8!%L_!Q1!uP{!#lpj35@Rh zSQQG%I7Y41W6xUvj+}UJo)$3B5MwW-et0fHUdQd#%c)={^rKO4yGi4Wz1aG({kI#8);9~FD{s*;eIBz_ zo39jFTCoeF+`Qp%YQU=eZ9gyL%lKwR;>^7}YWd^k56)R%yTYxQ8sII_(Hwwh%MonR zCa4vuJ}eqO@sq0M{&0TYF|RM@N2)|*jN?LKKiV?}%8VGX>jOf%HXo8NS|}`TSVYH zVaD-9_F3(sz1YIGMh_02;WeNF*Nj|($!cZ^X4wro zi@1347mR5{dVRq*AnYkL6(6*{b~WS4#SW&n826s}8Tm$yrGkb*ud_jNaBwFm^~UH4 zRG3kUqbo_e--OSLSH8tp)H}`&jw;6Ap&RFU3^IZ;&-pjyt$1LL2J{3Vc_gVYtv1J@ zZq%eUxP_OX;w{@<-_ycR4clCCK)7GCB9dEqzN8{@5_6%IS;v0Kn8@sNqF+obw|fQh z%Zn^2KDL7hegSXjPFJY&sjFrMM?x`FEk%)Rh~UP) zioNT1Cu$z_m(Hm%V@v7YFayTNigX6|)n*kkKUL$gG~wqjj=Qyzs0M!KYm60blKqW( z)h)OqfTiPT#()4PWJHb)VQSa9zZbMUH=WeNAsdMBJ zb=|v-Y-w29kW43*T}}0J*7-=k^CauV$?)G633E!5>Er`&gc|H2d>IBa)j9Un$NBn1 z`w{K$Tf9lCAMn-s9_eXz{^!&_nf^@#{I4+W#*9ht0!*H zH_O@7tvn5~KSMeP5o*`QB`XZ~qGvRuB>CWHlt{@h{@P5kf^XxpJO6#98vh47Q-H)QvYW;KshOG(W}Z z<6tvrR7hi;>Dp0PYLBwxEvY_dgCOsNi=5y*^U%g-P-SxXY(d6TWz~ZSR!k-{AD3C4 z+gLk)%T1D>Zwl=93AN6w1JDI3o}PL?+PRABd+$@}TZC`5m0Oit{ChexN!DYd*Wn?p z9tEEtz&r055-qS;DyzPfX}GP<&P@XY?WK5_Ska|+&Az>UH0%s#^tkqQYkzt6&v(3=EycrVDz0oo?p zeHz~cB%MF>h(-O#aHje@STGgf2ZjWzmu^DtRuyg(@MD0~lA`0i-!v_L)QoF)Ia*Ke zUF3z^F|So1YVn^lE*q}|Fhb^STGA$~l@LkllS#*)Ao;12AXZ=6Y??Eu$4(0Ls=!~p zIGkrsp<)cc-aR3dI@p)PDnMj+xeY!NtnEa+N-h<%M)(iWd(GNdPeA>?SHL&S&N{Kn zZl~`Ln&uRV*+=kU#*q$wpI3{UAluBM8o$K2*E zw>^TF*bP?Uel2l~AE|2{B?aiUR>#+Ub$Fy@9@kOa11E6 z(l&^8J`Zdh4d#(pt%7`uTar~7DN)l4JCo6qs8FYTd@AP4J?N{&xupP~y))w|=dE_= z2c`<1(LwD9Tr#Fy;>sT1HSa2>7UA@6BX|Kn2Iy6CO;lVR#_;>&LUO2mOGRvLHFg2o z_JBV6k*&m(AFxQyaV|#Ka#W>OXheYSuLEXzeCyCTkDbQot%ON#?p^&neDD{Cu0_CK zFR644X=C8s)ptSHFTnZBYl?+ccq`^>6R!Z>;vc0avlc>}KXs1p@vnH~J?F$0^cxYP zQHW21<6egQ8&J#N!3&$Kvpyk&g_jV*(+k5<$wD;HJov*XXLnf`Zl6#0^MlwwT9`9f z#?1O{M0$D0^=&UDL6@=sAMp;L1pS_ZV)V!Qg;k$t*7-Z^{`^1@86&h$s!+T4GM3?t zfu#5auBrH|g!FdgyF1uGVQDNW1=eW+Gb#(k)}cCWT2h$LYqF@X*)r8uJK$Ec0~f0M z`_XyF9Yi3)VOiR=S)^Z)`LaQxYK4`uiVxIkt+*OxSKryLaKzcB?psggGi+xMK56lR zJ~Du|_sq3`D?b{V+=6xKRWZu%yX_x|BrUkFIqi6}K_|cwI40w~!K=hiRNVfw z^hX~3xzpwt3-Ae55&z1^NoKvoQ58wKGDy-^#BDJ%ayv_o6Oq_UD#j&XA3NNUl{!&DoJS3gmCi4t# zEk)ifx7pM<=@`>p8ya%5;&MMrF7xv%(ytEIM+0VkXMkW0f z!2L;*{v!Pc-PUqSsHch*;UNuAoYyQoo*_r;3}b|CfkvA{n`FU}A8;^pj|cwZ@FWO= zyl06h6Z{8b_>)~Ji1W*CBNp|9vZo}Ck};lfleMLi&v|}c2S=Ct)!%YlP0wuZ858i~ zjEEe8ez<2r40jnHtT8U`r9uP*=p|=xGkA;P!>a_gJIa2Yh@qK zLr${$vsfbRf1SO=Iun&_Aq5uQ zgexO%V+FO)f|^q?%Vp`(YUOr~rbM~<9pUg0tcl|=>Z~tx22Eo%Oas>xmMKjvK>T~Y zgl-uDXwO#n$3~5DC1DGI7ykGrwf2Hy`pjV8+Ldd%IvGQJ)9-&)MZjxwPUc1tW}PgV zXeZ?Nuk^1iysFjxp5j{rqy_l!QtE3GQ|RWb&5fq6gA94s9J^fq>DV7#djWrd=u>!| ziM&cd{&*}@OCp4-x#kSgH1PshlSvE8+pO4S3(~tS% z&-9gi(L2jWBx&Jsc9ui^vpW_R9UiGgZnvx8g`IXCYI zHIl{xESELt1>V?gRKQ$r7&PtUjEqc^ic(Bqq(Z^WtmW>m_~`AHceFsg%^GGsX@%BC z{{F;@Cv!NY6cMCZ{kearbj!FBe+m{I^lTg`5uX)DUw9iYOLFRi*wkSTZ>mi9(W9yfBLe-9+ z=WiB_G)!V_M*l1jSDm!W}~zab|$ zd7+2=9)J<%jfSl=T4rznPC=jwriU^j!DN3T;a2xOB&L?Ys zdjIsYPw&;!2D>vxYC42h7NAm6m%Q>@t>lWV2bV^aUs<;g{;@~=VXki=n%=)7vL)!^ zngitPQ1$o^mjCgQGi0eH{jV&0XT%#eGo9@>_9`1B-r_%BzPw@=dGjz+kCQ6yx6C6` zU<`8$397iCCz38flRM3Q@R06h+q(}Er=1UIUAV=UROA|cH~Q80i*_o0cZ_{gb_DIJ z4OBb%PEx8DbhZk1N11im*ij$5gp+@^{?1ZkdZNfXp~iAYYhrZ{tmUyZ?_2J{kdxi<44~3PI zp4yHWPE{I5{*b@FDNqc*UD9kha$s1PKOS<^0KuQ`;&SuBTa3uztlMp^0a-Ra{e76Y z5!Y22mp6s8k;B)k0H59U)K~6rDaqtC^pn`(&naV)Vky?Dx(r|az zn&`8)q4yjutg%N!6?~ix!c>iyG~E2q)3WTUop%v?tp?WI+K2ExkAmCYMk;4Co`Tz$ z{H$Xgk!`9-UYkXS2dHIxm*JcW!eKgEg!7JmoLlecF zrQYl1m}^-(Zex@W7SK}6{pw~bT+l(G$_oK3si_~>$&Zr!dz>>srw{p)H0Z_AV?Vhg zTQSURF>%$Oi+8xzEMoJf!8z|fNAh)?=tNU=@w?XSAcjPqXd5i648tQrspp zubm3IYm75cO=xBX=3FVT!Yc{Yj@m8)NgjhM!MXG=&~C1csvnNG?T}7|y!Q!EuzY9f z(c4=2F3%VP-OSMgjxFv7jIo^ojJQyi>#WhN)}8MsrH@Y#8y+v2MRv1m`B=a87rRbR zjNRPH&+xGe}}(VF5ATqs`E`zAdY|FU}6Y3e@H-kZ6t$HL8}XRyD# zVP^Ezu&#hfgj$c$Buz>HDLKOsWi;Gx*%dl0=gl&ucV(Xm&ZhSjrZC0z<|I)84f`!z~!fyno&7xq2Re*i=1Ar_SF2^59h9InXv&-Iadf3*@1V@XI3a?eO7WD z>w|lYuJ3Xtl+=d9fj9hOfYFT%e(X&Y&$MfEwp;ZJ+w&Nu$IR*1T-1uAQ;)j{;`)N- zALR>On^D5m#gcHtQ4+Syj$Rp>*l*IjV?y()6Bpg>;Cq?LT{I;BCUy#KuIcGuRX8^8 z$eI4p@B2j!Y@|7nm9^kLh`I#A{u|AHdh*k+ipogCu~F9C-QK0B9=7c_W&x2l%d-0| zN9!e>SQT5w?^7^FT5V>tP{!^sq#aF>v|k(Zup!CQs1=bcnt8?lFpwcF54J;s_rRmUIvt={=y87XaZ(W4X@ByF?sUx6+NK7yzl_$g-n^|GjMK5Xi#UL~_b$_n+ z^x~R-_EY`0aDn&d3Oq3zA{)Qs#IumcZ*PCImlD-^>52$>@_6&Ka!1CVm^vKa&#laT zV>?I4v)9kY6ZW#aL~ddpT|B`oIufAOd81z;Cv>spIPPCj1FV%dQd+k|0TGbEam>f01ecw?X6We}TL-o6`MXH9Vj@y+!2lUeP|j`@1F1RXd%| z);v^lp6P(C#EWINS3S#1SlyZa^2C%{dOp9GMq?U7@?HHa!7^mJn{4puPk$cot4hZ< zRGu@ZAeX%Q2WHg1e&pf2#Mf>}cp&oOu3PW$g{V_0uiwpoulBVbYq4Mc zy5S?qlD=%Cp*FlaByLZtT=2e~f0F1KP439`b%}XDeeuD*u^ir>0-CY1rc;TJv{AZ7 zH}mK(jt9jFo&ooq{7m7+Q{N?ZPOyEwSEDtNH*i^yQ@svut%8Wm-Ue5ReqBM!gDpHo zyO!RW=0)bcW=|`bEL^DzH6IC6@O?|zl74iwe?j{;=Mv(3GGzDXnR6WvjW1JTtY?X6 za*}rW^YI7S&&HA0!~_Of8d?c&WtXlNgwc?o<}-H6^b+@$C(N8l>37;O@blh$9elIK zGf1faJ!(43B9iX3v92fzQv}L5q5L~Wz*m1Y4<>sTSTZ{p8#xcXsy_6&HKvlY56YLc zTvT6jD_R^}SOn>lcgv{hg_+`xC#VG5Np1Xb=15ZdrEIW~9&L=?kTBE6-b3Em_9kcN ziHTyC`BX0D zd3DDyE4hN`7&)21(jqS1ZEvbTm&As9mN6u8Ui0yBwLCxM-uh;2Co<0FFJ- zq&bnSxnWYA++T6N|9p@}xzGjnM}SFAPVsnPDpxE?g6%xOsArinS0WkSnUuHwVpV54 z!s{8e1sq4Q3D--Rp*>7JvwCJz&(QnsA$TjMuj301JLy>$YFpw9ZNd;e?91=Ia`MTk zXY}|bok2YF zJJK2OEQg+~YW;Kj2WG2l9xw|QvnV_5FYge`%=aoTHglC`mFEVyvnfvEW5B0w#*J1x z<)9~igXGSb^)l<^MEtLoC+2dxDRAIj=s5q8PVcptD!;)2EomCR{t-%rBA29Udw#)4 zGj_xlkdcq9TQ!4SL2X2@$A$^XEZd=c+Rb<)VFICY zSMm^N4QXB-{h?Z^$d`SGeoK#v&axo&E)dnrHpJd6%koHO!TD8dK9sAHcgH^3 z0;;{IPrXZ<6VgQG9u*OvR@ZtZ+IQk*aN@_01X_t|netN#uNH+KWtRDue*o+T`uaWp z04M$H0tcV#h#pP>P+XgwMCp~uJHcKX0s(r39DOuC<{?R4qgMO*&*nAf*PX8@4`63R zeHR?{UbEjldIv|Gm(QA?`c@Mh++}9xfLbT&;6T3ljf`ZN^Raht4vW2dCz(VbFO$3Z zjzU_emf#(cjMV0AHrPXblu+MM>=@H4SB4_Jo9uN@7w&yE(QjyO+RsdIzwc3}>JT>FzA$tkzTUq=~1qa5=z_fbme*EG%6gNm2KWrP1*1_*NqctDo;T-Dt zO|*q~AHrz53Qv6S<`Bnnk0$Kl19mZEXEeAWQfeUU>($Sh4}sg30?bzP38dJ} zVXF(#310F>{u@>{A_kQd;F#ldo#Yhd)J|^M#8&TwoU3G&vr zlurXm*Qjp!x_-)K*t8A1+Cp<1zx>L(N{gOgbh|wFumprcB&>&Jn=TP9=i?8~>6KQb=ctgomL0wGK*_XTG=Pfh3h_74A%3>o{B9G6WBu zFK$}bBFAa8Ad;788t3mup$|YIStGQuyEdWsyX&&9MsiooLbp9_y_hscai_eN(bs)% zdGjUKYE|Av>ANDqZOn%yI3bsq{sZGP5(^qCsLqfT6EnA0tT~yyUUre+j}NCaT^-)F z99JpoyvyE5U1s8E^Wr5O>nbTGIV{VC!b4ZMjxC_#%!C<{D*UM}T7u!Vl*hZHdFgh{`uT^x-fT}p=7UWaqofDU8i7@d;Xvu{-|sGPtA$J`5E29&6vzm zgk8mnO~}o#fUE0w#4nm@tiG1vu)m@w`PEcu5N2n;aV6+M&>qh)-f`H9ez{7)L2oYn z+m&nNlUA{?>&%A-d!C9chS7fHD&$14VXIdc(H`0LaehM{&kFsn@waYf+jvb(My&5T zU>wZ<%-rF``^Un9XAMiPMSi}#Y`l-Ik@?MKM6DH{rjW%)%y*kI)8CkLsv11>_OCq6d*a+MW`u9 zCsxTXjz!1GDE%jDY;P7IKiX^X+b$rv5w}BO)&s}mF>1X7Br}4*i?>YK!ZUzZBD)Iu zB;tVQ=Cp>QakDL^K&g}>dukCTnbm-r{>4G!-^l}?DR*MEp#a~WFR^6>&i24>$5ly2 zp?UvLnj&}pU#9TSYgYkl2c6dY@Kr%LFzEVh_l%yDl(xz?e<5nh--=bXv}mv{0p6+h zdCc~G%5ZHQqDJ2?Y24(>gi{f7hHd478Zu%};%_s$b_&~p`AMvf!2n2OM%C#5<}#*c z|C`Im#q?JH(BiAwJT6#vNKHG7GdJCipr?EhbqjNwNtg-#hBKqnK!VlYU;JisP$IP{ zWsEn=h;Q+B+e&z-jf_cFWJF5Wmj%>&Q?Bgf-+kHj4pr1Jic9iSg(BtSZ(dcAd@I%} zJlNkbAELJ#gzu`nY`h^5aG2g<+m#x*ORFWJVXoF$w!+4dcYQDJ{@H>?YWa6a z{ev%&IzPwXweTi73!^ zUfXX%(4dR4Z#(#_>V5H$!fg~4J^pR0K~L^Vo*S&?cJWZ=H$Nc2;Wbj%SwQdGJQ@_q zCqjrw6PwxIMOXCQ->Etc2;1rz28P9eS$k`%ae$L^5su$0cSX?68)8>s#N(!*kLBk*@mG zKGuN~V4nf)S83^tkS|}`pbXHrMVBqPv5Wt%ze@`OD)>VC^n27t3HYNiv5sj55EpKWM0YINos5ps zR)K8CI(qT>X^42Xlvl*Q_C#Di7lgTuS6TG%vR5PB==nfWkUuXAm-#SU6ojACu$|m$ zyVrKI;nD%usVW_fo)5bUN3YBeUJNw;#i5*Y&>llq1P2AhuKRTs#?&RwV}=kcG5)ov zZBb|`*m+Y>!PWyG(GVyvZ`gI3QG80SU z*$=vyFR7m%MT2>jp%Ej|y(9VFap=`3#8&H_mYXlWPca=*H?#h^mn;64ZG1yA>VBQb zKOw>3pJ-6q2DE{CNGq#KnlaH+<~u>3Ngo}aV!vIDgvXpX5R%w)vbr+j>nEb0(}XjK za0k&V4?(?2rou%5bzRuqM;TRhCwU~J;}B0S+a-+uW)=Pc9$;ZMIx1Bl8NA==HduI- zfUy0vvwld8Pvqd9+@C`ZK zs%jRtzg@uA&se{RryoTD0~}m83tL(-v^p-d8F{3_-S!gu9z`-5{m;ko-@x(u{~K^r zd;pVz{_10x{~gSM%l_}#4hHH5*H_K=YOTZ6>q0HEPddS*l(qjnQvCCSR=qGIM?ItC=G9@Jb+MWUJ}n+} zAEjpP^v^kMIXR7@Rt=Dn9;vTyj-fh(!4@0CU;$||$+&;~K0oh;KcA7JK8CN<@{D>$ z1SFBP0j&5gR^clvUjalaoyuOj!^5#SyT=g9Jh1$j;@u zC?2d!J3t!se>(v76uExcClj--%H0sfoxrHabUu!aQqzdip2E% zXjydt0nW)swSgpzzLVtIi345fJBP;$v5EHF_k2y!0- zhNj@y&!tVk>T(c~`cc70D@tC4xoPJ~#xsv@1A8q<&Ubo34cuA^u;yK<&2RSQU5T4Y zdnL(xqwY@q(xkxni?AojT!1-$#rjp3kZ(q%YB(s2ZL0MCdo9 zGCUZljy27)RCAX-@>CN$JTY+EaIda-DEX&r1;uuN=D=Ox$9@)Ylgg5qM_Df~9eHuLthT@o|F&_gi zHI&nUq%pigYf-^>qsDzkzA)z*<2mp#oUH2zL!Qi9l+oGDJTVnbP?C~zvkA=06dT3o zEqQMmGs$TTIADLRo0<4G=auaH%*1EPs!BP#P)os7+3Uk!wk6CI_{y^xa(r>B!4d0S z#n*PGoteS4&3MOpLsR4G7UcfM;MJB{)&ZKBgP9QYbjFB5DH?%TLeS3o)PDP}6@Jv) zI}KZ~frWv_D0ZnUBy)PIgmTmGOz1hTJi#72(P`|EG|@!r;U`l19fc$``=yp$Q0JXZ(`Q33a!efs8QzxTswQA{p*b?e0z)dv4JCx=k# z$UQK6| zq;+vbOW_9gOVHbkL3N?_A-ziov;&`SP6*+TVnY1@JPOC=W(n*23xMtX7soFG!#u7% zM>30={{Mp?(X=V^C^Lqs!T+-#bi8e2Tbt);v4l`j7-3&u=RIf!1HMmHsq1uj7x!w_ zll3V5;CG!3)U7z7>QvJGa?H)6Z$wwIfx(cxImX0j{mFE#SNjM_Lf-)&MtyB%M?Na=Ng23U<}vyKq^}*)EGvgAV5==5Jfed)KPS9+ zxJH?a{b1|9WHd|Px41KP&5SoKR5hG3BjvBEwd|D>>p6kYiLCwe8ed9xB|L~nKEpW6 z4UmVsFI~U|%2y6-crxIg3BeI#2a&X?bnq}P6&5Yje^KWx*^AQyo{NQEcdD?KY6IW2 Wo3ixU=QpX99o;^4>2<@fOmKj*c_V!^)0mXJV|5^Yf8& za`AJ<%Z2#(1JHDInkPd1op4@wBHS78=HaU)w$k`i4DR8gC1$H^f;92h!@GN&3M1ex z!%VGkVO}`2i`a?daLo{P0D%vl=mZb(@%9Z+5783a$Eyx}-y4<}gYSb7y|l!1_6Wl5 zOt5f0KLQ@EB8Qa4A(0AjRkR#RMM+5oc?_?&H75>+c7(k8S z;;L?eG5CuX@T4W?P9*xP%gYA`2g?O3%J~u8zZA_5uCf z{fK@6?tcFP{O{@ivItO@iOK&vejlH|Ndyq}g8AeKWatBS$@f!Fi%_9Fm% z0~{;<>$stw9+u$e>fsGc1X!HZg&XSYsi4p*DzXZ4sD18COw=)cxWGL-7-IfJoQogM z!$tic^vViKu6Pwil&p)IqN=PSS_voXj8{~aRZzjHsN$5A&^U$P3IVVg`UVi4d~x_a zY=Ac9JOE5MWkr;eB2r0K!9`73R!LP=QPxRC0S_ovSq<;(?5gbKivGim8NmZc8cyE- z%9W}r5`$9O`_)6DFv=L8}`?`t2 z_dG`3aPQgH!-eP$CrN73pd!Y#A8-fSU(3glO_!9v0?KuZv zh`&Gp76EnrH3$g4PsY;8$KM+tfW;HA9wB(Z&j3U0Pn^+n)+1p30zCGRc=)>ggU49 zx<2q>gC_*+%YszcGui&QfwxnDyT3=sKXWMLpSgXVZ_Vz{?K!m-u(>D>VE_JLq^xbDc~^1KR+Lf zJ=X;6h1^H>7cNU2-WRXu`AQUU#_&50~Fv2a3uT>@4%cfz#TDgFIAxcy}}g$3&53>75A+8uTXxzfIRzP zs%m>+Xy5~-rn2t_fAI())A9a|Y`-}D%kn?tfRuY-wJ#C?z9*z55r|ZPI6x4ti~>Fs zfscPc0N26c0|NH!hbOxGxddp5nd)2FnpvFQEBgC2SN)Vn08mas|7s&F@fZL4=IsIB zFSF`SxZgn?;1q;+5&LV<4S=QwWrb2!S3s&ODEz5Nzi9{fxe|k&2zVVgAW8jcmG-mRUV{PG z(*s%~6dI1O_3(A^3l5O}gC6JZ{&|0EC2&o>B&kAGzHcLKs}&))$xxf1+* z;J>r4r$62ePW1chX)hQ5N0cr=to)0T{uSZh)ZqVjsQ*XpqtLEESy5Dyb;YSE%A#DA zlw_S%)zGqNyqb%Pf{GJT%@y}YJ^w$@{{JY?|E|vdc9TEy{KszOf8|XIC^-cqzHR~k zjlzpRQ2cMm-{X7g+vn$BHdB9wfF0W2*T1)hz{B60OS~_@4guIYq9<3f=)j;dLyV49 z2Yb*gIFb+<2?x_VYHM~P;C2j#_85ISMm{LCuv9RH0fQ2N z>L)rvt@!BU5sp}G_EMR69Z9&e4!e6?h~8ajrDHqw0;ofvO^4)Y1v%o_u8k!{mOCft zaQ8>n=wkcfc1Pn`K@bBdBaU51CxJR1t?eu;N=J)_#OqkIhzYP$;~`*CRrH920KHMO zbF%E|4HVl7ZNP7uj2wq0BAMh!=0gE2!hm-GIOxE zL~Rkv0%oU=XNANo3xN6bF;MP)Z7d@82xcuY==PfNgYNU9Y?7Ez#PbQ zWj^xU72vesfIA`~P%Cb60X|LgNgY17V>I2>JV%`bP<14Yi6W>;_G}i5q((xajECtv zf#t6w+h~zwD!pikF|=I}(;T7?QU(pB@CUi_riZ^TI*xzM1di4k{c~5AG+MfNYB;IoP3{CoZspiFie}iO2_&E zG!^yGQIpH~`LMVJm>ocAPP_!wMj6n(kpGat%4MvEc+D=(uM@ww0GH#4L4lzR5UM8h zDl3<%d5<}}!EdrEEaa1rkE{r;ZqaT%7VYL~=x2H=K zS=}LaD0pjuKhqReda?s&wNIfdo1Vrhh>b8p!;+dsc_VbqwLuJseXeSy0Vn7apCW~b z98A`MvKs-c!i2TT9Wh9QkRnRy)D3g104pJQB+s5=PG-{^qz$o<^g~@JGRZ0a*gI%` zHr@Rt=B##6Ly@J_$kk_R;;n_Z;lGEa$&T0rb6srO$u7~nlc#^Om|rK0@2QVdUS|kL zI%#blbMl4ZT_GFVzB#67tYWO$y!6a~GVDz|2zF&8x_v}iMkFX*@&QILmXn#ed+LY` zf?n)5Ph7Xe1k5YVoBbc6)0=O=!D-R^x(j>Qj_8zOmcE+L%ONDqqpc4W-=|Q(Z3RO? zhp3VMKhV}MxYMK67;o=S=$WrmMF5YD5pTO#B>lq}#orz&v!|nPClHQcb~N)f2vtbh z6e(m*U)rMDau!)e)!8?AzJ)fH0_vdtO7kyLD-_}@@6YqN8Fa+Xjpf4LyqL8Ptda>f z<$m#0?*N>>+(>1qz`j|6lVeZSN{!d}Dp7DDYtz`mlQGaVn<|q689O)gG{7(1zne31 zcc_ERu}LygEf(#DdFWs{uw(ldQtG`wB?&| z&UUmCcz-q?$jrv3*eSb@R%y6vgh)PJ$dFVCf*6$Y5XOPt=RnMn&bqCpTe=J31rhDf zq;wJkoq4Z@N$yD)R7L`|Bch^XaOu1=Z;IdoR_UGXN*#A(;@($;RuBwC--&S4)=@hSxRDf0 zDh^7Y_{EUil>4SOk}C?JGe2*sjZFXpsUCyA@DSd8u|trwF(l=R*bp%G?AP8iDXfgO z6I}TPaMdCqvvZRng^nD@!JgB+X<-_tSS3led+dsv@l`^u@qw}0YCCGYG1E7=buLrU z>WK>`$PQSK;y%bpzPsd$M$P`30gx`)8YYgY&NtxL9l3L!El2lMI&}b6sccsfvQ8Cx zO(`X4@^UMM*tg-{Jn^kO%@VSQq3tAJ0{B%71K65z>fx+a%yeE|Dc4X}31Xe-OqPxU znC)T)!Jg3M1tPvn;n)B*MepQS!>5k=d#f#PzqF+s)90Xs6J$AEDHFO z@H?106Cz&04yMjqFmA!r&C;QSe>~t!EHQj>w3l^YpqRB&+nEmrfl~x1)}}(v{ZRKr z;}mw{w2}VM9LAjJT|Q&v85=5nOh)P(KNv)CyW4BwpM=I2I6K{&$?ByKy%Ucx1xu=@ zTD91n%B3gENWrcWbWzUzlh5P2Y63QI3>BO)1(;{zasfkHKa}GG9ab8PNVsHwUB1Sot#$ZfhGP}H@7K=Xr zMwe9-sy~1`$`%#PZ);(*Ui?!2ET?B^2Se{_BuPfF`Jh0lo%;2-=LVg`!JEwb*4(r< zeGsl0Er}?VX}#7Z-F@w33q!yg+B4wU18UtTok>q}WR2{~vfFTJOq+K*VE6VAnzkL~Nn;dF8hm8QZ*>e(+hozl z$IZ!R{jBLjLjS~#R|~vHyktL_n2Ep`)M$DItRtiV5C{gHikYR4;>`nbu!aeGa)fH4ekL?6@~I$h9w`vRr$OWp6KO(F<_X zm`hkkSYu&GeydCl3P;A<7Fx^T=!rPt`K~nKk3e=#zM#kkkL$4RD))Wy>s|{)sp-`! z*`EluCXp25o+Q!dcEpq!6jn`m_C;S)_sQ6;0)G8txf}P-r)@X)WAariYb&Y{SeS`rl7v?R9z<4%hmYxyN?%Y zGUn;@q2`tAr80>7WL{U^4zeWJ%xgs;XqoOo3iK-lD4-^EO17Hat>sSo^*F<;9jq^1 zy3JUUWkHv)+BGBngXTr{MwuS7Lx+5_Lz@peJ+NqIl`!RIhulxn%e02+w?j#8t}78T z(c782pnNxs`M1fh=g{sE!vyDGbxJib@Ch;_; z@QcM_*^D&z2bK}ETmWG;q@q#ix(pL{@l1Lg^VAQR6^jT(`CAZwX_`=7ST9jgyicoB z5TiB)>~1Wk(FpKz;Y(9a&HEW7WvH%cz%Fv8Av#m{MoQf^+DS812aEvUfVbAXWL^bf zmw7dhA=8x~xIOnxGwp!wm@{(b(8^`(mONQ?12y>a`Q>JWoj3(z)e@g-r*E#E zxg_M7*#m>3+*gM-I4uP!(XvONngbWL`FJ%u(F86XZ449ywnBThN5-cVaq{VRyc$)c zpOGmD=5+D#u80E9*rirz%UKB#(Fj4c!gnb%Nl&b#(N0G!VKeZlcCkn)g&J!tLZ)~TN*RN`<}RSF7hR>a0Fl@idropz7FHHTqRW}R3exi-(JLYzQN=O&4HI$)~ z1x+o-oS14y4Cs&@A>)=4CyepSLdG?bexWpA=V1+H151LFIdtXnZj7k?U_V=l{m$7l z`cfk9Yctfa(6p2oS(jNvXW91h^LSLf^rrxsVVT&_>!r8C1h`ljc*8@NDWaW=itK)G z6X3*P;=S92H$7q;(}kB1!a?RFs*z}nGsD793Yr}qRQ4>fOp=0A| z^vfmMM$t{Aj)xREj*@C;1s?Q-Qgn`NEL2$`zkCdUik3s~5S^d-zooP78P44DZ=ergU03Ge~$*5z5KX0{H=!hbyYF_h8$5L<_ zLXxHVkY$C+$Mr_f(89;*wz|69m-6UtMw--gY6oA_EsiGcB9(I7>(~r7q7kBgG{YMO zins2$-_;H-dzN%JR%;_cd)$DIakS;8NAn>aC?V=do^}qb>s9Sl*Kz8((n&p2pN$J& zwcZ_kGVN-UPXOJfT;xw|zkedX)758m_yV!T@KhgsoVoQI*q0!{PXQORmSn#Au4Vkb zA({2yHA`=2ZF(+ah+Oeo^HycAm*=ktk2R{GP_>k6j7Oi#TY1bm)JXpsS?n=2!Ni0z z8$faGkk%SK5F3ml=85Hm((_`pa2NEzZn5J~bZpS_HQI;{nZnZ>5%luL?wXq)JKf%;r8sN~rEpy=W5MnM2rRai&YA0iI<0f=HhS z&kk{5)Feny>?hH}DiM~07qsqR4fLpaCOYr#pL?__I`^Qe@fm-wTW|T=sZ{U*1+2bC z*g%x1gkRy(5g8HjloXKkRU@UzK{1h2f`cy`*961rtKBYr@$5Wsr)X?I&mu=x^Jyl8 z+#%o2Rxv-1}XTRA7Z1VKg>SCwh@^SnupybJGB6(04mZD4y=9ivh zSvTl4Zqm3(Z&KT_IPw)EC45J*D>+K{}rGNm*T3h$7# zi7lSsnd)3@yh0Hn*@bPE*Is7JpK%xIr^d@<&mj1%bkcEgkWMwEuBGOv?;z!il6RI4 zcab&ooHm~>QxBbi_74^gO~IBUwMWMux+XRR@5C<)9};l5Bx4zU+QW9!Ka?#;8OzRm zjp=JGJCpGUP5n{y*ZC%iI%!HD!fZ*(Q0Q`*=q>uTES&^reMqDjVxX|N{Nsg-BmHCM z)N_QFL-tCe2gjK!A<3~+M=)#BmODHQYN`y?f_OoW1BL#0cK~xux>!NFq8G$HGUzM{ zGQ*kqoM23=eWfs1g(~0HCtq$FI@!t6AoU~C|B?lFB`+lmB7#x-3d`qz&L)`(@Vt1Z zU~Zhl_?TTsdn=z(MN@njCXHP$G>n1{UoN@l#&)gmZk;*7mY(}k4R|DlgLkWCCLO$ii>oV#43S6Ryy$_3A~bF$a1@y(v6|um14~+A|-Zo zhch{{6SX~Kq8cRmWsMG2)Cr8Inwwu`0eOKrqEhgf%HlZqZ2h;$bN6);Y!Jna1^dey0A*7%b2f$lIY3z?6st(PU?s?0Qavb^8u_8JprTN_Aq{EmXI@eN>~iz98GqoQ z)BKf0WTXtli0FO}O4BQGlx+zw30f*qSHf6Gf5^$3&W@~;CKaQ!x}PQaP_~LJ1?-W@ z&%daPBE*0m5Lvcgus79D6Vog_dlFpRZf->iwt%|ZZnGND%Yhh`pjyVgVi>OEx}-_1 zb*=C+xy-AE!lEzGT5Nz8K6Dbr;p ziIzD+CFk>X851t1z_inW_P2UJq`wglNV`cZCaSChZMc>}%vBnza~g?32g@iLCLyHz z4T2yGT#ch_=3P#kS~ZZbRd^E!?BGM_yVhp~LR7{IUGQuW=?C<;ll}KhnEC@ zrUeYppDT;;tJ8@o>=*@epsPBS6croYmEE-YP@Lkx0bSRVJ!_!8eNQXxL#&5IL)qh@ z!XmwhfhiZE;~!sseq$2YLhmgt`7uxYBsVJlA~nMmmul}56XeBY-7yLr*d>|i@bxgr znV=H+b@)Wp&ryKruyy7k^<}+%a{Uuc)VKkXHFxT+ioTV*%I(tEM?92o({;SrTX?0M zTodP9hG`sVwbLVpsPRdvKZY@Su^h*R&6&zv=T8M%pvs;pQM()}YhtHT;-*^F2s`sZ zFA#8K${Vk1amwB8;Bka=%=|zA=48BcmG}?JW|FYgfn%K+Z0;Fr&saLuFdRLzN`vd% zf{D`FH7a}SZUUDgE$Gt~1MQ`vVc!5|PbSq!i}scJOqhm#p-;8Q>hBJDSZRo*?-^lV z?^NrlOrjgHgYK=&DYrlreXL@)mJIuL4hozzz$k5V2NgAf`fL1Acd+1tPNf3uBMh@7(XiLk7g>F!4#O9qOl_DY^!Iralfie&;>t z%+0O)ouZwuynC=-#{HhJ(a+-bG4a6pqlI;XBFsp-DvV8B_uDfxiAPv#M4i-E>NlYu z_=P8xK=!Lgc8YcOd#aY!m$*OhEM=-R0glWzufS3XQLY&`D#U;@TCGc_`qz>~^jqwe z`ZC`>NKcYvyVxOCPckpT%USO8T0vP%%>2|v9`*s8b{f_YIKm4nQbHJJr_P~)jLf3gF^7b1l>65!_HlzW(yP$pH)NREdIN@9E3hn0U@aMbG#o9!7IXn5_NX zNg$QcPU=~sda;NSr9&nF(SEhMym^FqKQ+b(V3*4ji~$2Ol637)J-^2e19JML1XP%V z{)aXKjW`3@1JTB;UWo2{j%lwbkB4qMmy_!zFu1Q*1Y6Hh&5n!w67*{>! zqYT6Aem|D{?wnWm6U}*T(XiazS3O?8SYa;%#V}%N%*6=Nk1^1F`d0J0a`4Hu^Kb*<%m0Q7bc+3qKO2h zMO)F$=pf?Zk=(c}$~V_9<>{(VzE|zutwynH1UXeV{(5!4#NfotxhO|4l%pIn5REeE zr$Wf_P%Wj~hyiY@5H$w4phxsRXWcFUZh<(;K23pS&t<+Zv=ldP`pB{JbcQB%B1*Qt_0b_Ivqy{NT-B^o zC$p3x%!mO|DEHT(L-{jy7co~m3ouu6>FKSzE~o8f#!zJE5reB6jQkYhW>57_U2=ly zXOhpxtH7?|{7bDb=jV7Wb)zSBIeTdyy5A zIw#-x47sVf0YR?_rnQ-{@V&SkgUGJag$PMRl7QrHmT-TAZ{FrCkXmdue zXo^{)$M$2k{Mzpw)e#OVk9k!lI-W23{@6}8Y0`qR1GfS{ufU*C8Z%rhgrjziUyS4l zS0~B|(AuOSqc?c;Z#bg_xG}KY%z+y=RdXY^ntrZ@hi^{By;x|RDmQa@==E`}#7b0; z<5M)CZQe_bjP#JbOox?J7Xp)XpX;_n+S1%rcw-_Jmd?JJ;!e%Jw~*_%`?A;4>}>l3 zlQ%gLcNc$|9NIz3W|X1bBukm~vlwAeotS*Ab_hndG4TsoKr}3b!a6WTWu;*+!Z8Dt zl43$dF!`;u;A^|mn(ykizL$$TQk^u5js4$aG!N-2uUR-#Ki)q8xqNphX#-H^1 zTSOilp9#GZFdcAVjkDy4WrI@eURj*5U%q`D zo!}aHX++|Mg0>ps2VHktVPuT}3x+FSPivsCNQmm*pbhJBW&Ht7p^H5hGxGlU1I_j4 zha10C&OH|QsxQdJ`89>j{mgm&w8G`Zne)vTKbUiT49(HCFDUdosO0$r-d|5Hd!F$4 zZ7Xv!pEejsbs{QLbUKNQJs?qaA}2er!*d_dd9I5Ejz2B*Sv%cvDNlUSurH~=q8eWZv;^L2x_qXyvrIxCYn9G>jR$$8z%H+?xmn?rrz%ckgje^_J$2nA z6uI30O}xHRBvgytG_K z3s3b-KPWCn{pCRGzId8%qWs3S;s=;+QQ6 zaD8g0P5EJ9d8p2V*fRNCzpqRFopRy8*xWxBtZXkRw? zpkDe-w)n~nZmLhfCA_ztTU8X`Q*{dt!H7b|v5r=EcFA@nC&)UM$q#Bb}hY zW!UY~BPi-8-ik9qYjY$4{T58h=$k(am9+ybYY#L$J%Z(S;>LaxjEXSV3+s=QfBjfm z3EegIn|gJ6IMIydfL1JaA@cC~zR(jp)%CW9U9Jfz7McvH-2aj}pn7Ww@M@fH1A{q4 zlpzhLpX3PTw4gChBXz$arQu9V{y>yD(^VMxcqi1_f1X&=SlO;Wl=tP{ZRL%X=+jS& z7JN41Ll<7uDZ54aZ!noQd_8fzrbH#s@cvMu5oGCoA#3XwJ#$LH$147UVF_i&APNh1BX-8_^Xmzl!~eE`IWue}fpajR>4>XngR?=6>NJ?^KxHGkUntVJkiyyJ0pG zeY|H!xa}KJ-RS%na0Or#NhR^bi%=LO!vw6fVO45a+I)Knxm3{nu&1SX_xlE|@VxKu zPn_HRe4r`NulUfN#?<8(yKN33GhCiIeGLx-<~sT!j~(!BN|k!Q6a9K!a=6CO_>)!B z{R~_deJefvIS|?`Rs5b1HhvYGH7u_C zHAeROKK!C?x;cJjrw!V%cqrES!&%un!wuWSN~Z8g z9yy5x1Fg;nn5a4igkiU`gu9WNTrRK;jL)o01jkNBfAo3p;YMlr`AaHdb@_V! z#=Ws?QFW>o4Zl)-yp|t+IngVyW@`*%^}2Jp!^?KQ6@T~gfw2?6I(yj+PDZ@5nd|Q! zHAu@4(7~wLut2Rm+{}fd7ZW-ivvsOjLWJRm5LO#qf{5Y!KJrX;+}x68|F*#;e{S;$N8ja+ zt=B!mr0|ufvv+2TRxYnq%e~R~^<~^>!@a4-tz*3}V!7gW-sWQw*H3Q_pYM#V-&s}W zJDXiPC;P7VtdDt%Y7XEC27DF_&M_GWNL=oaQs7-WrX)9!=s_T?ptpJAId35BRWMyl z>ru;3B1X&0CKPR8H>9jE;GL4?* zcvaT z4|gvt9Zs{jzchM=pR~~_X;_9^c9hI1GqjK!=5wW+ftXuc@j<^9d2?8xN?pJXJV*G6 zR?j?Zb(dclFj|Aeg;-Hg5=o|&8wz{vd&BA3kXPRa$@7+T#}}^nox9wtp-OoiGT_4d zaN8jDP(;W(QsC>ICG<_4L#Cfh)j*PkZLxX2r`?GwW7Ut>Opcx9$a$bJr{VC_b^XrL z6*cQ}BaIM@ej;RpTL%+T$>Ip+5s&outLibC?xx95KCvtMm?G%G>}BQ{oomZ|(gS*| zWIB5jZQyK$TQo*H53hUQ10o8iF*~xS;xBwM8Me11mXxG*rxZDMII<&B@KHDU15wso z@vfeU)i|d|HUWvQ{)PqjGhvOCy7KJ07^oUm+IbXCk3b}+(Rb^RYnX-#KQT&}BN2D> zEf!Pz>x=4@`pt9iqiche6Hz>Aa2vX*f_O-1r_o6F)Bzf&=`_hVa>#}+TmPW z^SQ`jY@>GW>28Mp?PG#I!%o}hpDn%izCaw@*bSZWpU(d@^UB4x=BhM~r?6mLaJ>5U z)76}TF14TqX=NNwinSr#I1}I|g!WOJKjzEJdqI_*%k~V$ z>BD1jR7#3w3Zp1DmbMijgW-|{wv0vYEk_5$59m^{GOx_bGhdqWYuHi*!)Do;^2>yC zpCwB8y81WY3wf5ZQBpZ^!@NJ{C)*=+Nm*N0dli;(k1JP3Bi?5dY`j!!JgOSH3@>l& z)LiPwioTgBcr!=ETXdL{X*0}QwPMUx{>Y-jY3Sw(dUbWtu`?h&K@B3_`RCU<)Y=NXyatZ$7T994%y4LmOhuedC zjjC4~jJEO!c+Ms@3Rr;@jN58UwyloX>OAmdVa9Q))64GXQs4HtQ2y9>WsqcCzd?Gm zRp`r760an;d)S+bj3Y@s9PVyN`xk1@4(gz5X37OPN_obT6{F^%?r#e)Tsbl)fHU~e zWs9?Q*ZJk2U(Mhg4qEc)_njpM{iOeNKx=NnO&0Cd)8GHAA>zWxmhYc)Jvjq!9lG7K z^m24LG2(^1g;2XDlbyEiVQk$3aVBFI+L!}Q=b#-81h^7FDd&(c$ zJY3>2N*`Kh^tx=0^YhZ-OLIv#Z#{|VDj%FpHXCtTC4Qm zV#43Wg=aHO3l&Qg@Qp^M+KH}FR>9a9_7*DU#I#k+yiQ1Lsy-Y4V;(IC@TRc=$0sc@ zl0*hIGi-41ZC2buR>}sK=kYN}$ItCYUyBNQXWa4{zOlIFz7HRvjE_8Ld-R!SZl%So zEq+A$yXin)77hK@@yLO%=aAV9>zrQiHS4T5jU;=I-_MC#Y>(l7xu9?Q)Sd5U+tdTb z3f9+46An)amsaMhO3F8slzL9P9?W_0eoW9ev0nYQhM^(b`hvYf2AR$oX<*5HWhB5o=THM2(n)ecx2A)omUwWc5(2K4cEt+g{0y$#jkFDe&00pAS)}| zj7>VW79qgy48ulnbKg6rXB~>cAjkFc43CtrqXRr-?bP3>dvqLnU4>rhsXwOfv17G* z*H`QPrKMT4SM}D*&<)?6Ia9;$!$y)r_UGPN_NLq1Zy6ebZAqs5bbQ@3E1Tcb7jAHE zJKRuyd!r}$9pSa#!(N4~C@6`^I;JZL#A@IHZu6<)5kI4CeGn!o>Bwl683>Ec6tafW zqJ;+JOClpPcxhLU7(5&GA!zm8+Vnb+Z?$*`C@Qrs>H`gz1g%o{Uqw0HBoRl<@$?4 ze$)SM;fR-T?Dq6|?`3pZ<6LcqN8X9ryO+OqTi&`gD}PXP&Gw4V>Pz*<__eXOFISK6 zHdW=6?9Su`hCdyCZOd7Qb=hc_<4KLHu|aieaJXZ?+OSy{4SSyDW3sBNuD-JT2>P`^ zw!U(^synqqSnv9+UsR+`BhIuhW!7+d{cC&3JjZkL{#!@SOQZ(9HDceJ%#z}Sx#Qs`GaoyiS8TEg z_l3Xz^htg_-Tsx6>zk)nPMmn?YIb?CL^gOSKTV7G%
ehqWk3$3AE;ijQe-+s*J zH9gRJRhiD@KG5PBtepGPH)!s~nS8ASZl5S)mt_}6O#D|$L@qq0-b6a#s~W@KrWYTw zVe-lg`otJ*W*_>!xk2xCM)_Q&z@>rE100X%A1vmm9-qoG+wFDu^|N^5;iso6<6*t8 z2G2aX6nMYTzRK0|rbVSyZNQB5LD50Yjr5>AdAVB^mWns0&6>QHICkwP?p-vu`IuUdAG>H&;NO)uaBb}T*sHMh4=rvDcRbh2z5GJn?}m20xVf!S@4NYBEV$1li8CR` zw|4Y{m2Mt0Az%DguueLmIKGC2qDNeniP83zwP7&fa_u0a3*9cPmW1ER-^p02=o82m zITRaM-&XZ{BBFb=;`nf5@Whp4DzQz`YOV=|uI(flUAT6f(dvcBl#%qybCs87@>G9) zzj{i2a`ZHMX)8Z;P&z5cxXuXDAYn)|q;JKE)A3a#xW+Xl(%TR$%xU>wAZ6U_x?of5 zc#(K9hAJ?;@kNgchwq~f%e(6rG(tVE zls(HETRhVk^x|7xu<`iAh|6mM6OH)S9Bo#&`Q;2d$-YV z*~oKir)#$yTJsX?vH5RhBvp$T*20MsN9senxVlu6hc~V) zhC4LX+?%Bh%4u#rKbohwQDh>oIrDAlx~ay~-N)tZxxuf>Z#`L?*j?|vGX8jE_wC2= zFEkiNT~$=fkcc;73yC7AcsSn;lhboKDL?X5#b}T@-=K4-Bl~Q^W;lwLqpHEg@^GR`4e*EMyd5h z!@Wv<1nACTZqYtXIaJzFM$Rk~M zD-$!PZCf`J*)Qxg^yMomeD!#Z=1Pxd2Xl!DnUtppbd*We#DyWxo$y?cX0j;6oDh#> zzDLJtMi=w8=OA!E1V`8tv9&4EkO5FRm9=FKR&GsB_x%zoH%z$w?$PZGpQm3J-#Xr2 zyfn<#7cwEQ6+BR#A7O!~&IDh49oP7?b$C(k>CBz1l`&15N1u8FHT=|Z$QD+YSiVy$ zp5)?tOUnY#n*!;bK|HxFw`QF*GH|ah2(H8OLlNKZw{uvU9W_?w<*&5soP2XvkmZfD zLFnD+q$kJA17`1f4`^4}Rb2>LSvvP%X5_=w>L!Wsb?Ld4pNWHg69KQL*}5L$+5ST4GOfIn;pCKF7W9sF5^?i_tRQJg=1x0q-$kt#J~nQl7&B%>wiUFi&5rOSiYeDQLXzQOqfl)W+e z$E$;r7MeciMEV^EEDZdXGw-o@G_}Om&O1c#h+8H(9!qZlG4*O3HZ~0oJ}i!#PD^E% zZ<-!d{5esz6|tV`Q?KN3c};n7Vk^eYZ?R$iv-RnS>D{xN4Tmo&HcsE)4SAt@Z*wy6 z=)L7@t)%6o@L<2ibB*6K))r^J{v`B`8DH8xq;TW)`+El-XJ59wS#+E7!fSVf&^sC; zy|y*GHv2+_${6zfL&TZJ6%a{V~S17XVsBT zXOr+CZA9hYjs#IqRI+QU-FpVJ>dTGmQeS0?#9`fP∨+ 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%0DSI=mk35<9@#fu!-aOnEPa;S;J=w2j#5%ClX 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
^x->rXGhm2+HFE`h{ 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%0Df}fDNjcvcE|b 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%0ATNZr5Bwo?=ORRXy-o68VaJfuy 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¥WZu*%@%i3IvADS? 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≪⃒ns)w?5N{|&Z5%wL*orj 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 - - - - - - - - - - - - - - -# The Crawler Smart Robot -*** -Oct 2018 – Dec 2018 - -## Overview: - This is a Robot that seeing and recognizes objects based on color and process it in the environment -It detects and Grabs the selected colored object -using i2c communication between Arduino and Raspberry pi using Brick Pi 3 Extension and Dexter OS - -
- -
- -![Color Detection Robo](images/1.png) - -
-
- -## Introduction -Crawler is a Controlled Robot it can be used for several purposes like diffusing bombs, transporting heavy loads. -This is a machine which can be used by people who are indolent - -## Working Principle -It finds and detects objects by color and moves to that location and grips the object. The exterior structure is -strong and can resist more physical damage. - -
-
- -## Technical Overview - -![Technical Block Diagram](images/connecction.jpg) - -### Input -Pixy is used to receive all the information about the objects and live video stream to Arduino and Arduino is Pre-Programmed to send the X ,Y Coordinates and length and width length and signature index color of the recognized object. And this data is sent to raspberry pi using communication protocol between raspberry pi and Arduino This is an integration between Arduino and Raspberry Pi used together due to lack of proper libraries in Raspberry Pi - -### Output - -Brick pi is integrated with Raspberry Pi and all the motor work through the brick pi and it’s python libraries programmed in raspberry pi - -
- -
- - - - - - - - - -# Bluetooth Controlled Robo Car -*** -2018 - -Project description: Using an android app car can be controlled which instructs the bot the directions to move -Car consists of a Bluetooth Module for Arduino for communication and Arduino is the controller of the bot -500 RPM motors using a 12 V Battery and LED's for better look check out full description in my website -
- -
- - - - - - - -# DTMF Controlled Robo car -*** -Sep 2018 – Nov 2018 - -Project description This robot is controlled using DTMF (Dual Tone Multiple Frequency). With the help of a mobile phone, you can control the motion of the robot. The heart of the robot is an Arduino Mega board. - -It can be controlled from anywhere in the world just by a phone call then use the dial-pad to control the bot movement - - - - diff --git a/src/components/ContactMe.jsx b/src/components/ContactMe.jsx deleted file mode 100644 index afca67a9..00000000 --- a/src/components/ContactMe.jsx +++ /dev/null @@ -1,245 +0,0 @@ -import React, {useState} from "react"; -import styled from "@emotion/styled"; -import {ANON_MAILING_URL, MAILING_URL} from "../constant"; - -const Input = styled.input` - padding: 10px; - background: inherit; - color: inherit; - box-shadow: none; - border: 1px solid; - border-radius: 10px 10px 0 0; - transition: background-color 0.5s ease-in-out; - - &:focus { - outline: none; - box-shadow: 1px 1px 1px black; - background-color: #1b1b1b; - } - - width: 100%; - margin-right: 20vw; - @media only screen and (max-width: 600px) { - //margin-right: 2vw; - margin-right: 0; - margin-top: 2vw; - width: 100%; - } -`; -const Row = styled.div` - display: flex; - flex-direction: row; - justify-content: flex-start; - align-items: center; - margin-top: 20px; - @media only screen and (max-width: 600px) { - flex-direction: column; - - } -`; -const TextArea = styled.textarea` - color: inherit; - resize: none; - width: calc(100% - 20vw); - background-color: inherit; - box-shadow: none; - border: 1px solid; - border-radius: 10px 10px 0 0; - padding: 10px; - - &:focus { - outline: none; - box-shadow: 1px 1px 1px black; - background-color: #1b1b1b; - } - - @media only screen and (max-width: 600px) { - width: 100%; - } -`; - -const AnonTextArea = styled(TextArea)` - font-style: italic; - box-shadow: inset 0 0 17px 0 #2271f3; - - :focus, :hover, :active { - box-shadow: inset 0 0 17px 0 #2271f3; - } -` -const Button = styled.button` - box-shadow: none; - background-color: inherit; - color: inherit; - border-radius: 4px; - padding: 5px; - border: 1px solid; - text-align: center; - cursor: pointer; - - &:focus, :hover { - outline: none; - background-color: #1b1b1b; - box-shadow: inset 0 0 4px 5px black; - } - - &:disabled { - background-color: #1b1b1b; - color: #545454; - box-shadow: none; - outline: none; - cursor: not-allowed; - } -`; - -const AnonButton = styled(Button)` - font-style: italic; - color: #3B82F6; -` -const Span = styled.span` - display: ${p => p.show !== 0 ? "inline-block" : "none"}; - margin-left: 30px; -`; - -const ContactMe = () => { - const [form, setForm] = useState({name: "", email: "", content: ""}); - const [anonForm, setAnonForm] = useState({anonContent: ""}); - const [valid, setValid] = useState(false); - const [show, setShow] = useState(0); - const [anonShow, setAnonShow] = useState(0); - - /** - * Handles form input changes and updates form state accordingly. - * @param {Event} change - The event object representing the form input change. - * @param {string} k - The key of the form field being updated. - */ - const handleForm = (change, k) => { - let updatedForm = {...form}; - - updatedForm[k] = change.target.value; - - setForm({...form, ...updatedForm}); - - if (updatedForm.name.length > 2 && - updatedForm.email.match("^((?!\\.)[\\w-_.]*[^.])(@\\w+)(\\.\\w+(\\.\\w+)?[^.\\W])$") && - updatedForm.content.length > 0) { - setValid(true); - } else { - setValid(false); - } - }; - - const handleAnonForm = (change, k) => { - const updatedAnonForm = {...anonForm}; - updatedAnonForm[k] = change.target.value; - setAnonForm({...anonForm, ...updatedAnonForm}); - console.log(updatedAnonForm); - } - const submitForm = async () => { - setForm({name: "", email: "", content: ""}); - setValid(false); - let userData; - try { - userData = await (await fetch("https://api.db-ip.com/v2/free/self")).json(); - } catch (e) { - userData = null; - } - const moreData = {...form, userData}; - fetch(MAILING_URL, { - body: JSON.stringify(moreData), - method: "POST", - headers: { - "Content-Type": "application/json", - "Accept": "application/json" - } - }).then((d) => { - if (d.ok) { - setShow(1); - setTimeout(() => setShow(0), 10000); - } else { - setShow(-1); - } - }).catch((_) => { - setShow(-1); - }); - - }; - - const submitAnonForm = async () => { - setAnonForm({anonContent: ""}); - let metaData; - try { - metaData = await (await fetch("https://api.db-ip.com/v2/free/self")).json(); - } catch (e) { - metaData = null; - } - const enrichedForm = { - anon_content: anonForm.anonContent, - meta_data: metaData - }; - fetch(ANON_MAILING_URL, { - body: JSON.stringify(enrichedForm), - method: "POST", - headers: { - "Content-Type": "application/json", - "Accept": "application/json" - } - }).then((d) => { - if (d.ok) { - setAnonShow(1); - setTimeout(() => setAnonShow(0), 10000); - } else { - setAnonShow(-1); - } - }).catch((_) => { - setAnonShow(-1); - }); - }; - - - return ( - <> - - handleForm(c, "name")} name="name" - placeholder="Name" - type="text"/> - - handleForm(c, "email")} name="email" - placeholder="Email" - type="text"/> - - - - -