diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 1d36f46..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: Deploy to GitHub Pages -on: - push: - branches: [main] - paths: - [ - website/**, - ".github/workflows/*", - "idl/**", - "libraries/sbv2-lite/src/**", - "libraries/sbv2-utils/src/**", - "libraries/ts/src/**", - "cli/src/**", - ] - -jobs: - deploy: - name: Deploy to GitHub Pages - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: 16.x - cache: yarn - cache-dependency-path: "yarn.lock" - - name: Setup npmrc - run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_AUTH_TOKEN}}" > .npmrc - - name: Setup yarnrc - run: echo "registry \"https://registry.npmjs.org\"" > .yarnrc - - name: Build website - run: | - yarn install --frozen-lockfile - yarn workspaces run build - yarn docs:build - # Popular action to deploy to GitHub Pages: - # Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - # Build output to publish to the `gh-pages` branch: - publish_dir: ./website/public - # Assign commit authorship to the official GH-Actions bot for deploys to `gh-pages` branch: - # https://github.com/actions/checkout/issues/13#issuecomment-724415212 - # The GH actions bot is used by default if you didn't specify the two fields. - # You can swap them out with your own user credentials. - user_name: github-actions[bot] - user_email: 41898282+github-actions[bot]@users.noreply.github.com diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml deleted file mode 100644 index 0f87db8..0000000 --- a/.github/workflows/test-deploy.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Test deployment - -on: - pull_request: - branches: [main] - paths: - [ - website/**, - ".github/workflows/*", - "idl/**", - "libraries/sbv2-lite/src/**", - "libraries/sbv2-utils/src/**", - "libraries/ts/src/**", - "cli/src/**", - ] - -jobs: - test-deploy: - name: Test deployment - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: 16.x - cache: yarn - cache-dependency-path: "yarn.lock" - - name: Setup npmrc - run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_AUTH_TOKEN}}" > .npmrc - - name: Setup yarnrc - run: echo "registry \"https://registry.npmjs.org\"" > .yarnrc - - name: Test build - run: | - yarn install --frozen-lockfile - yarn workspaces run build - yarn docs:build diff --git a/Anchor.toml b/Anchor.Sbv2.toml similarity index 100% rename from Anchor.toml rename to Anchor.Sbv2.toml diff --git a/Oracle_Version.md b/Oracle_Version.md deleted file mode 100644 index 73189dc..0000000 --- a/Oracle_Version.md +++ /dev/null @@ -1,3 +0,0 @@ -The latest oracle docker image is: - -dev-v2-07-18-22 diff --git a/Publishing.md b/Publishing.md deleted file mode 100644 index 8e85973..0000000 --- a/Publishing.md +++ /dev/null @@ -1,86 +0,0 @@ -# Publishing - -- [Checking for Changes](./Publishing.md#checking-for-changes) -- [Publishing to NPM](./Publishing.md#publishing-to-npm) -- [Lerna Commands](./Publishing.md#lerna-commands) - -## Checking for Changes - -The command bellow will - -- detect any version changes and increment when needed -- skip any private packages -- push a commit to github -- tag the commit with the changed package versions - -``` -lerna version patch --no-private --yes -``` - -Run the following command to skip any git actions - -``` -lerna version patch --no-private --yes --no-push --no-git-tag-version -``` - -## Publishing to NPM - -The command below will - -- check for any changes since the last release and patch the versions -- push a git commit and add tags for each changed version -- publish any changes to NPM - -``` -lerna version patch --no-private --yes -lerna publish from-git --yes -``` - -If the above command fails halfway, use the following command to check for any version differences between NPM and only publish the missing packages. - -``` -lerna publish from-package --yes -``` - -## Lerna Commands - -### Lerna Version - -Source: [Lerna Version](https://github.com/lerna/lerna/blob/main/commands/version/README.md) - -``` -lerna version [major | minor | patch | premajor | preminor | prepatch | prerelease] -# uses the next semantic version(s) value and this skips `Select a new version for...` prompt -``` - -#### `--no-private` - -By default, lerna version will include private packages when choosing versions, making commits, and tagging releases. Pass --no-private to disable this behavior. - -#### `--yes` - -When run with this flag, lerna version will skip all confirmation prompts. Useful in Continuous integration (CI) to automatically answer the publish confirmation prompt. - -#### `--no-git-tag-version` and `--no-push` - -By default, lerna version will commit changes to package.json files and tag the release. Pass `--no-git-tag-version` to disable the behavior. - -By default, lerna version will push the committed and tagged changes to the configured git remote. Pass `--no-push` to disable this behavior. - -### Lerna Publish - -Source: [Lerna Publish](https://github.com/lerna/lerna/blob/main/commands/publish/README.md) - -``` -lerna publish # publish packages that have changed since the last release -lerna publish from-git # explicitly publish packages tagged in the current commit -lerna publish from-package # explicitly publish packages where the latest version is not present in the registry -``` - -#### bump `from-git` - -In addition to the semver keywords supported by lerna version, lerna publish also supports the from-git keyword. This will identify packages tagged by lerna version and publish them to npm. This is useful in CI scenarios where you wish to manually increment versions, but have the package contents themselves consistently published by an automated process. - -#### bump `from-package` - -Similar to the `from-git` keyword except the list of packages to publish is determined by inspecting each package.json and determining if any package version is not present in the registry. Any versions not present in the registry will be published. This is useful when a previous lerna publish failed to publish all packages to the registry. diff --git a/README.md b/README.md index a23e8b0..790031a 100644 --- a/README.md +++ b/README.md @@ -1,111 +1 @@ # switchboard-v2 - -A monorepo containing APIs, Utils, and examples for Switchboard V2. - -## Table of Contents - -### Libraries - -| Package | Description | -| ---------------------------------------------- | -------------------------------------------------------------- | -| [Protobufs](./libraries/protos) | Protocol buffers used by the oracle to fetch and publish data. | -| [Typescript](./libraries/ts) | Typescript client to interact with Switchboard V2. | -| [Typescript **_Lite_**](./libraries/sbv2-lite) | Typescript "Lite" client to deserialize aggregator accounts | -| [Sbv2 Utils](./libraries/sbv2-utils) | Typescript library with helpful utility functions | -| [Python](./libraries/py) | Python client to interact with Switchboard V2. | -| [Rust](./libraries/rs) | Rust client to interact with Switchboard V2. | -| [CLI](./cli) | Command Line Interface (CLI) to interact with Switchboard V2. | - -### Program Examples - -| Package | Description | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | -| [anchor-feed-parser](./examples/programs/anchor-feed-parser) | Anchor example program demonstrating how to deserialize and read an onchain aggregator account. | -| [native-feed-parser](./examples/programs/native-feed-parser) | Solana Program Library example demonstrating how to deserialize and read an onchain aggregator account. | -| [anchor-vrf-parser](./examples/programs/anchor-vrf-parser) | Anchor example program demonstrating how to deserialize and read an onchain verifiable randomness function (VRF) account. | -| [anchor-buffer-parser](./examples/programs/anchor-buffer-parser) | Anchor example program demonstrating how to deserialize and read an onchain buffer relayer account. | - -### Client Examples - -| Package | Description | -| ------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| [feed-parser](./examples/clients/feed-parser) | Typescript example demonstrating how to read an aggregator account. | -| [feed-walkthrough](./examples/clients/feed-walkthrough) | Typescript example demonstrating how to create and manage your own oracle queue. | -| [lease-observer](./examples/clients/lease-observer) | Typescript example demonstrating how to send PagerDuty alerts when your aggregator lease is low on funds. | - -## Dependencies - -- [Node and Yarn](https://github.com/nvm-sh/nvm#installing-and-updating) -- [Docker Compose](https://docs.docker.com/compose/install) -- [Rust](https://www.rust-lang.org/tools/install) -- [Solana](https://docs.solana.com/cli/install-solana-cli-tools) -- [Anchor](https://project-serum.github.io/anchor/getting-started/installation.html#install-anchor) -- [Python3](https://www.python.org/downloads/) - -## Setup - -``` -yarn install -yarn workspaces run build -yarn workspace @switchboard-xyz/switchboardv2-cli link -anchor build && node ./scripts/setup-example-programs.js -``` - -## Website - -Run live server - -``` -yarn workspace website start -``` - -Build - -``` -yarn docs:build -``` - -## Publishing - -See [./Publishing.md](./Publishing.md) for a detailed guide. - -``` -lerna version patch --no-private --yes -lerna publish from-git --yes -``` - -### Localnet Testing Setup - -The SDK supports copying a Switchboard devnet environment to your localnet -environment for integration testing. This is useful if you want to see how your -program will react to Switchboard data feed updates. - -First, set the _[provider.cluster]_ in `Anchor.toml` to localnet. - -Next, create a Switchboard devnet queue and oracle. - -``` -sbv2 localnet:env --keypair ../payer-keypair.json -o .switchboard -``` - -This command will output: - -- **start-local-validator.sh**: starts a local Solana validator with the - Switchboard program, IDL, and our devnet environment pre-loaded -- **start-oracle.sh**: start a Switchboard oracle and start heartbeating on the - localnet queue -- **docker-compose.yml**: docker file with the Switchboard oracle environment -- **switchboard.env**: contains your Switchboard accounts - -In three separate shells, run the following commands in this order: - -- `./.switchboard/start-local-validator.sh` -- `./.switchboard/start-oracle.sh` -- `anchor test --skip-local-validator` - -The anchor test are configured to first fetch the account info for the -Switchboard DAO controlled devnet permissionless queue. If the account info is -not found, it assumes a localnet connection and looks for the `switchboard.env` -with your Switchboard environment specific public keys. If a`.switchboard` -directory or `switchboard.env` file is not found in the root project directory, -it will look 2 levels higher until giving up. diff --git a/anchor-test.sh b/anchor-test.sh new file mode 100755 index 0000000..169bb0f --- /dev/null +++ b/anchor-test.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +set -e + +# Imports +project_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) +program_dir="$project_dir"/programs + +cd "$program_dir"/anchor-buffer-parser +anchor test + +cd "$program_dir"/anchor-feed-parser +anchor test + +cd "$program_dir"/anchor-vrf-parser +anchor test \ No newline at end of file diff --git a/examples/README.md b/examples/README.md deleted file mode 100644 index 79b9011..0000000 --- a/examples/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Examples - -This directory contains some examples to get started with Switchboard V2. - -- **Programs** - On-chain examples for reading and checking Sbv2 data feeds, VRF, and buffer relayers. -- **Clients** - Off-chain examples to read and update Sbv2 accounts. -- **Job Definitions** - Some example job definitions to fetch and publish data on-chain. diff --git a/examples/clients/README.md b/examples/clients/README.md deleted file mode 100644 index 50b329c..0000000 --- a/examples/clients/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Switchboard V2 Client Examples - -| Package | Description | -| -------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| [feed-parser](./feed-parser) | Typescript example demonstrating how to read an aggregator account. | -| [feed-walkthrough](./feed-walkthrough) | Typescript example demonstrating how to create and manage your own oracle queue. | -| [lease-observer](./lease-observer) | Typescript example demonstrating how to send PagerDuty alerts when your aggregator lease is low on funds. | diff --git a/examples/clients/feed-parser/tsconfig.json b/examples/clients/feed-parser/tsconfig.json deleted file mode 100644 index f7e586e..0000000 --- a/examples/clients/feed-parser/tsconfig.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "../../../tsconfig.json", - "compilerOptions": { - "outDir": "dist", - "rootDir": "src", - "paths": { - "@switchboard-xyz/switchboard-v2": ["../../../libraries/ts"] - } - }, - "include": ["src/**/*"], - "exclude": ["esbuild.js", "dist"], - "references": [{ "path": "../../../libraries/ts" }], - "files": ["src/main.ts"] -} diff --git a/examples/clients/feed-walkthrough/docker-compose.yml b/examples/clients/feed-walkthrough/docker-compose.yml deleted file mode 100644 index d7da480..0000000 --- a/examples/clients/feed-walkthrough/docker-compose.yml +++ /dev/null @@ -1,17 +0,0 @@ -version: "3.3" -services: - oracle: - image: "switchboardlabs/node:dev-v2-09-13-22" - network_mode: host - restart: always - secrets: - - PAYER_SECRETS - environment: - - LIVE=1 - - CLUSTER=devnet - - HEARTBEAT_INTERVAL=15 # Seconds - - ORACLE_KEY=${ORACLE_KEY} - - RPC_URL=${RPC_URL} -secrets: - PAYER_SECRETS: - file: ${PAYER_KEYPAIR} diff --git a/examples/clients/lease-observer/README.md b/examples/clients/lease-observer/README.md deleted file mode 100644 index 3d990ca..0000000 --- a/examples/clients/lease-observer/README.md +++ /dev/null @@ -1 +0,0 @@ -# feed-observer diff --git a/examples/job-definitions/addTask.json b/examples/job-definitions/addTask.json deleted file mode 100644 index 39fdcb6..0000000 --- a/examples/job-definitions/addTask.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "tasks": [ - { "valueTask": { "value": 10 } }, - { - "addTask": { - "job": { - "tasks": [{ "valueTask": { "value": 15 } }] - } - } - } - ] -} diff --git a/examples/job-definitions/defiKingdomsTask.json b/examples/job-definitions/defiKingdomsTask.json deleted file mode 100644 index 49a0bfa..0000000 --- a/examples/job-definitions/defiKingdomsTask.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "tasks": [ - { - "defiKingdomsTask": { - "provider": "https://api.harmony.one", - "inToken": { - "address": "0x72cb10c6bfa5624dd07ef608027e366bd690048f", - "decimals": 18 - }, - "outToken": { - "address": "0x985458E523dB3d53125813eD68c274899e9DfAb4", - "decimals": 6 - } - } - } - ] -} diff --git a/examples/job-definitions/httpTask.Gold.json b/examples/job-definitions/httpTask.Gold.json deleted file mode 100644 index 740ea67..0000000 --- a/examples/job-definitions/httpTask.Gold.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "jobs": [ - { - "name": "ASG Gold Price", - "tasks": [ - { - "httpTask": { - "url": "https://data-asg.goldprice.org/dbXRates/USD", - "headers": [ - { - "key": "Authorization", - "value": "Bearer XXXX" - } - ] - } - }, - { - "jsonParseTask": { - "path": "$.items[?(@.curr == \"USD\")].xauPrice" - } - } - ] - } - ] -} diff --git a/examples/job-definitions/jupiterSwapTask.UXP.json b/examples/job-definitions/jupiterSwapTask.UXP.json deleted file mode 100644 index 7c6e489..0000000 --- a/examples/job-definitions/jupiterSwapTask.UXP.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "UXP/USD", - "tasks": [ - { - "jupiterSwapTask": { - "inTokenAddress": "UXPhBoR3qG4UCiGNJfV7MqhHyFqKN68g45GoYvAeL2M", - "outTokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" - } - }, - { - "multiplyTask": { - "aggregatorPubkey": "BjUgj6YCnFBZ49wF54ddBVA9qu8TeqkFtkbqmZcee8uW" - } - } - ] -} diff --git a/examples/job-definitions/lendingRateTask.Jet.Borrow.json b/examples/job-definitions/lendingRateTask.Jet.Borrow.json deleted file mode 100644 index b5dbf61..0000000 --- a/examples/job-definitions/lendingRateTask.Jet.Borrow.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "JET BTC Borrow Rate", - "tasks": [ - { - "lendingRateTask": { - "protocol": "jet", - "assetMint": "9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E", - "field": 1 - } - } - ] -} diff --git a/examples/job-definitions/lendingRateTask.Jet.Lend.json.json b/examples/job-definitions/lendingRateTask.Jet.Lend.json.json deleted file mode 100644 index 1e87ca4..0000000 --- a/examples/job-definitions/lendingRateTask.Jet.Lend.json.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "JET BTC Lend Rate", - "tasks": [ - { - "lendingRateTask": { - "protocol": "jet", - "assetMint": "9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E", - "field": 0 - } - } - ] -} diff --git a/examples/job-definitions/lendingRateTask.Solend.Borrow.json b/examples/job-definitions/lendingRateTask.Solend.Borrow.json deleted file mode 100644 index 0ce0f44..0000000 --- a/examples/job-definitions/lendingRateTask.Solend.Borrow.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "Solend SLND Borrow Rate", - "tasks": [ - { - "lendingRateTask": { - "protocol": "solend", - "assetMint": "SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp", - "field": 1 - } - } - ] -} diff --git a/examples/job-definitions/lendingRateTask.Solend.Lend.json b/examples/job-definitions/lendingRateTask.Solend.Lend.json deleted file mode 100644 index 6bd8145..0000000 --- a/examples/job-definitions/lendingRateTask.Solend.Lend.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "Solend SLND Lend Rate", - "tasks": [ - { - "lendingRateTask": { - "protocol": "solend", - "assetMint": "SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp", - "field": 0 - } - } - ] -} diff --git a/examples/job-definitions/lpExchangeRateTask.Mercurial.3Pool.json b/examples/job-definitions/lpExchangeRateTask.Mercurial.3Pool.json deleted file mode 100644 index 920c901..0000000 --- a/examples/job-definitions/lpExchangeRateTask.Mercurial.3Pool.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "Mercurial Finance PAI-3Pool", - "tasks": [ - { - "lpExchangeRateTask": { - "mercurialPoolAddress": "SWABtvDnJwWwAb9CbSA3nv7nTnrtYjrACAVtuP3gyBB", - "inTokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "outTokenAddress": "Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS" - } - } - ] -} diff --git a/examples/job-definitions/lpTokenPriceTask.Mercurial.3Pool.json b/examples/job-definitions/lpTokenPriceTask.Mercurial.3Pool.json deleted file mode 100644 index c4bc30e..0000000 --- a/examples/job-definitions/lpTokenPriceTask.Mercurial.3Pool.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "Mercurial Finance PAI-3Pool", - "tasks": [ - { - "lpTokenPriceTask": { - "useFairPrice": true, - "mercurialPoolAddress": "SWABtvDnJwWwAb9CbSA3nv7nTnrtYjrACAVtuP3gyBB", - "priceFeedAddresses": [ - "BjUgj6YCnFBZ49wF54ddBVA9qu8TeqkFtkbqmZcee8uW", - "ETAaeeuQBwsh9mC2gCov9WdhJENZuffRMXY2HgjCcSL9", - "DKayKbGmnby8XUagUL3bVLcN7NZKy6j5ugyBmHzwpqc8" - ] - } - } - ] -} diff --git a/examples/job-definitions/mangoPerpMarketTask.json b/examples/job-definitions/mangoPerpMarketTask.json deleted file mode 100644 index ca2b34c..0000000 --- a/examples/job-definitions/mangoPerpMarketTask.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "Mango BTC/USD Perp Price", - "tasks": [ - { - "mangoPerpMarketTask": { - "perpMarketAddress": "DtEcjPLyD4YtTBB4q8xwFZ9q49W89xZCZtJyrGebi5t8" - } - } - ] -} diff --git a/examples/job-definitions/oracleTask.chainlink.json b/examples/job-definitions/oracleTask.chainlink.json deleted file mode 100644 index fcb44f5..0000000 --- a/examples/job-definitions/oracleTask.chainlink.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "Chainlink SOL/USD Devnet Price", - "tasks": [ - { - "oracleTask": { - "chainlinkAddress": "EdWr4ww1Dq82vPe8GFjjcVPo2Qno3Nhn6baCgM3dCy28" - } - } - ] -} diff --git a/examples/job-definitions/oracleTask.pyth.json b/examples/job-definitions/oracleTask.pyth.json deleted file mode 100644 index b2a4282..0000000 --- a/examples/job-definitions/oracleTask.pyth.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "Pyth SOL/USD Price", - "tasks": [ - { - "oracleTask": { - "pythAddress": "H6ARHf6YXhGYeQfUzQNGk6rDNnLBQKrenN712K4AQJEG", - "pythAllowedConfidenceInterval": 11.5 - } - } - ] -} diff --git a/examples/job-definitions/oracleTask.switchboard.json b/examples/job-definitions/oracleTask.switchboard.json deleted file mode 100644 index f8b899e..0000000 --- a/examples/job-definitions/oracleTask.switchboard.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "Switchboard SOL/USD Price", - "tasks": [ - { - "oracleTask": { - "switchboardAddress": "GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR" - } - } - ] -} diff --git a/examples/job-definitions/serumSwapTask.json b/examples/job-definitions/serumSwapTask.json deleted file mode 100644 index 0bd95a5..0000000 --- a/examples/job-definitions/serumSwapTask.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "Aleph USDC", - "tasks": [ - { - "serumSwapTask": { - "serumPoolAddress": "GcoKtAmTy5QyuijXSmJKBtFdt99e6Buza18Js7j9AJ6e" - } - } - ] -} diff --git a/examples/job-definitions/splStakePoolTask.json b/examples/job-definitions/splStakePoolTask.json deleted file mode 100644 index 435ab04..0000000 --- a/examples/job-definitions/splStakePoolTask.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "name": "MonkeeDao Token Price", - "tasks": [ - { - "splStakePoolTask": { - "pubkey": "7ge2xKsZXmqPxa3YmXxXmzCp9Hc2ezrTxh6PECaxCwrL" - } - }, - { - "jsonParseTask": { - "path": "$.poolTokenSupply" - } - }, - { - "divideTask": { - "job": { - "tasks": [ - { - "splStakePoolTask": { - "pubkey": "7ge2xKsZXmqPxa3YmXxXmzCp9Hc2ezrTxh6PECaxCwrL" - } - }, - { - "jsonParseTask": { - "path": "$.poolTokenSupply" - } - } - ] - } - } - } - ] -} diff --git a/examples/job-definitions/splTokenParseTask.json b/examples/job-definitions/splTokenParseTask.json deleted file mode 100644 index f3f06f6..0000000 --- a/examples/job-definitions/splTokenParseTask.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "DaoSOL decimals", - "tasks": [ - { - "splTokenParseTask": { - "tokenAccountAddress": "7xJRVi15yFB67vovu3f6Wai9EaQ8XDss6SCWB4FnSzDc" - } - }, - { - "jsonParseTask": { - "path": "$.uiAmount" - } - } - ] -} diff --git a/examples/job-definitions/twapTask.json b/examples/job-definitions/twapTask.json deleted file mode 100644 index 6003507..0000000 --- a/examples/job-definitions/twapTask.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "SOL/USD 30min TWAP", - "tasks": [ - { - "twapTask": { - "aggregatorPubkey": "GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR", - "period": 1800, - "weightByPropagationTime": true, - "minSamples": 20 - } - } - ] -} diff --git a/examples/job-definitions/valueTask.pubkey.json b/examples/job-definitions/valueTask.pubkey.json deleted file mode 100644 index fb3570b..0000000 --- a/examples/job-definitions/valueTask.pubkey.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "Sol Aggregator", - "tasks": [ - { - "valueTask": { - "aggregatorPubkey": "GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR" - } - } - ] -} diff --git a/examples/job-definitions/websocketTask.Coinbase.json b/examples/job-definitions/websocketTask.Coinbase.json deleted file mode 100644 index 34f3dc1..0000000 --- a/examples/job-definitions/websocketTask.Coinbase.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "Coinbase BTC/USD", - "tasks": [ - { - "websocketTask": { - "url": "wss://ws-feed.pro.coinbase.com", - "subscription": "{\"type\":\"subscribe\",\"product_ids\":[\"BTC-USD\"],\"channels\":[\"ticker\",{\"name\":\"ticker\",\"product_ids\":[\"BTC-USD\"]}]}", - "maxDataAgeSeconds": 15, - "filter": "$[?(@.type == 'ticker' && @.product_id == 'BTC-USD')]" - } - }, - { - "jsonParseTask": { - "path": "$.price" - } - } - ] -} diff --git a/examples/job-definitions/websocketTask.FtxCom.json b/examples/job-definitions/websocketTask.FtxCom.json deleted file mode 100644 index a423848..0000000 --- a/examples/job-definitions/websocketTask.FtxCom.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "FtxCom BTC/USD", - "tasks": [ - { - "websocketTask": { - "url": "wss://ftx.com/ws/", - "subscription": "{\"op\":\"subscribe\",\"channel\":\"ticker\",\"market\":\"BTC/USD\"}", - "maxDataAgeSeconds": 15, - "filter": "$[?(@.type == 'update' && @.channel == 'ticker' && @.market == 'BTC/USD')]" - } - }, - { - "medianTask": { - "tasks": [ - { - "jsonParseTask": { - "path": "$.data.bid" - } - }, - { - "jsonParseTask": { - "path": "$.data.ask" - } - }, - { - "jsonParseTask": { - "path": "$.data.last" - } - } - ] - } - } - ] -} diff --git a/examples/job-definitions/xstepPriceTask.json b/examples/job-definitions/xstepPriceTask.json deleted file mode 100644 index a3525e8..0000000 --- a/examples/job-definitions/xstepPriceTask.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "name": "xStep", - "tasks": [ - { - "xstepPriceTask": { - "stepJob": { - "jobs": [ - { - "tasks": [ - { - "httpTask": { "url": "https://ftx.com/api/markets/step/usd" } - }, - { "jsonParseTask": { "path": "$.result.price" } } - ] - }, - { - "tasks": [ - { - "httpTask": { - "url": "https://api.gateio.ws/api/v4/spot/tickers?currency_pair=STEP_USDT" - } - }, - { - "medianTask": { - "tasks": [ - { "jsonParseTask": { "path": "$[0].lowest_ask" } }, - { "jsonParseTask": { "path": "$[0].highest_bid" } }, - { "jsonParseTask": { "path": "$[0].last" } } - ] - } - } - ] - } - ] - } - } - } - ] -} diff --git a/examples/programs/anchor-buffer-parser/tsconfig.json b/examples/programs/anchor-buffer-parser/tsconfig.json deleted file mode 100644 index 5ce2b54..0000000 --- a/examples/programs/anchor-buffer-parser/tsconfig.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "extends": "../../../tsconfig.json", - "compilerOptions": { - "types": ["mocha", "chai"], - "typeRoots": ["./node_modules/@types"], - "module": "CommonJS", - "noEmit": true, - "esModuleInterop": true, - "paths": { - "@switchboard-xyz/switchboard-v2": ["../../../libraries/ts"], - "@switchboard-xyz/sbv2-utils": ["../../../libraries/sbv2-utils"] - } - }, - "include": [ - "tests/**/*", - "client/**/*", - "../../../target/types/anchor_feed_parser" - ], - "references": [ - { "path": "../../../libraries/ts" }, - { "path": "../../../libraries/sbv2-utils" } - ] -} diff --git a/examples/programs/anchor-feed-parser/tsconfig.json b/examples/programs/anchor-feed-parser/tsconfig.json deleted file mode 100644 index 5ce2b54..0000000 --- a/examples/programs/anchor-feed-parser/tsconfig.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "extends": "../../../tsconfig.json", - "compilerOptions": { - "types": ["mocha", "chai"], - "typeRoots": ["./node_modules/@types"], - "module": "CommonJS", - "noEmit": true, - "esModuleInterop": true, - "paths": { - "@switchboard-xyz/switchboard-v2": ["../../../libraries/ts"], - "@switchboard-xyz/sbv2-utils": ["../../../libraries/sbv2-utils"] - } - }, - "include": [ - "tests/**/*", - "client/**/*", - "../../../target/types/anchor_feed_parser" - ], - "references": [ - { "path": "../../../libraries/ts" }, - { "path": "../../../libraries/sbv2-utils" } - ] -} diff --git a/examples/clients/feed-parser/LICENSE b/javascript/feed-parser/LICENSE similarity index 100% rename from examples/clients/feed-parser/LICENSE rename to javascript/feed-parser/LICENSE diff --git a/examples/clients/feed-parser/README.md b/javascript/feed-parser/README.md similarity index 74% rename from examples/clients/feed-parser/README.md rename to javascript/feed-parser/README.md index fdb21b8..2769b9b 100644 --- a/examples/clients/feed-parser/README.md +++ b/javascript/feed-parser/README.md @@ -1,15 +1,16 @@ # Switchboard V2 Feed Parser -Basic example showing how to load the Switchboard program and output the latest value +Basic example showing how to load the Switchboard program and output the latest +value ## Install ``` -npm install +yarn install ``` ## Start ``` -npm start +yarn start ``` diff --git a/examples/clients/feed-parser/esbuild.js b/javascript/feed-parser/esbuild.js similarity index 100% rename from examples/clients/feed-parser/esbuild.js rename to javascript/feed-parser/esbuild.js diff --git a/examples/clients/feed-parser/package.json b/javascript/feed-parser/package.json similarity index 90% rename from examples/clients/feed-parser/package.json rename to javascript/feed-parser/package.json index 636e056..c338326 100644 --- a/examples/clients/feed-parser/package.json +++ b/javascript/feed-parser/package.json @@ -6,7 +6,7 @@ "repository": { "type": "git", "url": "https://github.com/switchboard-xyz/switchboard-v2", - "directory": "packages/feed-parser" + "directory": "javascript/feed-parser" }, "homepage": "https://docs.switchboard.xyz", "main": "dist/index.js", @@ -20,7 +20,7 @@ "dependencies": { "@project-serum/anchor": "^0.24.2", "@solana/web3.js": "^1.33.0", - "@switchboard-xyz/switchboard-v2": "^0.0.135", + "@switchboard-xyz/switchboard-v2": "^0.0.136", "big.js": "^6.1.1" }, "devDependencies": { diff --git a/examples/clients/feed-parser/src/main.ts b/javascript/feed-parser/src/main.ts similarity index 100% rename from examples/clients/feed-parser/src/main.ts rename to javascript/feed-parser/src/main.ts diff --git a/examples/clients/feed-walkthrough/tsconfig.json b/javascript/feed-parser/tsconfig.json similarity index 66% rename from examples/clients/feed-walkthrough/tsconfig.json rename to javascript/feed-parser/tsconfig.json index a0f17d1..050bae0 100644 --- a/examples/clients/feed-walkthrough/tsconfig.json +++ b/javascript/feed-parser/tsconfig.json @@ -1,5 +1,4 @@ { - "extends": "../../../tsconfig.json", "ts-node": { // It is faster to skip typechecking. // Remove if you want ts-node to do typechecking. @@ -13,18 +12,21 @@ } }, "compilerOptions": { + "target": "ES2019", + "lib": ["es2019", "dom"], + "module": "es2022", + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "moduleResolution": "node", "outDir": "dist", "rootDir": "src", "paths": { - "@switchboard-xyz/switchboard-v2": ["../../../libraries/ts"], - "@solana/spl-token": [ - "../../../node_modules/@solana/spl-token", - "./node_modules/@solana/spl-token" - ] + "@switchboard-xyz/switchboard-v2": ["../solana.js"] } }, "include": ["src/**/*"], "exclude": ["esbuild.js", "dist"], - "references": [{ "path": "../../../libraries/ts" }], + "references": [{ "path": "../solana.js" }], "files": ["src/main.ts"] } diff --git a/javascript/feed-parser/yarn.lock b/javascript/feed-parser/yarn.lock new file mode 100644 index 0000000..c11090e --- /dev/null +++ b/javascript/feed-parser/yarn.lock @@ -0,0 +1,2070 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259" + integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== + dependencies: + regenerator-runtime "^0.13.4" + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.0" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@noble/ed25519@^1.7.0": + version "1.7.1" + resolved "https://registry.npmjs.org/@noble/ed25519/-/ed25519-1.7.1.tgz#6899660f6fbb97798a6fbd227227c4589a454724" + integrity sha512-Rk4SkJFaXZiznFyC/t77Q0NKS4FL7TLJJsVG2V2oiEq3kJVeTdxysEe/yRWSpnWMe808XRDJ+VFh5pt/FN5plw== + +"@noble/hashes@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183" + integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA== + +"@noble/secp256k1@^1.6.3": + version "1.7.0" + resolved "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.0.tgz#d15357f7c227e751d90aa06b05a0e5cf993ba8c1" + integrity sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw== + +"@project-serum/anchor@^0.24.2": + version "0.24.2" + resolved "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.24.2.tgz#a3c52a99605c80735f446ca9b3a4885034731004" + integrity sha512-0/718g8/DnEuwAidUwh5wLYphUYXhUbiClkuRNhvNoa+1Y8a4g2tJyxoae+emV+PG/Gikd/QUBNMkIcimiIRTA== + dependencies: + "@project-serum/borsh" "^0.2.5" + "@solana/web3.js" "^1.36.0" + base64-js "^1.5.1" + bn.js "^5.1.2" + bs58 "^4.0.1" + buffer-layout "^1.2.2" + camelcase "^5.3.1" + cross-fetch "^3.1.5" + crypto-hash "^1.3.0" + eventemitter3 "^4.0.7" + js-sha256 "^0.9.0" + pako "^2.0.3" + snake-case "^3.0.4" + toml "^3.0.0" + +"@project-serum/borsh@^0.2.5": + version "0.2.5" + resolved "https://registry.npmjs.org/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663" + integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q== + dependencies: + bn.js "^5.1.2" + buffer-layout "^1.2.0" + +"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" + integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== + +"@protobufjs/base64@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" + integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== + +"@protobufjs/codegen@^2.0.4": + version "2.0.4" + resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" + integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== + +"@protobufjs/eventemitter@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" + integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== + +"@protobufjs/fetch@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" + integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== + dependencies: + "@protobufjs/aspromise" "^1.1.1" + "@protobufjs/inquire" "^1.1.0" + +"@protobufjs/float@^1.0.2": + version "1.0.2" + resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" + integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== + +"@protobufjs/inquire@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" + integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== + +"@protobufjs/path@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" + integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== + +"@protobufjs/pool@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" + integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== + +"@protobufjs/utf8@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" + integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== + +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.0": + version "3.0.0" + resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" + integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@solana/buffer-layout-utils@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz#b45a6cab3293a2eb7597cceb474f229889d875ca" + integrity sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.32.0" + bigint-buffer "^1.1.5" + bignumber.js "^9.0.1" + +"@solana/buffer-layout@^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.0.tgz#75b1b11adc487234821c81dfae3119b73a5fd734" + integrity sha512-lR0EMP2HC3+Mxwd4YcnZb0smnaDw7Bl2IQWZiTevRH5ZZBZn6VRWn3/92E3qdU4SSImJkA6IDHawOHAnx/qUvQ== + dependencies: + buffer "~6.0.3" + +"@solana/spl-governance@^0.0.34": + version "0.0.34" + resolved "https://registry.npmjs.org/@solana/spl-governance/-/spl-governance-0.0.34.tgz#c61d81d356dbcee961bbc85e5d3538846fea57ad" + integrity sha512-tZppBiiVkUa5v+B/Ds+TqZ4yxR/vaIYLRxBk7x6R22dwk4/9SU87bVE60kRdDqTdMzqScFxIMdhaGl/fCX533A== + dependencies: + "@solana/web3.js" "^1.22.0" + bignumber.js "^9.0.1" + bn.js "^5.1.3" + borsh "^0.3.1" + bs58 "^4.0.1" + superstruct "^0.15.2" + +"@solana/spl-token-v2@npm:@solana/spl-token@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.2.0.tgz#329bb6babb5de0f9c40035ddb1657f01a8347acd" + integrity sha512-RWcn31OXtdqIxmkzQfB2R+WpsJOVS6rKuvpxJFjvik2LyODd+WN58ZP3Rpjpro03fscGAkzlFuP3r42doRJgyQ== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/buffer-layout-utils" "^0.2.0" + "@solana/web3.js" "^1.32.0" + start-server-and-test "^1.14.0" + +"@solana/web3.js@^1.22.0", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.33.0", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.44.3": + version "1.62.0" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz#8fef9fd443217161ddc25e701f603222047bc520" + integrity sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA== + dependencies: + "@babel/runtime" "^7.12.5" + "@noble/ed25519" "^1.7.0" + "@noble/hashes" "^1.1.2" + "@noble/secp256k1" "^1.6.3" + "@solana/buffer-layout" "^4.0.0" + bigint-buffer "^1.1.5" + bn.js "^5.0.0" + borsh "^0.7.0" + bs58 "^4.0.1" + buffer "6.0.1" + fast-stable-stringify "^1.0.0" + jayson "^3.4.4" + node-fetch "2" + rpc-websockets "^7.5.0" + superstruct "^0.14.2" + +"@switchboard-xyz/common@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@switchboard-xyz/common/-/common-2.0.0.tgz#8c3551b3611c4a2348c46879c0ab2ea188a1f753" + integrity sha512-hC7J7NShGQHjWaCU7+w6tEtZ3KljxMIKJe5IaxPxD+cgdxhx58UMjngyevaCcle33aPyFZ/tbpm0tU2ZqzqZtQ== + dependencies: + big.js "^6.2.1" + bn.js "^5.2.1" + protobufjs "^6.11.3" + +"@switchboard-xyz/switchboard-v2@^0.0.136": + version "0.0.136" + resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.136.tgz#092f43e9c0e35f31033c124aa12ce46019af4eb5" + integrity sha512-vgaGqkDais2VJHfQawBSqrlKjvqtvOScHv7Q9bAlQtSieu7a3zMgH3rF4zAZAh/iphJLsm6bdMftUdcCMpVbKQ== + dependencies: + "@project-serum/anchor" "^0.24.2" + "@solana/spl-governance" "^0.0.34" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.44.3" + "@switchboard-xyz/common" "^2.0.0" + assert "^2.0.0" + big.js "^6.2.0" + bs58 "^5.0.0" + chan "^0.6.1" + crypto-js "^4.0.0" + glob "^8.0.3" + lodash "^4.17.21" + long "^4.0.0" + mocha "^9.1.1" + node-fetch "^3.2.6" + +"@tsconfig/node10@^1.0.7": + version "1.0.9" + resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" + integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" + integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== + +"@types/big.js@^6.1.3": + version "6.1.6" + resolved "https://registry.npmjs.org/@types/big.js/-/big.js-6.1.6.tgz#3d417e758483d55345a03a087f7e0c87137ca444" + integrity sha512-0r9J+Zz9rYm2hOTwiMAVkm3XFQ4u5uTK37xrQMhc9bysn/sf/okzovWMYYIBMFTn/yrEZ11pusgLEaoarTlQbA== + +"@types/bn.js@^4.11.5": + version "4.11.6" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c" + integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== + dependencies: + "@types/node" "*" + +"@types/connect@^3.4.33": + version "3.4.35" + resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/long@^4.0.1": + version "4.0.2" + resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" + integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== + +"@types/node@*", "@types/node@>=13.7.0": + version "18.7.18" + resolved "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz#633184f55c322e4fb08612307c274ee6d5ed3154" + integrity sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg== + +"@types/node@^12.12.54": + version "12.20.55" + resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + +"@types/ws@^7.4.4": + version "7.4.7" + resolved "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" + integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== + dependencies: + "@types/node" "*" + +"@ungap/promise-all-settled@1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" + integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== + +JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +acorn-walk@^8.1.1: + version "8.2.0" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^8.4.1: + version "8.8.0" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" + integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== + +ansi-colors@4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +assert@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== + dependencies: + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-x@^3.0.2: + version "3.0.9" + resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" + integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== + dependencies: + safe-buffer "^5.0.1" + +base-x@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz#d0e3b7753450c73f8ad2389b5c018a4af7b2224a" + integrity sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw== + +base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +big.js@^6.1.1, big.js@^6.2.0, big.js@^6.2.1: + version "6.2.1" + resolved "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz#7205ce763efb17c2e41f26f121c420c6a7c2744f" + integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== + +bigint-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442" + integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA== + dependencies: + bindings "^1.3.0" + +bignumber.js@^9.0.1: + version "9.1.0" + resolved "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62" + integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.3.0: + version "1.5.0" + resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bluebird@3.7.2: + version "3.7.2" + resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^5.0.0, bn.js@^5.1.2, bn.js@^5.1.3, bn.js@^5.2.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +borsh@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.3.1.tgz#c31c3a149610e37913deada80e89073fb15cf55b" + integrity sha512-gJoSTnhwLxN/i2+15Y7uprU8h3CKI+Co4YKZKvrGYUy0FwHWM20x5Sx7eU8Xv4HQqV+7rb4r3P7K1cBIQe3q8A== + dependencies: + "@types/bn.js" "^4.11.5" + bn.js "^5.0.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +borsh@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a" + integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA== + dependencies: + bn.js "^5.2.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +bs58@^4.0.0, bs58@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" + integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== + dependencies: + base-x "^3.0.2" + +bs58@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz#865575b4d13c09ea2a84622df6c8cbeb54ffc279" + integrity sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ== + dependencies: + base-x "^4.0.0" + +buffer-layout@^1.2.0, buffer-layout@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/buffer-layout/-/buffer-layout-1.2.2.tgz#b9814e7c7235783085f9ca4966a0cfff112259d5" + integrity sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA== + +buffer@6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2" + integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@~6.0.3: + version "6.0.3" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +bufferutil@^4.0.1: + version "4.0.6" + resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" + integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== + dependencies: + node-gyp-build "^4.3.0" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chan@^0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/chan/-/chan-0.6.1.tgz#ec0ad132e5bc62c27ef10ccbfc4d8dcd8ca00640" + integrity sha512-/TdBP2UhbBmw7qnqkzo9Mk4rzvwRv4dlNPXFerqWy90T8oBspKagJNZxrDbExKHhx9uXXHjo3f9mHgs9iKO3nQ== + +check-more-types@2.24.0: + version "2.24.0" + resolved "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== + +chokidar@3.5.3: + version "3.5.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + 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" + optionalDependencies: + fsevents "~2.3.2" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +commander@^2.20.3: + version "2.20.3" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-fetch@^3.1.5: + version "3.1.5" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" + integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== + dependencies: + node-fetch "2.6.7" + +cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-hash@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247" + integrity sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg== + +crypto-js@^4.0.0: + version "4.1.1" + resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" + integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== + +data-uri-to-buffer@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" + integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== + +debug@4.3.2: + version "4.3.2" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + +debug@4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + +decamelize@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" + integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== + +define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== + +diff@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" + integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +duplexer@~0.1.1: + version "0.1.2" + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +es-abstract@^1.19.0, es-abstract@^1.19.5, es-abstract@^1.20.0: + version "1.20.2" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3" + integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.2" + get-symbol-description "^1.0.0" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + is-callable "^1.2.4" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + string.prototype.trimend "^1.0.5" + string.prototype.trimstart "^1.0.5" + unbox-primitive "^1.0.2" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ== + dependencies: + es6-promise "^4.0.3" + +esbuild-node-externals@^1.4.1: + version "1.5.0" + resolved "https://registry.npmjs.org/esbuild-node-externals/-/esbuild-node-externals-1.5.0.tgz#56674e3d102efeb704e931574b1866cf1f79c7b8" + integrity sha512-9394Ne2t2Z243BWeNBRkXEYVMOVbQuzp7XSkASZTOQs0GSXDuno5aH5OmzEXc6GMuln5zJjpkZpgwUPW0uRKgw== + dependencies: + find-up "5.0.0" + tslib "2.3.1" + +esbuild@^0.11.0: + version "0.11.23" + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.11.23.tgz#c42534f632e165120671d64db67883634333b4b8" + integrity sha512-iaiZZ9vUF5wJV8ob1tl+5aJTrwDczlvGP0JoMmnpC2B0ppiMCu8n8gmy5ZTGl5bcG081XBVn+U+jP+mPFm5T5Q== + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +estrella@^1.4.1: + version "1.4.1" + resolved "https://registry.npmjs.org/estrella/-/estrella-1.4.1.tgz#6971a710a91d38abe3ced6f6ffa68c0c6e08d369" + integrity sha512-h8vlec27CFxw+8uYFtgbvLvohx0v+IssCwb/haTQnI+kO2WaL0ApSTWxg49LneAtqrZkrnYVwXQB2ZgyIIAImw== + dependencies: + esbuild "^0.11.0" + optionalDependencies: + fsevents "~2.3.1" + +event-stream@=3.3.4: + version "3.3.4" + resolved "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +eventemitter3@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +execa@5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + 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" + +eyes@^0.1.8: + version "0.1.8" + resolved "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + integrity sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ== + +fast-stable-stringify@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" + integrity sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag== + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +follow-redirects@^1.14.0: + version "1.15.2" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +from@~0: + version "0.1.7" + resolved "https://registry.npmjs.org/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" + integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.1, fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@7.2.0: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.0.0: + version "7.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^8.0.3: + version "8.0.3" + resolved "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" + integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +growl@1.10.5: + version "1.10.5" + resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +interpret@^1.0.0: + version "1.4.0" + resolved "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: + version "1.2.6" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz#fd6170b0b8c7e2cc73de342ef8284a2202023c44" + integrity sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q== + +is-core-module@^2.9.0: + version "2.10.0" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" + integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-nan@^1.2.1: + version "1.3.2" + resolved "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.3, is-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67" + integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isomorphic-ws@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" + integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== + +jayson@^3.4.4: + version "3.7.0" + resolved "https://registry.npmjs.org/jayson/-/jayson-3.7.0.tgz#b735b12d06d348639ae8230d7a1e2916cb078f25" + integrity sha512-tfy39KJMrrXJ+mFcMpxwBvFDetS8LAID93+rycFglIQM4kl3uNR3W4lBLE/FFhsoUCEox5Dt2adVpDm/XtebbQ== + dependencies: + "@types/connect" "^3.4.33" + "@types/node" "^12.12.54" + "@types/ws" "^7.4.4" + JSONStream "^1.3.5" + commander "^2.20.3" + delay "^5.0.0" + es6-promisify "^5.0.0" + eyes "^0.1.8" + isomorphic-ws "^4.0.1" + json-stringify-safe "^5.0.1" + lodash "^4.17.20" + uuid "^8.3.2" + ws "^7.4.5" + +joi@^17.4.0: + version "17.6.0" + resolved "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2" + integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.0" + "@sideway/pinpoint" "^2.0.0" + +js-sha256@^0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" + integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA== + +js-yaml@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +json-stringify-safe@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +lazy-ass@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +long@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" + integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimatch@4.2.1: + version "4.2.1" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz#40d9d511a46bdc4e563c22c3080cde9c0d8299b4" + integrity sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1: + version "5.1.0" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.3, minimist@^1.2.5: + version "1.2.6" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +mocha@^9.1.1: + version "9.2.2" + resolved "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz#d70db46bdb93ca57402c809333e5a84977a88fb9" + integrity sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g== + dependencies: + "@ungap/promise-all-settled" "1.1.2" + ansi-colors "4.1.1" + browser-stdout "1.3.1" + chokidar "3.5.3" + debug "4.3.3" + diff "5.0.0" + escape-string-regexp "4.0.0" + find-up "5.0.0" + glob "7.2.0" + growl "1.10.5" + he "1.2.0" + js-yaml "4.1.0" + log-symbols "4.1.0" + minimatch "4.2.1" + ms "2.1.3" + nanoid "3.3.1" + serialize-javascript "6.0.0" + strip-json-comments "3.1.1" + supports-color "8.1.1" + which "2.0.2" + workerpool "6.2.0" + yargs "16.2.0" + yargs-parser "20.2.4" + yargs-unparser "2.0.0" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +nanoid@3.3.1: + version "3.3.1" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" + integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@2, node-fetch@2.6.7: + version "2.6.7" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^3.2.6: + version "3.2.10" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8" + integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-gyp-build@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" + integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +pako@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d" + integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" + integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== + dependencies: + through "~2.3" + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.3.1" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +protobufjs@^6.11.3: + version "6.11.3" + resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" + integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== + dependencies: + "@protobufjs/aspromise" "^1.1.2" + "@protobufjs/base64" "^1.1.2" + "@protobufjs/codegen" "^2.0.4" + "@protobufjs/eventemitter" "^1.1.0" + "@protobufjs/fetch" "^1.1.0" + "@protobufjs/float" "^1.0.2" + "@protobufjs/inquire" "^1.1.0" + "@protobufjs/path" "^1.1.2" + "@protobufjs/pool" "^1.1.0" + "@protobufjs/utf8" "^1.1.0" + "@types/long" "^4.0.1" + "@types/node" ">=13.7.0" + long "^4.0.0" + +ps-tree@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" + integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== + dependencies: + event-stream "=3.3.4" + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== + dependencies: + resolve "^1.1.6" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +resolve@^1.1.6: + version "1.22.1" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +rpc-websockets@^7.5.0: + version "7.5.0" + resolved "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.5.0.tgz#bbeb87572e66703ff151e50af1658f98098e2748" + integrity sha512-9tIRi1uZGy7YmDjErf1Ax3wtqdSSLIlnmL5OtOzgd5eqPKbsPpwDP5whUDO2LQay3Xp0CcHlcNSGzacNRluBaQ== + dependencies: + "@babel/runtime" "^7.17.2" + eventemitter3 "^4.0.7" + uuid "^8.3.2" + ws "^8.5.0" + optionalDependencies: + bufferutil "^4.0.1" + utf-8-validate "^5.0.2" + +rxjs@^7.1.0: + version "7.5.6" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc" + integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw== + dependencies: + tslib "^2.1.0" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +serialize-javascript@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + dependencies: + randombytes "^2.1.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shelljs@^0.8.5: + version "0.8.5" + resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" + integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +shx@^0.3.4: + version "0.3.4" + resolved "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz#74289230b4b663979167f94e1935901406e40f02" + integrity sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g== + dependencies: + minimist "^1.2.3" + shelljs "^0.8.5" + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +split@0.3: + version "0.3.3" + resolved "https://registry.npmjs.org/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== + dependencies: + through "2" + +start-server-and-test@^1.14.0: + version "1.14.0" + resolved "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-1.14.0.tgz#c57f04f73eac15dd51733b551d775b40837fdde3" + integrity sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw== + dependencies: + bluebird "3.7.2" + check-more-types "2.24.0" + debug "4.3.2" + execa "5.1.1" + lazy-ass "1.6.0" + ps-tree "1.2.0" + wait-on "6.0.0" + +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== + dependencies: + duplexer "~0.1.1" + +string-width@^4.1.0, string-width@^4.2.0: + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + 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" + +string.prototype.trimend@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string.prototype.trimstart@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +superstruct@^0.14.2: + version "0.14.2" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" + integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ== + +superstruct@^0.15.2: + version "0.15.5" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.15.5.tgz#0f0a8d3ce31313f0d84c6096cd4fa1bfdedc9dab" + integrity sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ== + +supports-color@8.1.1: + version "8.1.1" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +text-encoding-utf-8@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13" + integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg== + +through@2, "through@>=2.2.7 <3", through@~2.3, through@~2.3.1: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toml@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" + integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +ts-node@^10.7.0: + version "10.9.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" + integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +tslib@2.3.1: + version "2.3.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + +tslib@^2.0.3, tslib@^2.1.0: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + +typescript@^4.6.3: + version "4.8.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88" + integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + 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" + +utf-8-validate@^5.0.2: + version "5.0.9" + resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz#ba16a822fbeedff1a58918f2a6a6b36387493ea3" + integrity sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q== + dependencies: + node-gyp-build "^4.3.0" + +util@^0.12.0: + version "0.12.4" + resolved "https://registry.npmjs.org/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + safe-buffer "^5.1.2" + which-typed-array "^1.1.2" + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +wait-on@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/wait-on/-/wait-on-6.0.0.tgz#7e9bf8e3d7fe2daecbb7a570ac8ca41e9311c7e7" + integrity sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw== + dependencies: + axios "^0.21.1" + joi "^17.4.0" + lodash "^4.17.21" + minimist "^1.2.5" + rxjs "^7.1.0" + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + 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" + +which-typed-array@^1.1.2: + version "1.1.8" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f" + integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.9" + +which@2.0.2, which@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +workerpool@6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" + integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@^7.4.5: + version "7.5.9" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +ws@^8.5.0: + version "8.8.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" + integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yargs-parser@20.2.4: + version "20.2.4" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" + integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-unparser@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" + integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== + dependencies: + camelcase "^6.0.0" + decamelize "^4.0.0" + flat "^5.0.2" + is-plain-obj "^2.1.0" + +yargs@16.2.0: + version "16.2.0" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/examples/clients/feed-walkthrough/LICENSE b/javascript/feed-walkthrough/LICENSE similarity index 100% rename from examples/clients/feed-walkthrough/LICENSE rename to javascript/feed-walkthrough/LICENSE diff --git a/examples/clients/feed-walkthrough/README.md b/javascript/feed-walkthrough/README.md similarity index 100% rename from examples/clients/feed-walkthrough/README.md rename to javascript/feed-walkthrough/README.md diff --git a/examples/clients/feed-walkthrough/esbuild.js b/javascript/feed-walkthrough/esbuild.js similarity index 100% rename from examples/clients/feed-walkthrough/esbuild.js rename to javascript/feed-walkthrough/esbuild.js diff --git a/examples/clients/feed-walkthrough/package.json b/javascript/feed-walkthrough/package.json similarity index 81% rename from examples/clients/feed-walkthrough/package.json rename to javascript/feed-walkthrough/package.json index fb6e754..f8b1c59 100644 --- a/examples/clients/feed-walkthrough/package.json +++ b/javascript/feed-walkthrough/package.json @@ -7,7 +7,7 @@ "repository": { "type": "git", "url": "https://github.com/switchboard-xyz/switchboard-v2", - "directory": "packages/feed-walkthrough" + "directory": "javascript/feed-walkthrough" }, "homepage": "https://docs.switchboard.xyz", "main": "dist/main.js", @@ -21,14 +21,18 @@ "@solana/spl-token-v2": "npm:@solana/spl-token@^0.2.0", "@solana/web3.js": "^1.50.1", "@switchboard-xyz/common": "^2.0.0", - "@switchboard-xyz/switchboard-v2": "^0.0.135", + "@switchboard-xyz/switchboard-v2": "^0.0.136", "chalk": "^4.1.2", "dotenv": "^16.0.1", "readline-sync": "^1.4.10" }, "devDependencies": { + "@types/node": "^18.7.18", "@types/readline-sync": "^1.4.4", "esbuild-node-externals": "^1.4.1", - "estrella": "^1.4.1" + "estrella": "^1.4.1", + "rimraf": "^3.0.2", + "ts-node": "^10.9.1", + "typescript": "^4.8.3" } } diff --git a/examples/clients/feed-walkthrough/src/main.ts b/javascript/feed-walkthrough/src/main.ts similarity index 100% rename from examples/clients/feed-walkthrough/src/main.ts rename to javascript/feed-walkthrough/src/main.ts diff --git a/javascript/feed-walkthrough/tsconfig.json b/javascript/feed-walkthrough/tsconfig.json new file mode 100644 index 0000000..f223f4e --- /dev/null +++ b/javascript/feed-walkthrough/tsconfig.json @@ -0,0 +1,33 @@ +{ + "ts-node": { + // It is faster to skip typechecking. + // Remove if you want ts-node to do typechecking. + "transpileOnly": true, + "files": true, + "compilerOptions": { + // compilerOptions specified here will override those declared below, + // but *only* in ts-node. Useful if you want ts-node and tsc to use + // different options with a single tsconfig.json. + "module": "commonjs" + } + }, + "compilerOptions": { + "target": "ES2019", + "lib": ["es2019", "dom"], + "module": "es2022", + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "moduleResolution": "node", + "outDir": "dist", + "rootDir": "src", + "paths": { + "@switchboard-xyz/switchboard-v2": ["../solana.js"], + "@solana/spl-token": ["./node_modules/@solana/spl-token"] + } + }, + "include": ["src/**/*"], + "exclude": ["esbuild.js", "dist"], + "references": [{ "path": "../solana.js" }], + "files": ["src/main.ts"] +} diff --git a/javascript/feed-walkthrough/yarn.lock b/javascript/feed-walkthrough/yarn.lock new file mode 100644 index 0000000..1a83cdd --- /dev/null +++ b/javascript/feed-walkthrough/yarn.lock @@ -0,0 +1,2032 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259" + integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== + dependencies: + regenerator-runtime "^0.13.4" + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.0" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@noble/ed25519@^1.7.0": + version "1.7.1" + resolved "https://registry.npmjs.org/@noble/ed25519/-/ed25519-1.7.1.tgz#6899660f6fbb97798a6fbd227227c4589a454724" + integrity sha512-Rk4SkJFaXZiznFyC/t77Q0NKS4FL7TLJJsVG2V2oiEq3kJVeTdxysEe/yRWSpnWMe808XRDJ+VFh5pt/FN5plw== + +"@noble/hashes@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183" + integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA== + +"@noble/secp256k1@^1.6.3": + version "1.7.0" + resolved "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.0.tgz#d15357f7c227e751d90aa06b05a0e5cf993ba8c1" + integrity sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw== + +"@project-serum/anchor@^0.24.2": + version "0.24.2" + resolved "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.24.2.tgz#a3c52a99605c80735f446ca9b3a4885034731004" + integrity sha512-0/718g8/DnEuwAidUwh5wLYphUYXhUbiClkuRNhvNoa+1Y8a4g2tJyxoae+emV+PG/Gikd/QUBNMkIcimiIRTA== + dependencies: + "@project-serum/borsh" "^0.2.5" + "@solana/web3.js" "^1.36.0" + base64-js "^1.5.1" + bn.js "^5.1.2" + bs58 "^4.0.1" + buffer-layout "^1.2.2" + camelcase "^5.3.1" + cross-fetch "^3.1.5" + crypto-hash "^1.3.0" + eventemitter3 "^4.0.7" + js-sha256 "^0.9.0" + pako "^2.0.3" + snake-case "^3.0.4" + toml "^3.0.0" + +"@project-serum/borsh@^0.2.5": + version "0.2.5" + resolved "https://registry.npmjs.org/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663" + integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q== + dependencies: + bn.js "^5.1.2" + buffer-layout "^1.2.0" + +"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" + integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== + +"@protobufjs/base64@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" + integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== + +"@protobufjs/codegen@^2.0.4": + version "2.0.4" + resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" + integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== + +"@protobufjs/eventemitter@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" + integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== + +"@protobufjs/fetch@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" + integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== + dependencies: + "@protobufjs/aspromise" "^1.1.1" + "@protobufjs/inquire" "^1.1.0" + +"@protobufjs/float@^1.0.2": + version "1.0.2" + resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" + integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== + +"@protobufjs/inquire@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" + integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== + +"@protobufjs/path@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" + integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== + +"@protobufjs/pool@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" + integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== + +"@protobufjs/utf8@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" + integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== + +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.0": + version "3.0.0" + resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" + integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@solana/buffer-layout-utils@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz#b45a6cab3293a2eb7597cceb474f229889d875ca" + integrity sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.32.0" + bigint-buffer "^1.1.5" + bignumber.js "^9.0.1" + +"@solana/buffer-layout@^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.0.tgz#75b1b11adc487234821c81dfae3119b73a5fd734" + integrity sha512-lR0EMP2HC3+Mxwd4YcnZb0smnaDw7Bl2IQWZiTevRH5ZZBZn6VRWn3/92E3qdU4SSImJkA6IDHawOHAnx/qUvQ== + dependencies: + buffer "~6.0.3" + +"@solana/spl-governance@^0.0.34": + version "0.0.34" + resolved "https://registry.npmjs.org/@solana/spl-governance/-/spl-governance-0.0.34.tgz#c61d81d356dbcee961bbc85e5d3538846fea57ad" + integrity sha512-tZppBiiVkUa5v+B/Ds+TqZ4yxR/vaIYLRxBk7x6R22dwk4/9SU87bVE60kRdDqTdMzqScFxIMdhaGl/fCX533A== + dependencies: + "@solana/web3.js" "^1.22.0" + bignumber.js "^9.0.1" + bn.js "^5.1.3" + borsh "^0.3.1" + bs58 "^4.0.1" + superstruct "^0.15.2" + +"@solana/spl-token-v2@npm:@solana/spl-token@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.2.0.tgz#329bb6babb5de0f9c40035ddb1657f01a8347acd" + integrity sha512-RWcn31OXtdqIxmkzQfB2R+WpsJOVS6rKuvpxJFjvik2LyODd+WN58ZP3Rpjpro03fscGAkzlFuP3r42doRJgyQ== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/buffer-layout-utils" "^0.2.0" + "@solana/web3.js" "^1.32.0" + start-server-and-test "^1.14.0" + +"@solana/web3.js@^1.22.0", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.44.3", "@solana/web3.js@^1.50.1": + version "1.62.0" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz#8fef9fd443217161ddc25e701f603222047bc520" + integrity sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA== + dependencies: + "@babel/runtime" "^7.12.5" + "@noble/ed25519" "^1.7.0" + "@noble/hashes" "^1.1.2" + "@noble/secp256k1" "^1.6.3" + "@solana/buffer-layout" "^4.0.0" + bigint-buffer "^1.1.5" + bn.js "^5.0.0" + borsh "^0.7.0" + bs58 "^4.0.1" + buffer "6.0.1" + fast-stable-stringify "^1.0.0" + jayson "^3.4.4" + node-fetch "2" + rpc-websockets "^7.5.0" + superstruct "^0.14.2" + +"@switchboard-xyz/common@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@switchboard-xyz/common/-/common-2.0.0.tgz#8c3551b3611c4a2348c46879c0ab2ea188a1f753" + integrity sha512-hC7J7NShGQHjWaCU7+w6tEtZ3KljxMIKJe5IaxPxD+cgdxhx58UMjngyevaCcle33aPyFZ/tbpm0tU2ZqzqZtQ== + dependencies: + big.js "^6.2.1" + bn.js "^5.2.1" + protobufjs "^6.11.3" + +"@switchboard-xyz/switchboard-v2@^0.0.136": + version "0.0.136" + resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.136.tgz#092f43e9c0e35f31033c124aa12ce46019af4eb5" + integrity sha512-vgaGqkDais2VJHfQawBSqrlKjvqtvOScHv7Q9bAlQtSieu7a3zMgH3rF4zAZAh/iphJLsm6bdMftUdcCMpVbKQ== + dependencies: + "@project-serum/anchor" "^0.24.2" + "@solana/spl-governance" "^0.0.34" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.44.3" + "@switchboard-xyz/common" "^2.0.0" + assert "^2.0.0" + big.js "^6.2.0" + bs58 "^5.0.0" + chan "^0.6.1" + crypto-js "^4.0.0" + glob "^8.0.3" + lodash "^4.17.21" + long "^4.0.0" + mocha "^9.1.1" + node-fetch "^3.2.6" + +"@tsconfig/node10@^1.0.7": + version "1.0.9" + resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" + integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" + integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== + +"@types/bn.js@^4.11.5": + version "4.11.6" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c" + integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== + dependencies: + "@types/node" "*" + +"@types/connect@^3.4.33": + version "3.4.35" + resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/long@^4.0.1": + version "4.0.2" + resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" + integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== + +"@types/node@*", "@types/node@>=13.7.0", "@types/node@^18.7.18": + version "18.7.18" + resolved "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz#633184f55c322e4fb08612307c274ee6d5ed3154" + integrity sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg== + +"@types/node@^12.12.54": + version "12.20.55" + resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + +"@types/readline-sync@^1.4.4": + version "1.4.4" + resolved "https://registry.npmjs.org/@types/readline-sync/-/readline-sync-1.4.4.tgz#8568292efe4ddd94d0ccee958b29cc3f4e0ea140" + integrity sha512-cFjVIoiamX7U6zkO2VPvXyTxbFDdiRo902IarJuPVxBhpDnXhwSaVE86ip+SCuyWBbEioKCkT4C88RNTxBM1Dw== + +"@types/ws@^7.4.4": + version "7.4.7" + resolved "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" + integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== + dependencies: + "@types/node" "*" + +"@ungap/promise-all-settled@1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" + integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== + +JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +acorn-walk@^8.1.1: + version "8.2.0" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^8.4.1: + version "8.8.0" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" + integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== + +ansi-colors@4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +assert@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== + dependencies: + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-x@^3.0.2: + version "3.0.9" + resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" + integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== + dependencies: + safe-buffer "^5.0.1" + +base-x@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz#d0e3b7753450c73f8ad2389b5c018a4af7b2224a" + integrity sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw== + +base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +big.js@^6.2.0, big.js@^6.2.1: + version "6.2.1" + resolved "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz#7205ce763efb17c2e41f26f121c420c6a7c2744f" + integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== + +bigint-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442" + integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA== + dependencies: + bindings "^1.3.0" + +bignumber.js@^9.0.1: + version "9.1.0" + resolved "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62" + integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.3.0: + version "1.5.0" + resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bluebird@3.7.2: + version "3.7.2" + resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^5.0.0, bn.js@^5.1.2, bn.js@^5.1.3, bn.js@^5.2.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +borsh@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.3.1.tgz#c31c3a149610e37913deada80e89073fb15cf55b" + integrity sha512-gJoSTnhwLxN/i2+15Y7uprU8h3CKI+Co4YKZKvrGYUy0FwHWM20x5Sx7eU8Xv4HQqV+7rb4r3P7K1cBIQe3q8A== + dependencies: + "@types/bn.js" "^4.11.5" + bn.js "^5.0.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +borsh@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a" + integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA== + dependencies: + bn.js "^5.2.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +bs58@^4.0.0, bs58@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" + integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== + dependencies: + base-x "^3.0.2" + +bs58@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz#865575b4d13c09ea2a84622df6c8cbeb54ffc279" + integrity sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ== + dependencies: + base-x "^4.0.0" + +buffer-layout@^1.2.0, buffer-layout@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/buffer-layout/-/buffer-layout-1.2.2.tgz#b9814e7c7235783085f9ca4966a0cfff112259d5" + integrity sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA== + +buffer@6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2" + integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@~6.0.3: + version "6.0.3" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +bufferutil@^4.0.1: + version "4.0.6" + resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" + integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== + dependencies: + node-gyp-build "^4.3.0" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +chalk@^4.1.0, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chan@^0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/chan/-/chan-0.6.1.tgz#ec0ad132e5bc62c27ef10ccbfc4d8dcd8ca00640" + integrity sha512-/TdBP2UhbBmw7qnqkzo9Mk4rzvwRv4dlNPXFerqWy90T8oBspKagJNZxrDbExKHhx9uXXHjo3f9mHgs9iKO3nQ== + +check-more-types@2.24.0: + version "2.24.0" + resolved "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== + +chokidar@3.5.3: + version "3.5.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + 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" + optionalDependencies: + fsevents "~2.3.2" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +commander@^2.20.3: + version "2.20.3" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-fetch@^3.1.5: + version "3.1.5" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" + integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== + dependencies: + node-fetch "2.6.7" + +cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-hash@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247" + integrity sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg== + +crypto-js@^4.0.0: + version "4.1.1" + resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" + integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== + +data-uri-to-buffer@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" + integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== + +debug@4.3.2: + version "4.3.2" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + +debug@4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + +decamelize@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" + integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== + +define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== + +diff@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" + integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dotenv@^16.0.1: + version "16.0.2" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz#0b0f8652c016a3858ef795024508cddc4bffc5bf" + integrity sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA== + +duplexer@~0.1.1: + version "0.1.2" + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +es-abstract@^1.19.0, es-abstract@^1.19.5, es-abstract@^1.20.0: + version "1.20.2" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3" + integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.2" + get-symbol-description "^1.0.0" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + is-callable "^1.2.4" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + string.prototype.trimend "^1.0.5" + string.prototype.trimstart "^1.0.5" + unbox-primitive "^1.0.2" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ== + dependencies: + es6-promise "^4.0.3" + +esbuild-node-externals@^1.4.1: + version "1.5.0" + resolved "https://registry.npmjs.org/esbuild-node-externals/-/esbuild-node-externals-1.5.0.tgz#56674e3d102efeb704e931574b1866cf1f79c7b8" + integrity sha512-9394Ne2t2Z243BWeNBRkXEYVMOVbQuzp7XSkASZTOQs0GSXDuno5aH5OmzEXc6GMuln5zJjpkZpgwUPW0uRKgw== + dependencies: + find-up "5.0.0" + tslib "2.3.1" + +esbuild@^0.11.0: + version "0.11.23" + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.11.23.tgz#c42534f632e165120671d64db67883634333b4b8" + integrity sha512-iaiZZ9vUF5wJV8ob1tl+5aJTrwDczlvGP0JoMmnpC2B0ppiMCu8n8gmy5ZTGl5bcG081XBVn+U+jP+mPFm5T5Q== + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +estrella@^1.4.1: + version "1.4.1" + resolved "https://registry.npmjs.org/estrella/-/estrella-1.4.1.tgz#6971a710a91d38abe3ced6f6ffa68c0c6e08d369" + integrity sha512-h8vlec27CFxw+8uYFtgbvLvohx0v+IssCwb/haTQnI+kO2WaL0ApSTWxg49LneAtqrZkrnYVwXQB2ZgyIIAImw== + dependencies: + esbuild "^0.11.0" + optionalDependencies: + fsevents "~2.3.1" + +event-stream@=3.3.4: + version "3.3.4" + resolved "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +eventemitter3@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +execa@5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + 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" + +eyes@^0.1.8: + version "0.1.8" + resolved "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + integrity sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ== + +fast-stable-stringify@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" + integrity sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag== + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +follow-redirects@^1.14.0: + version "1.15.2" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +from@~0: + version "0.1.7" + resolved "https://registry.npmjs.org/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" + integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.1, fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@7.2.0: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^8.0.3: + version "8.0.3" + resolved "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" + integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +growl@1.10.5: + version "1.10.5" + resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: + version "1.2.6" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz#fd6170b0b8c7e2cc73de342ef8284a2202023c44" + integrity sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q== + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-nan@^1.2.1: + version "1.3.2" + resolved "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.3, is-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67" + integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isomorphic-ws@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" + integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== + +jayson@^3.4.4: + version "3.7.0" + resolved "https://registry.npmjs.org/jayson/-/jayson-3.7.0.tgz#b735b12d06d348639ae8230d7a1e2916cb078f25" + integrity sha512-tfy39KJMrrXJ+mFcMpxwBvFDetS8LAID93+rycFglIQM4kl3uNR3W4lBLE/FFhsoUCEox5Dt2adVpDm/XtebbQ== + dependencies: + "@types/connect" "^3.4.33" + "@types/node" "^12.12.54" + "@types/ws" "^7.4.4" + JSONStream "^1.3.5" + commander "^2.20.3" + delay "^5.0.0" + es6-promisify "^5.0.0" + eyes "^0.1.8" + isomorphic-ws "^4.0.1" + json-stringify-safe "^5.0.1" + lodash "^4.17.20" + uuid "^8.3.2" + ws "^7.4.5" + +joi@^17.4.0: + version "17.6.0" + resolved "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2" + integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.0" + "@sideway/pinpoint" "^2.0.0" + +js-sha256@^0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" + integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA== + +js-yaml@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +json-stringify-safe@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +lazy-ass@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +long@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" + integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimatch@4.2.1: + version "4.2.1" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz#40d9d511a46bdc4e563c22c3080cde9c0d8299b4" + integrity sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1: + version "5.1.0" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.5: + version "1.2.6" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +mocha@^9.1.1: + version "9.2.2" + resolved "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz#d70db46bdb93ca57402c809333e5a84977a88fb9" + integrity sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g== + dependencies: + "@ungap/promise-all-settled" "1.1.2" + ansi-colors "4.1.1" + browser-stdout "1.3.1" + chokidar "3.5.3" + debug "4.3.3" + diff "5.0.0" + escape-string-regexp "4.0.0" + find-up "5.0.0" + glob "7.2.0" + growl "1.10.5" + he "1.2.0" + js-yaml "4.1.0" + log-symbols "4.1.0" + minimatch "4.2.1" + ms "2.1.3" + nanoid "3.3.1" + serialize-javascript "6.0.0" + strip-json-comments "3.1.1" + supports-color "8.1.1" + which "2.0.2" + workerpool "6.2.0" + yargs "16.2.0" + yargs-parser "20.2.4" + yargs-unparser "2.0.0" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +nanoid@3.3.1: + version "3.3.1" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" + integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@2, node-fetch@2.6.7: + version "2.6.7" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^3.2.6: + version "3.2.10" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8" + integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-gyp-build@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" + integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +pako@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d" + integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" + integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== + dependencies: + through "~2.3" + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.3.1" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +protobufjs@^6.11.3: + version "6.11.3" + resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" + integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== + dependencies: + "@protobufjs/aspromise" "^1.1.2" + "@protobufjs/base64" "^1.1.2" + "@protobufjs/codegen" "^2.0.4" + "@protobufjs/eventemitter" "^1.1.0" + "@protobufjs/fetch" "^1.1.0" + "@protobufjs/float" "^1.0.2" + "@protobufjs/inquire" "^1.1.0" + "@protobufjs/path" "^1.1.2" + "@protobufjs/pool" "^1.1.0" + "@protobufjs/utf8" "^1.1.0" + "@types/long" "^4.0.1" + "@types/node" ">=13.7.0" + long "^4.0.0" + +ps-tree@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" + integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== + dependencies: + event-stream "=3.3.4" + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +readline-sync@^1.4.10: + version "1.4.10" + resolved "https://registry.npmjs.org/readline-sync/-/readline-sync-1.4.10.tgz#41df7fbb4b6312d673011594145705bf56d8873b" + integrity sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw== + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rpc-websockets@^7.5.0: + version "7.5.0" + resolved "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.5.0.tgz#bbeb87572e66703ff151e50af1658f98098e2748" + integrity sha512-9tIRi1uZGy7YmDjErf1Ax3wtqdSSLIlnmL5OtOzgd5eqPKbsPpwDP5whUDO2LQay3Xp0CcHlcNSGzacNRluBaQ== + dependencies: + "@babel/runtime" "^7.17.2" + eventemitter3 "^4.0.7" + uuid "^8.3.2" + ws "^8.5.0" + optionalDependencies: + bufferutil "^4.0.1" + utf-8-validate "^5.0.2" + +rxjs@^7.1.0: + version "7.5.6" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc" + integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw== + dependencies: + tslib "^2.1.0" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +serialize-javascript@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + dependencies: + randombytes "^2.1.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +split@0.3: + version "0.3.3" + resolved "https://registry.npmjs.org/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== + dependencies: + through "2" + +start-server-and-test@^1.14.0: + version "1.14.0" + resolved "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-1.14.0.tgz#c57f04f73eac15dd51733b551d775b40837fdde3" + integrity sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw== + dependencies: + bluebird "3.7.2" + check-more-types "2.24.0" + debug "4.3.2" + execa "5.1.1" + lazy-ass "1.6.0" + ps-tree "1.2.0" + wait-on "6.0.0" + +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== + dependencies: + duplexer "~0.1.1" + +string-width@^4.1.0, string-width@^4.2.0: + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + 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" + +string.prototype.trimend@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string.prototype.trimstart@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +superstruct@^0.14.2: + version "0.14.2" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" + integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ== + +superstruct@^0.15.2: + version "0.15.5" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.15.5.tgz#0f0a8d3ce31313f0d84c6096cd4fa1bfdedc9dab" + integrity sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ== + +supports-color@8.1.1: + version "8.1.1" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +text-encoding-utf-8@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13" + integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg== + +through@2, "through@>=2.2.7 <3", through@~2.3, through@~2.3.1: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toml@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" + integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +ts-node@^10.9.1: + version "10.9.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" + integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +tslib@2.3.1: + version "2.3.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + +tslib@^2.0.3, tslib@^2.1.0: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + +typescript@^4.8.3: + version "4.8.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88" + integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + 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" + +utf-8-validate@^5.0.2: + version "5.0.9" + resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz#ba16a822fbeedff1a58918f2a6a6b36387493ea3" + integrity sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q== + dependencies: + node-gyp-build "^4.3.0" + +util@^0.12.0: + version "0.12.4" + resolved "https://registry.npmjs.org/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + safe-buffer "^5.1.2" + which-typed-array "^1.1.2" + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +wait-on@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/wait-on/-/wait-on-6.0.0.tgz#7e9bf8e3d7fe2daecbb7a570ac8ca41e9311c7e7" + integrity sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw== + dependencies: + axios "^0.21.1" + joi "^17.4.0" + lodash "^4.17.21" + minimist "^1.2.5" + rxjs "^7.1.0" + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + 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" + +which-typed-array@^1.1.2: + version "1.1.8" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f" + integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.9" + +which@2.0.2, which@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +workerpool@6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" + integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@^7.4.5: + version "7.5.9" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +ws@^8.5.0: + version "8.8.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" + integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yargs-parser@20.2.4: + version "20.2.4" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" + integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-unparser@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" + integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== + dependencies: + camelcase "^6.0.0" + decamelize "^4.0.0" + flat "^5.0.2" + is-plain-obj "^2.1.0" + +yargs@16.2.0: + version "16.2.0" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/examples/clients/lease-observer/.gitignore b/javascript/lease-observer/.gitignore similarity index 100% rename from examples/clients/lease-observer/.gitignore rename to javascript/lease-observer/.gitignore diff --git a/examples/clients/lease-observer/Dockerfile b/javascript/lease-observer/Dockerfile similarity index 100% rename from examples/clients/lease-observer/Dockerfile rename to javascript/lease-observer/Dockerfile diff --git a/examples/clients/lease-observer/LICENSE b/javascript/lease-observer/LICENSE similarity index 100% rename from examples/clients/lease-observer/LICENSE rename to javascript/lease-observer/LICENSE diff --git a/javascript/lease-observer/README.md b/javascript/lease-observer/README.md new file mode 100644 index 0000000..94dcd11 --- /dev/null +++ b/javascript/lease-observer/README.md @@ -0,0 +1,15 @@ +# Lease Observer + +Get PagerDuty alerts when a feed's lease is below `$PAGE_THRESHOLD` + +## Install + +``` +yarn install +``` + +## Start + +``` +yarn start +``` diff --git a/examples/clients/lease-observer/docker-compose.yml b/javascript/lease-observer/docker-compose.yml similarity index 100% rename from examples/clients/lease-observer/docker-compose.yml rename to javascript/lease-observer/docker-compose.yml diff --git a/examples/clients/lease-observer/esbuild.js b/javascript/lease-observer/esbuild.js similarity index 100% rename from examples/clients/lease-observer/esbuild.js rename to javascript/lease-observer/esbuild.js diff --git a/examples/clients/lease-observer/package.json b/javascript/lease-observer/package.json similarity index 73% rename from examples/clients/lease-observer/package.json rename to javascript/lease-observer/package.json index ddac85e..b20f8c0 100644 --- a/examples/clients/lease-observer/package.json +++ b/javascript/lease-observer/package.json @@ -7,27 +7,27 @@ "repository": { "type": "git", "url": "https://github.com/switchboard-xyz/switchboard-v2", - "directory": "packages/lease-observer" + "directory": "javascript/lease-observer" }, "scripts": { - "start": "ts-node main.ts", + "start": "ts-node src/main.ts", "build": "rimraf lib && ./esbuild.js", "test": "echo \"No test script for @switchboard-xyz/lease-observer\" && exit 0" }, "dependencies": { "@project-serum/anchor": "^0.24.2", "@solana/web3.js": "1.33.0", - "@switchboard-xyz/sbv2-utils": "^0.1.43", - "@switchboard-xyz/switchboard-v2": "^0.0.135", + "@switchboard-xyz/sbv2-utils": "^0.1.49", + "@switchboard-xyz/switchboard-v2": "^0.0.136", "dotenv": "^16.0.1", "node-pagerduty": "^1.3.6" }, "devDependencies": { - "@types/node": "^17.0.45", + "@types/node": "^18.7.18", "esbuild-node-externals": "^1.4.1", "estrella": "^1.4.1", "rimraf": "^3.0.2", - "ts-node": "^10.7.0", - "typescript": "^4.2.4" + "ts-node": "^10.9.1", + "typescript": "^4.8.3" } } diff --git a/examples/clients/lease-observer/src/index.d.ts b/javascript/lease-observer/src/index.d.ts similarity index 100% rename from examples/clients/lease-observer/src/index.d.ts rename to javascript/lease-observer/src/index.d.ts diff --git a/examples/clients/lease-observer/src/main.ts b/javascript/lease-observer/src/main.ts similarity index 84% rename from examples/clients/lease-observer/src/main.ts rename to javascript/lease-observer/src/main.ts index 88337ba..b5dfb6a 100644 --- a/examples/clients/lease-observer/src/main.ts +++ b/javascript/lease-observer/src/main.ts @@ -7,15 +7,24 @@ import { Pager } from "./pager"; dotenv.config(); async function main() { + if (!process.env.CLUSTER) { + throw new Error(`Must provide $CLUSTER`); + } const cluster = process.env.CLUSTER; if (cluster !== "devnet" && cluster !== "mainnet-beta") { throw new Error(`Invalid cluster ${cluster}`); } + if (!process.env.RPC_URL) { + throw new Error(`Must provide $RPC_URL`); + } const program = await sbv2.loadSwitchboardProgram( cluster, - new Connection(process.env.RPC_URL) + new Connection(process.env.RPC_URL ?? "") ); - const aggregatorPubkey = new PublicKey(process.env.AGGREGATOR_KEY); + if (!process.env.AGGREGATOR_KEY) { + throw new Error(`Must provide $AGGREGATOR_KEY`); + } + const aggregatorPubkey = new PublicKey(process.env.AGGREGATOR_KEY ?? ""); const aggregatorAccount = new sbv2.AggregatorAccount({ program, publicKey: aggregatorPubkey, diff --git a/examples/clients/lease-observer/src/pager.ts b/javascript/lease-observer/src/pager.ts similarity index 100% rename from examples/clients/lease-observer/src/pager.ts rename to javascript/lease-observer/src/pager.ts diff --git a/examples/clients/lease-observer/tsconfig.json b/javascript/lease-observer/tsconfig.json similarity index 55% rename from examples/clients/lease-observer/tsconfig.json rename to javascript/lease-observer/tsconfig.json index c64bf24..3032420 100644 --- a/examples/clients/lease-observer/tsconfig.json +++ b/javascript/lease-observer/tsconfig.json @@ -1,5 +1,4 @@ { - "extends": "../../../tsconfig.json", "ts-node": { "compilerOptions": { "module": "commonjs", @@ -15,23 +14,24 @@ } }, "compilerOptions": { + "target": "ES2019", + "lib": ["es2019", "dom"], + "module": "es2022", + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "moduleResolution": "node", "outDir": "dist", "rootDir": "src", "strict": false, "paths": { - "@switchboard-xyz/switchboard-v2": ["../../../libraries/ts"], - "@switchboard-xyz/sbv2-utils": ["../../../libraries/sbv2-utils"], - "@solana/spl-token": [ - "../../../node_modules/@solana/spl-token", - "./node_modules/@solana/spl-token" - ] + "@switchboard-xyz/switchboard-v2": ["../solana.js"], + "@switchboard-xyz/sbv2-utils": ["../sbv2-utils"], + "@solana/spl-token": ["./node_modules/@solana/spl-token"] } }, "include": ["src/**/*"], "exclude": ["node_modules", "dist"], - "references": [ - { "path": "../../../libraries/ts" }, - { "path": "../../../libraries/sbv2-utils" } - ], + "references": [{ "path": "../solana.js" }, { "path": "../sbv2-utils" }], "files": ["src/main.ts"] } diff --git a/javascript/lease-observer/yarn.lock b/javascript/lease-observer/yarn.lock new file mode 100644 index 0000000..047afd3 --- /dev/null +++ b/javascript/lease-observer/yarn.lock @@ -0,0 +1,5211 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/helper-validator-identifier@^7.18.6": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/highlight@^7.10.4": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/runtime@^7.10.5", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2", "@babel/runtime@^7.3.1": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259" + integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== + dependencies: + regenerator-runtime "^0.13.4" + +"@colors/colors@1.5.0": + version "1.5.0" + resolved "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" + integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + 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" + +"@ethersproject/bytes@^5.7.0": + version "5.7.0" + resolved "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d" + integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== + dependencies: + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/logger@^5.7.0": + version "5.7.0" + resolved "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892" + integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== + +"@ethersproject/sha2@^5.5.0": + version "5.7.0" + resolved "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb" + integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + hash.js "1.1.7" + +"@gar/promisify@^1.0.1": + version "1.1.3" + resolved "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" + integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== + +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + version "1.2.1" + resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@isaacs/string-locale-compare@^1.0.1", "@isaacs/string-locale-compare@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz#291c227e93fd407a96ecd59879a35809120e432b" + integrity sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ== + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.0" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@noble/ed25519@^1.7.0": + version "1.7.1" + resolved "https://registry.npmjs.org/@noble/ed25519/-/ed25519-1.7.1.tgz#6899660f6fbb97798a6fbd227227c4589a454724" + integrity sha512-Rk4SkJFaXZiznFyC/t77Q0NKS4FL7TLJJsVG2V2oiEq3kJVeTdxysEe/yRWSpnWMe808XRDJ+VFh5pt/FN5plw== + +"@noble/hashes@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183" + integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA== + +"@noble/secp256k1@^1.6.3": + version "1.7.0" + resolved "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.0.tgz#d15357f7c227e751d90aa06b05a0e5cf993ba8c1" + integrity sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw== + +"@npmcli/arborist@^2.3.0", "@npmcli/arborist@^2.5.0", "@npmcli/arborist@^2.9.0": + version "2.10.0" + resolved "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.10.0.tgz#424c2d73a7ae59c960b0cc7f74fed043e4316c2c" + integrity sha512-CLnD+zXG9oijEEzViimz8fbOoFVb7hoypiaf7p6giJhvYtrxLAyY3cZAMPIFQvsG731+02eMDp3LqVBNo7BaZA== + dependencies: + "@isaacs/string-locale-compare" "^1.0.1" + "@npmcli/installed-package-contents" "^1.0.7" + "@npmcli/map-workspaces" "^1.0.2" + "@npmcli/metavuln-calculator" "^1.1.0" + "@npmcli/move-file" "^1.1.0" + "@npmcli/name-from-folder" "^1.0.1" + "@npmcli/node-gyp" "^1.0.1" + "@npmcli/package-json" "^1.0.1" + "@npmcli/run-script" "^1.8.2" + bin-links "^2.2.1" + cacache "^15.0.3" + common-ancestor-path "^1.0.1" + json-parse-even-better-errors "^2.3.1" + json-stringify-nice "^1.1.4" + mkdirp "^1.0.4" + mkdirp-infer-owner "^2.0.0" + npm-install-checks "^4.0.0" + npm-package-arg "^8.1.5" + npm-pick-manifest "^6.1.0" + npm-registry-fetch "^11.0.0" + pacote "^11.3.5" + parse-conflict-json "^1.1.1" + proc-log "^1.0.0" + promise-all-reject-late "^1.0.0" + promise-call-limit "^1.0.1" + read-package-json-fast "^2.0.2" + readdir-scoped-modules "^1.1.0" + rimraf "^3.0.2" + semver "^7.3.5" + ssri "^8.0.1" + treeverse "^1.0.4" + walk-up-path "^1.0.0" + +"@npmcli/ci-detect@^1.2.0", "@npmcli/ci-detect@^1.3.0": + version "1.4.0" + resolved "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-1.4.0.tgz#18478bbaa900c37bfbd8a2006a6262c62e8b0fe1" + integrity sha512-3BGrt6FLjqM6br5AhWRKTr3u5GIVkjRYeAFrMp3HjnfICrg4xOrVRwFavKT6tsp++bq5dluL5t8ME/Nha/6c1Q== + +"@npmcli/config@^2.3.0": + version "2.4.0" + resolved "https://registry.npmjs.org/@npmcli/config/-/config-2.4.0.tgz#1447b0274f9502871dabd3ab1d8302472d515b1f" + integrity sha512-fwxu/zaZnvBJohXM3igzqa3P1IVYWi5N343XcKvKkJbAx+rTqegS5tAul4NLiMPQh6WoS5a4er6oo/ieUx1f4g== + dependencies: + ini "^2.0.0" + mkdirp-infer-owner "^2.0.0" + nopt "^5.0.0" + semver "^7.3.4" + walk-up-path "^1.0.0" + +"@npmcli/disparity-colors@^1.0.1": + version "1.0.1" + resolved "https://registry.npmjs.org/@npmcli/disparity-colors/-/disparity-colors-1.0.1.tgz#b23c864c9658f9f0318d5aa6d17986619989535c" + integrity sha512-kQ1aCTTU45mPXN+pdAaRxlxr3OunkyztjbbxDY/aIcPS5CnCUrx+1+NvA6pTcYR7wmLZe37+Mi5v3nfbwPxq3A== + dependencies: + ansi-styles "^4.3.0" + +"@npmcli/fs@^1.0.0": + version "1.1.1" + resolved "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257" + integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ== + dependencies: + "@gar/promisify" "^1.0.1" + semver "^7.3.5" + +"@npmcli/git@^2.0.7", "@npmcli/git@^2.1.0": + version "2.1.0" + resolved "https://registry.npmjs.org/@npmcli/git/-/git-2.1.0.tgz#2fbd77e147530247d37f325930d457b3ebe894f6" + integrity sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw== + dependencies: + "@npmcli/promise-spawn" "^1.3.2" + lru-cache "^6.0.0" + mkdirp "^1.0.4" + npm-pick-manifest "^6.1.1" + promise-inflight "^1.0.1" + promise-retry "^2.0.1" + semver "^7.3.5" + which "^2.0.2" + +"@npmcli/installed-package-contents@^1.0.6", "@npmcli/installed-package-contents@^1.0.7": + version "1.0.7" + resolved "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz#ab7408c6147911b970a8abe261ce512232a3f4fa" + integrity sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw== + dependencies: + npm-bundled "^1.1.1" + npm-normalize-package-bin "^1.0.1" + +"@npmcli/map-workspaces@^1.0.2", "@npmcli/map-workspaces@^1.0.4": + version "1.0.4" + resolved "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-1.0.4.tgz#915708b55afa25e20bc2c14a766c124c2c5d4cab" + integrity sha512-wVR8QxhyXsFcD/cORtJwGQodeeaDf0OxcHie8ema4VgFeqwYkFsDPnSrIRSytX8xR6nKPAH89WnwTcaU608b/Q== + dependencies: + "@npmcli/name-from-folder" "^1.0.1" + glob "^7.1.6" + minimatch "^3.0.4" + read-package-json-fast "^2.0.1" + +"@npmcli/metavuln-calculator@^1.1.0": + version "1.1.1" + resolved "https://registry.npmjs.org/@npmcli/metavuln-calculator/-/metavuln-calculator-1.1.1.tgz#2f95ff3c6d88b366dd70de1c3f304267c631b458" + integrity sha512-9xe+ZZ1iGVaUovBVFI9h3qW+UuECUzhvZPxK9RaEA2mjU26o5D0JloGYWwLYvQELJNmBdQB6rrpuN8jni6LwzQ== + dependencies: + cacache "^15.0.5" + pacote "^11.1.11" + semver "^7.3.2" + +"@npmcli/move-file@^1.0.1", "@npmcli/move-file@^1.1.0": + version "1.1.2" + resolved "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674" + integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg== + dependencies: + mkdirp "^1.0.4" + rimraf "^3.0.2" + +"@npmcli/name-from-folder@^1.0.1": + version "1.0.1" + resolved "https://registry.npmjs.org/@npmcli/name-from-folder/-/name-from-folder-1.0.1.tgz#77ecd0a4fcb772ba6fe927e2e2e155fbec2e6b1a" + integrity sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA== + +"@npmcli/node-gyp@^1.0.1", "@npmcli/node-gyp@^1.0.2": + version "1.0.3" + resolved "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-1.0.3.tgz#a912e637418ffc5f2db375e93b85837691a43a33" + integrity sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA== + +"@npmcli/package-json@^1.0.1": + version "1.0.1" + resolved "https://registry.npmjs.org/@npmcli/package-json/-/package-json-1.0.1.tgz#1ed42f00febe5293c3502fd0ef785647355f6e89" + integrity sha512-y6jnu76E9C23osz8gEMBayZmaZ69vFOIk8vR1FJL/wbEJ54+9aVG9rLTjQKSXfgYZEr50nw1txBBFfBZZe+bYg== + dependencies: + json-parse-even-better-errors "^2.3.1" + +"@npmcli/promise-spawn@^1.2.0", "@npmcli/promise-spawn@^1.3.2": + version "1.3.2" + resolved "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz#42d4e56a8e9274fba180dabc0aea6e38f29274f5" + integrity sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg== + dependencies: + infer-owner "^1.0.4" + +"@npmcli/run-script@^1.8.2", "@npmcli/run-script@^1.8.3", "@npmcli/run-script@^1.8.4", "@npmcli/run-script@^1.8.6": + version "1.8.6" + resolved "https://registry.npmjs.org/@npmcli/run-script/-/run-script-1.8.6.tgz#18314802a6660b0d4baa4c3afe7f1ad39d8c28b7" + integrity sha512-e42bVZnC6VluBZBAFEr3YrdqSspG3bgilyg4nSLBJ7TRGNCzxHa92XAHxQBLYg0BmgwO4b2mf3h/l5EkEWRn3g== + dependencies: + "@npmcli/node-gyp" "^1.0.2" + "@npmcli/promise-spawn" "^1.3.2" + node-gyp "^7.1.0" + read-package-json-fast "^2.0.1" + +"@orca-so/aquafarm@^0.0.12": + version "0.0.12" + resolved "https://registry.npmjs.org/@orca-so/aquafarm/-/aquafarm-0.0.12.tgz#255df50e9d8a408cebf600ee3507ff650484e94c" + integrity sha512-4vEkxeI5A5NHR9wre7Dtp9MYPCnke4v2PkaIv7933S490PErCYeqrlDPIEBTAKYWJpHFz5jR+h0bPFbmdMs3kw== + dependencies: + "@solana/spl-token" "^0.1.6" + "@solana/web3.js" "^1.20.0" + "@types/bn.js" "^5.1.0" + bn.js "^5.2.0" + buffer-layout "^1.2.1" + decimal.js "^10.3.0" + dotenv "^10.0.0" + eslint "^7.28.0" + mz "^2.7.0" + prompts "^2.4.1" + typescript "^4.3.2" + yargs "^17.0.1" + +"@orca-so/sdk@^1.2.24": + version "1.2.25" + resolved "https://registry.npmjs.org/@orca-so/sdk/-/sdk-1.2.25.tgz#3c00acb032567067a6d79528bb587b7057e183e8" + integrity sha512-9m4F9GgqNpK69IJ9SBg1//L471AO2X3cvG54jtM24sMIvMNiLiebdIrODLKIHyHcMouspK1qPTN20L64ymu8Bw== + dependencies: + "@orca-so/aquafarm" "^0.0.12" + "@orca-so/stablecurve" "^1.0.5" + "@solana/spl-token" "^0.1.5" + "@solana/spl-token-swap" "^0.1.2" + "@solana/web3.js" "^1.24.1" + decimal.js "^10.3.1" + +"@orca-so/stablecurve@^1.0.5": + version "1.0.6" + resolved "https://registry.npmjs.org/@orca-so/stablecurve/-/stablecurve-1.0.6.tgz#bff0d4c701e4361196ffb0fc641904e6d17df295" + integrity sha512-uZD1jVvOBxyuij4a5C2QT7Mv4m9lMABY/MvAz1xHnK+iJ5pkmSFdYEWzQZUrf8ElCRTYSN9yk7Kb18UmGZnT5g== + dependencies: + "@solana/spl-token" "^0.0.13" + bn.js "^5.1.3" + decimal.js "^10.2.1" + +"@project-serum/anchor@^0.24.2": + version "0.24.2" + resolved "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.24.2.tgz#a3c52a99605c80735f446ca9b3a4885034731004" + integrity sha512-0/718g8/DnEuwAidUwh5wLYphUYXhUbiClkuRNhvNoa+1Y8a4g2tJyxoae+emV+PG/Gikd/QUBNMkIcimiIRTA== + dependencies: + "@project-serum/borsh" "^0.2.5" + "@solana/web3.js" "^1.36.0" + base64-js "^1.5.1" + bn.js "^5.1.2" + bs58 "^4.0.1" + buffer-layout "^1.2.2" + camelcase "^5.3.1" + cross-fetch "^3.1.5" + crypto-hash "^1.3.0" + eventemitter3 "^4.0.7" + js-sha256 "^0.9.0" + pako "^2.0.3" + snake-case "^3.0.4" + toml "^3.0.0" + +"@project-serum/borsh@^0.2.5": + version "0.2.5" + resolved "https://registry.npmjs.org/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663" + integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q== + dependencies: + bn.js "^5.1.2" + buffer-layout "^1.2.0" + +"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" + integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== + +"@protobufjs/base64@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" + integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== + +"@protobufjs/codegen@^2.0.4": + version "2.0.4" + resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" + integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== + +"@protobufjs/eventemitter@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" + integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== + +"@protobufjs/fetch@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" + integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== + dependencies: + "@protobufjs/aspromise" "^1.1.1" + "@protobufjs/inquire" "^1.1.0" + +"@protobufjs/float@^1.0.2": + version "1.0.2" + resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" + integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== + +"@protobufjs/inquire@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" + integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== + +"@protobufjs/path@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" + integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== + +"@protobufjs/pool@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" + integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== + +"@protobufjs/utf8@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" + integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== + +"@saberhq/option-utils@^1.14.6": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/option-utils/-/option-utils-1.14.6.tgz#c48e4afb9d9a030e2b676beeeb2481c6529d3eb9" + integrity sha512-85IMZiYzSf3H7/ZYty+I5JW6EYGJQ8lmRri+wVuhmLtDX+E/iqEBeoS+ns56ZcyfRGl7nsuUriWnJamNz9ekBQ== + dependencies: + tslib "^2.4.0" + +"@saberhq/solana-contrib@^1.14.6": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/solana-contrib/-/solana-contrib-1.14.6.tgz#3fe36ace42b94f5c3f75a60b6b32d010d8b21f93" + integrity sha512-lPnzWgAk+xAYtssvLUTc6e6r0czJaMAqCZ2p7I7DsEFBpWgEzj6Tw7rYMXk1pmwgxg48vGWzBZK/aw+m7ccn1A== + dependencies: + "@saberhq/option-utils" "^1.14.6" + "@solana/buffer-layout" "^4.0.0" + "@types/promise-retry" "^1.1.3" + "@types/retry" "^0.12.2" + promise-retry "^2.0.1" + retry "^0.13.1" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@saberhq/token-utils@^1.13.32": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/token-utils/-/token-utils-1.14.6.tgz#6d36c053f61834405ccf395b958a258eba9ea45b" + integrity sha512-jfGUS+tb+WVJUMAOfXdYICzTWhaKRcaZN5km9os7cRHAAXTYNZTgFFRThuiuobBAe30SpnJB052rAQE0x0c2iA== + dependencies: + "@saberhq/solana-contrib" "^1.14.6" + "@solana/buffer-layout" "^4.0.0" + "@solana/spl-token" "^0.1.8" + "@ubeswap/token-math" "^5.2.0" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.0": + version "3.0.0" + resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" + integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@solana/buffer-layout-utils@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz#b45a6cab3293a2eb7597cceb474f229889d875ca" + integrity sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.32.0" + bigint-buffer "^1.1.5" + bignumber.js "^9.0.1" + +"@solana/buffer-layout@^3.0.0": + version "3.0.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-3.0.0.tgz#b9353caeb9a1589cb77a1b145bcb1a9a93114326" + integrity sha512-MVdgAKKL39tEs0l8je0hKaXLQFb7Rdfb0Xg2LjFZd8Lfdazkg6xiS98uAZrEKvaoF3i4M95ei9RydkGIDMeo3w== + dependencies: + buffer "~6.0.3" + +"@solana/buffer-layout@^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.0.tgz#75b1b11adc487234821c81dfae3119b73a5fd734" + integrity sha512-lR0EMP2HC3+Mxwd4YcnZb0smnaDw7Bl2IQWZiTevRH5ZZBZn6VRWn3/92E3qdU4SSImJkA6IDHawOHAnx/qUvQ== + dependencies: + buffer "~6.0.3" + +"@solana/spl-governance@^0.0.34": + version "0.0.34" + resolved "https://registry.npmjs.org/@solana/spl-governance/-/spl-governance-0.0.34.tgz#c61d81d356dbcee961bbc85e5d3538846fea57ad" + integrity sha512-tZppBiiVkUa5v+B/Ds+TqZ4yxR/vaIYLRxBk7x6R22dwk4/9SU87bVE60kRdDqTdMzqScFxIMdhaGl/fCX533A== + dependencies: + "@solana/web3.js" "^1.22.0" + bignumber.js "^9.0.1" + bn.js "^5.1.3" + borsh "^0.3.1" + bs58 "^4.0.1" + superstruct "^0.15.2" + +"@solana/spl-token-swap@^0.1.2": + version "0.1.4" + resolved "https://registry.npmjs.org/@solana/spl-token-swap/-/spl-token-swap-0.1.4.tgz#f776d97c37987c85ad9374afe5c91be2069fb7b4" + integrity sha512-q0vHo1m6UwqXTpKM4sk/gnPk8BopPJ+qx+qXkx0pMGiBep/66MAj7Drx186xStyqEXVuXtvgPEPIEREVJDKt/w== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.42.0" + bn.js "^5.1.3" + +"@solana/spl-token-v2@npm:@solana/spl-token@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.2.0.tgz#329bb6babb5de0f9c40035ddb1657f01a8347acd" + integrity sha512-RWcn31OXtdqIxmkzQfB2R+WpsJOVS6rKuvpxJFjvik2LyODd+WN58ZP3Rpjpro03fscGAkzlFuP3r42doRJgyQ== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/buffer-layout-utils" "^0.2.0" + "@solana/web3.js" "^1.32.0" + start-server-and-test "^1.14.0" + +"@solana/spl-token@^0.0.13": + version "0.0.13" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.0.13.tgz#5e0b235b1f8b34643280401dbfddeb34d13d1acd" + integrity sha512-WT8M9V/hxURR5jLbhr3zgwVsgcY6m8UhHtK045w7o+jx8FJ9MKARkj387WBFU7mKiFq0k8jw/8YL7XmnIUuH8Q== + dependencies: + "@babel/runtime" "^7.10.5" + "@solana/web3.js" "^0.86.1" + bn.js "^5.0.0" + buffer-layout "^1.2.0" + dotenv "8.2.0" + mkdirp "1.0.4" + +"@solana/spl-token@^0.1.5", "@solana/spl-token@^0.1.6", "@solana/spl-token@^0.1.8": + version "0.1.8" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.1.8.tgz#f06e746341ef8d04165e21fc7f555492a2a0faa6" + integrity sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ== + dependencies: + "@babel/runtime" "^7.10.5" + "@solana/web3.js" "^1.21.0" + bn.js "^5.1.0" + buffer "6.0.3" + buffer-layout "^1.2.0" + dotenv "10.0.0" + +"@solana/web3.js@1.33.0": + version "1.33.0" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.33.0.tgz#3b8c0b4cd259ffe8764937f1001f79958c5d9533" + integrity sha512-R53wvQQsUKCCJ9UmOfDlxCwC94jzjmpjr6wT/Xf1uFavZblSLAtzLaF4vbGIS465lk3mW6oJMtASd8cqSnr8Mw== + dependencies: + "@babel/runtime" "^7.12.5" + "@ethersproject/sha2" "^5.5.0" + "@solana/buffer-layout" "^3.0.0" + bn.js "^5.0.0" + borsh "^0.4.0" + bs58 "^4.0.1" + buffer "6.0.1" + cross-fetch "^3.1.4" + jayson "^3.4.4" + js-sha3 "^0.8.0" + rpc-websockets "^7.4.2" + secp256k1 "^4.0.2" + superstruct "^0.14.2" + tweetnacl "^1.0.0" + +"@solana/web3.js@^0.86.1": + version "0.86.4" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-0.86.4.tgz#69216d3928ca4727c25a1ea96c405e897156ac3b" + integrity sha512-FpabDmdyxBN5aHIVUWc9Q6pXJFWiLRm/xeyxFg9O9ICHjiUkd38omds7G0CAmykIccG7zaMziwtkXp+0KvQOhA== + dependencies: + "@babel/runtime" "^7.3.1" + bn.js "^5.0.0" + bs58 "^4.0.1" + buffer "^5.4.3" + buffer-layout "^1.2.0" + crypto-hash "^1.2.2" + esdoc-inject-style-plugin "^1.0.0" + jayson "^3.0.1" + keccak "^3.0.1" + mz "^2.7.0" + node-fetch "^2.2.0" + npm-run-all "^4.1.5" + rpc-websockets "^7.4.2" + secp256k1 "^4.0.2" + superstruct "^0.8.3" + tweetnacl "^1.0.0" + ws "^7.0.0" + +"@solana/web3.js@^1.20.0", "@solana/web3.js@^1.21.0", "@solana/web3.js@^1.22.0", "@solana/web3.js@^1.24.1", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.42.0", "@solana/web3.js@^1.43.5", "@solana/web3.js@^1.44.3": + version "1.62.0" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz#8fef9fd443217161ddc25e701f603222047bc520" + integrity sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA== + dependencies: + "@babel/runtime" "^7.12.5" + "@noble/ed25519" "^1.7.0" + "@noble/hashes" "^1.1.2" + "@noble/secp256k1" "^1.6.3" + "@solana/buffer-layout" "^4.0.0" + bigint-buffer "^1.1.5" + bn.js "^5.0.0" + borsh "^0.7.0" + bs58 "^4.0.1" + buffer "6.0.1" + fast-stable-stringify "^1.0.0" + jayson "^3.4.4" + node-fetch "2" + rpc-websockets "^7.5.0" + superstruct "^0.14.2" + +"@switchboard-xyz/common@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@switchboard-xyz/common/-/common-2.0.0.tgz#8c3551b3611c4a2348c46879c0ab2ea188a1f753" + integrity sha512-hC7J7NShGQHjWaCU7+w6tEtZ3KljxMIKJe5IaxPxD+cgdxhx58UMjngyevaCcle33aPyFZ/tbpm0tU2ZqzqZtQ== + dependencies: + big.js "^6.2.1" + bn.js "^5.2.1" + protobufjs "^6.11.3" + +"@switchboard-xyz/sbv2-utils@^0.1.49": + version "0.1.49" + resolved "https://registry.npmjs.org/@switchboard-xyz/sbv2-utils/-/sbv2-utils-0.1.49.tgz#1e52b54e7fa5185f4b3c2065a24de0dc19f5f8a7" + integrity sha512-k/H0kGLxykIt3RwddQtCsKBIkhMtb8jK7dFtsVcX2tPTeyWpeApC8dmEPRoODPcSQQmaEWojnfVS/iqPQWqJNQ== + dependencies: + "@orca-so/sdk" "^1.2.24" + "@project-serum/anchor" "^0.24.2" + "@saberhq/token-utils" "^1.13.32" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.43.5" + "@switchboard-xyz/common" "^2.0.0" + "@switchboard-xyz/switchboard-v2" "^0.0.136" + big.js "^6.2.1" + bn.js "^5.2.1" + chalk "4" + decimal.js "^10.3.1" + dotenv "^16.0.1" + mocha "^9.1.1" + toml "^3.0.0" + +"@switchboard-xyz/switchboard-v2@^0.0.136": + version "0.0.136" + resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.136.tgz#092f43e9c0e35f31033c124aa12ce46019af4eb5" + integrity sha512-vgaGqkDais2VJHfQawBSqrlKjvqtvOScHv7Q9bAlQtSieu7a3zMgH3rF4zAZAh/iphJLsm6bdMftUdcCMpVbKQ== + dependencies: + "@project-serum/anchor" "^0.24.2" + "@solana/spl-governance" "^0.0.34" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.44.3" + "@switchboard-xyz/common" "^2.0.0" + assert "^2.0.0" + big.js "^6.2.0" + bs58 "^5.0.0" + chan "^0.6.1" + crypto-js "^4.0.0" + glob "^8.0.3" + lodash "^4.17.21" + long "^4.0.0" + mocha "^9.1.1" + node-fetch "^3.2.6" + +"@tootallnate/once@1": + version "1.1.2" + resolved "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" + integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== + +"@tsconfig/node10@^1.0.7": + version "1.0.9" + resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" + integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" + integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== + +"@types/big.js@^6.1.6": + version "6.1.6" + resolved "https://registry.npmjs.org/@types/big.js/-/big.js-6.1.6.tgz#3d417e758483d55345a03a087f7e0c87137ca444" + integrity sha512-0r9J+Zz9rYm2hOTwiMAVkm3XFQ4u5uTK37xrQMhc9bysn/sf/okzovWMYYIBMFTn/yrEZ11pusgLEaoarTlQbA== + +"@types/bn.js@^4.11.5": + version "4.11.6" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c" + integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== + dependencies: + "@types/node" "*" + +"@types/bn.js@^5.1.0": + version "5.1.1" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz#b51e1b55920a4ca26e9285ff79936bbdec910682" + integrity sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g== + dependencies: + "@types/node" "*" + +"@types/connect@^3.4.33": + version "3.4.35" + resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/long@^4.0.1": + version "4.0.2" + resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" + integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== + +"@types/node@*", "@types/node@>=13.7.0", "@types/node@^18.7.18": + version "18.7.18" + resolved "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz#633184f55c322e4fb08612307c274ee6d5ed3154" + integrity sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg== + +"@types/node@^12.12.54": + version "12.20.55" + resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + +"@types/promise-retry@^1.1.3": + version "1.1.3" + resolved "https://registry.npmjs.org/@types/promise-retry/-/promise-retry-1.1.3.tgz#baab427419da9088a1d2f21bf56249c21b3dd43c" + integrity sha512-LxIlEpEX6frE3co3vCO2EUJfHIta1IOmhDlcAsR4GMMv9hev1iTI9VwberVGkePJAuLZs5rMucrV8CziCfuJMw== + dependencies: + "@types/retry" "*" + +"@types/retry@*", "@types/retry@^0.12.2": + version "0.12.2" + resolved "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz#ed279a64fa438bb69f2480eda44937912bb7480a" + integrity sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow== + +"@types/ws@^7.4.4": + version "7.4.7" + resolved "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" + integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== + dependencies: + "@types/node" "*" + +"@ubeswap/token-math@^5.2.0": + version "5.2.1" + resolved "https://registry.npmjs.org/@ubeswap/token-math/-/token-math-5.2.1.tgz#66e70ba8d65b5fdb1b7459332fbdad4ddec32a64" + integrity sha512-wkIKDKIl6rml4CVK3fvjjLVk55Z8qEYTgjxZx7MnrTwECazyhiDuekb9WAaDPXcW5QNffCu8uv4Ba8wE96CJsg== + dependencies: + "@types/big.js" "^6.1.6" + big.js "^6.2.1" + decimal.js-light "^2.5.1" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@ungap/promise-all-settled@1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" + integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== + +JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +abbrev@1, abbrev@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +acorn-jsx@^5.3.1: + version "5.3.2" + resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^8.1.1: + version "8.2.0" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^7.4.0: + version "7.4.1" + resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +acorn@^8.4.1: + version "8.8.0" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" + integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== + +agent-base@6, agent-base@^6.0.2: + version "6.0.2" + resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + +agentkeepalive@^4.1.3: + version "4.2.1" + resolved "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz#a7975cbb9f83b367f06c90cc51ff28fe7d499717" + integrity sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA== + dependencies: + debug "^4.1.0" + depd "^1.1.2" + humanize-ms "^1.2.1" + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + +ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + 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" + +ajv@^8.0.1: + version "8.11.0" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" + integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ansi-colors@4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-colors@^4.1.1: + version "4.1.3" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== + +ansi-regex@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" + integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0, ansi-styles@^4.3.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansicolors@~0.3.2: + version "0.3.2" + resolved "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" + integrity sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg== + +ansistyles@~0.1.3: + version "0.1.3" + resolved "https://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz#5de60415bda071bb37127854c864f41b23254539" + integrity sha512-6QWEyvMgIXX0eO972y7YPBLSBsq7UWKFAoNNTLGaOJ9bstcEL9sCbcjf96dVfNDdUsRoGOK82vWFJlKApXds7g== + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +aproba@^1.0.3: + version "1.2.0" + resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + +"aproba@^1.0.3 || ^2.0.0", aproba@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + +archy@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" + integrity sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw== + +are-we-there-yet@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" + integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== + dependencies: + delegates "^1.0.0" + readable-stream "^3.6.0" + +are-we-there-yet@~1.1.2: + version "1.1.7" + resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz#b15474a932adab4ff8a50d9adfa7e4e926f21146" + integrity sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g== + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +asap@^2.0.0: + version "2.0.6" + resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== + +asn1@~0.2.3: + version "0.2.6" + resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" + integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== + dependencies: + safer-buffer "~2.1.0" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== + +assert@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== + dependencies: + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== + +aws4@^1.8.0: + version "1.11.0" + resolved "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" + integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== + +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-x@^3.0.2: + version "3.0.9" + resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" + integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== + dependencies: + safe-buffer "^5.0.1" + +base-x@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz#d0e3b7753450c73f8ad2389b5c018a4af7b2224a" + integrity sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw== + +base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== + dependencies: + tweetnacl "^0.14.3" + +big.js@^6.2.0, big.js@^6.2.1: + version "6.2.1" + resolved "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz#7205ce763efb17c2e41f26f121c420c6a7c2744f" + integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== + +bigint-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442" + integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA== + dependencies: + bindings "^1.3.0" + +bignumber.js@^9.0.1: + version "9.1.0" + resolved "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62" + integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A== + +bin-links@^2.2.1: + version "2.3.0" + resolved "https://registry.npmjs.org/bin-links/-/bin-links-2.3.0.tgz#1ff241c86d2c29b24ae52f49544db5d78a4eb967" + integrity sha512-JzrOLHLwX2zMqKdyYZjkDgQGT+kHDkIhv2/IK2lJ00qLxV4TmFoHi8drDBb6H5Zrz1YfgHkai4e2MGPqnoUhqA== + dependencies: + cmd-shim "^4.0.1" + mkdirp-infer-owner "^2.0.0" + npm-normalize-package-bin "^1.0.0" + read-cmd-shim "^2.0.0" + rimraf "^3.0.0" + write-file-atomic "^3.0.3" + +binary-extensions@^2.0.0, binary-extensions@^2.2.0: + version "2.2.0" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.3.0: + version "1.5.0" + resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bluebird@3.7.2: + version "3.7.2" + resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.0.0, bn.js@^5.1.0, bn.js@^5.1.2, bn.js@^5.1.3, bn.js@^5.2.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +borsh@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.3.1.tgz#c31c3a149610e37913deada80e89073fb15cf55b" + integrity sha512-gJoSTnhwLxN/i2+15Y7uprU8h3CKI+Co4YKZKvrGYUy0FwHWM20x5Sx7eU8Xv4HQqV+7rb4r3P7K1cBIQe3q8A== + dependencies: + "@types/bn.js" "^4.11.5" + bn.js "^5.0.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +borsh@^0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.4.0.tgz#9dd6defe741627f1315eac2a73df61421f6ddb9f" + integrity sha512-aX6qtLya3K0AkT66CmYWCCDr77qsE9arV05OmdFpmat9qu8Pg9J5tBUPDztAW5fNh/d/MyVG/OYziP52Ndzx1g== + dependencies: + "@types/bn.js" "^4.11.5" + bn.js "^5.0.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +borsh@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a" + integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA== + dependencies: + bn.js "^5.2.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +bs58@^4.0.0, bs58@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" + integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== + dependencies: + base-x "^3.0.2" + +bs58@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz#865575b4d13c09ea2a84622df6c8cbeb54ffc279" + integrity sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ== + dependencies: + base-x "^4.0.0" + +buffer-layout@^1.2.0, buffer-layout@^1.2.1, buffer-layout@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/buffer-layout/-/buffer-layout-1.2.2.tgz#b9814e7c7235783085f9ca4966a0cfff112259d5" + integrity sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA== + +buffer@6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2" + integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@6.0.3, buffer@~6.0.3: + version "6.0.3" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@^5.4.3: + version "5.7.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +bufferutil@^4.0.1: + version "4.0.6" + resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" + integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== + dependencies: + node-gyp-build "^4.3.0" + +builtins@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" + integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ== + +cacache@^15.0.3, cacache@^15.0.5, cacache@^15.2.0, cacache@^15.3.0: + version "15.3.0" + resolved "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb" + integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ== + dependencies: + "@npmcli/fs" "^1.0.0" + "@npmcli/move-file" "^1.0.1" + chownr "^2.0.0" + fs-minipass "^2.0.0" + glob "^7.1.4" + infer-owner "^1.0.4" + lru-cache "^6.0.0" + minipass "^3.1.1" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.2" + mkdirp "^1.0.3" + p-map "^4.0.0" + promise-inflight "^1.0.1" + rimraf "^3.0.2" + ssri "^8.0.1" + tar "^6.0.2" + unique-filename "^1.1.1" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== + +chalk@4, chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^2.0.0, chalk@^2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + 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" + +chan@^0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/chan/-/chan-0.6.1.tgz#ec0ad132e5bc62c27ef10ccbfc4d8dcd8ca00640" + integrity sha512-/TdBP2UhbBmw7qnqkzo9Mk4rzvwRv4dlNPXFerqWy90T8oBspKagJNZxrDbExKHhx9uXXHjo3f9mHgs9iKO3nQ== + +check-more-types@2.24.0: + version "2.24.0" + resolved "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== + +cheerio@0.22.0: + version "0.22.0" + resolved "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" + integrity sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA== + dependencies: + css-select "~1.2.0" + dom-serializer "~0.1.0" + entities "~1.1.1" + htmlparser2 "^3.9.1" + lodash.assignin "^4.0.9" + lodash.bind "^4.1.4" + lodash.defaults "^4.0.1" + lodash.filter "^4.4.0" + lodash.flatten "^4.2.0" + lodash.foreach "^4.3.0" + lodash.map "^4.4.0" + lodash.merge "^4.4.0" + lodash.pick "^4.2.1" + lodash.reduce "^4.4.0" + lodash.reject "^4.4.0" + lodash.some "^4.4.0" + +chokidar@3.5.3: + version "3.5.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + 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" + optionalDependencies: + fsevents "~2.3.2" + +chownr@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + +cidr-regex@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/cidr-regex/-/cidr-regex-3.1.1.tgz#ba1972c57c66f61875f18fd7dd487469770b571d" + integrity sha512-RBqYd32aDwbCMFJRL6wHOlDNYJsPNTt8vC82ErHF5vKt8QQzxm1FrkW8s/R5pVrXMf17sba09Uoy91PKiddAsw== + dependencies: + ip-regex "^4.1.0" + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-columns@^3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/cli-columns/-/cli-columns-3.1.2.tgz#6732d972979efc2ae444a1f08e08fa139c96a18e" + integrity sha512-iQYpDgpPPmCjn534ikQOhi+ydP6uMar+DtJ6a0In4aGL/PKqWfao75s6eF81quQQaz7isGz+goNECLARRZswdg== + dependencies: + string-width "^2.0.0" + strip-ansi "^3.0.1" + +cli-table3@^0.6.0: + version "0.6.3" + resolved "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" + integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== + dependencies: + string-width "^4.2.0" + optionalDependencies: + "@colors/colors" "1.5.0" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +cmd-shim@^4.0.1: + version "4.1.0" + resolved "https://registry.npmjs.org/cmd-shim/-/cmd-shim-4.1.0.tgz#b3a904a6743e9fede4148c6f3800bf2a08135bdd" + integrity sha512-lb9L7EM4I/ZRVuljLPEtUJOP+xiQVknZ4ZMpMgEp4JzNldPb27HU03hi6K1/6CoIuit/Zm/LQXySErFeXxDprw== + dependencies: + mkdirp-infer-owner "^2.0.0" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA== + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-support@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + +columnify@~1.5.4: + version "1.5.4" + resolved "https://registry.npmjs.org/columnify/-/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb" + integrity sha512-rFl+iXVT1nhLQPfGDw+3WcS8rmm7XsLKUmhsGE3ihzzpIikeGrTaZPIRKYWeLsLBypsHzjXIvYEltVUZS84XxQ== + dependencies: + strip-ansi "^3.0.0" + wcwidth "^1.0.0" + +combined-stream@^1.0.6, combined-stream@~1.0.6: + version "1.0.8" + resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^2.20.3: + version "2.20.3" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +common-ancestor-path@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz#4f7d2d1394d91b7abdf51871c62f71eadb0182a7" + integrity sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +console-control-strings@^1.0.0, console-control-strings@^1.1.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== + +core-util-is@1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-fetch@^3.1.4, cross-fetch@^3.1.5: + version "3.1.5" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" + integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== + dependencies: + node-fetch "2.6.7" + +cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-hash@^1.2.2, crypto-hash@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247" + integrity sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg== + +crypto-js@^4.0.0: + version "4.1.1" + resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" + integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== + +css-select@~1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + integrity sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA== + dependencies: + boolbase "~1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "~1.0.1" + +css-what@2.1: + version "2.1.3" + resolved "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" + integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== + dependencies: + assert-plus "^1.0.0" + +data-uri-to-buffer@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" + integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== + +debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.3: + version "4.3.4" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +debug@4.3.2: + version "4.3.2" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + +debug@4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + +debuglog@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" + integrity sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw== + +decamelize@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" + integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== + +decimal.js-light@^2.5.1: + version "2.5.1" + resolved "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz#134fd32508f19e208f4fb2f8dac0d2626a867934" + integrity sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg== + +decimal.js@^10.2.1, decimal.js@^10.3.0, decimal.js@^10.3.1: + version "10.4.0" + resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.0.tgz#97a7448873b01e92e5ff9117d89a7bca8e63e0fe" + integrity sha512-Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg== + +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og== + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +deepmerge@4.2.2: + version "4.2.2" + resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" + integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== + +defaults@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + integrity sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA== + dependencies: + clone "^1.0.2" + +define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== + +depd@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + +dezalgo@^1.0.0: + version "1.0.4" + resolved "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz#751235260469084c132157dfa857f386d4c33d81" + integrity sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig== + dependencies: + asap "^2.0.0" + wrappy "1" + +diff@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" + integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +diff@^5.0.0: + version "5.1.0" + resolved "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40" + integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw== + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-serializer@0: + version "0.2.2" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@~0.1.0: + version "0.1.1" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" + integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== + dependencies: + domelementtype "^1.3.0" + entities "^1.1.1" + +domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domelementtype@^2.0.1: + version "2.3.0" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^2.3.0: + version "2.4.2" + resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" + integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== + dependencies: + domelementtype "1" + +domutils@1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + integrity sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw== + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^1.5.1: + version "1.7.0" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dotenv@10.0.0, dotenv@^10.0.0: + version "10.0.0" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== + +dotenv@8.2.0: + version "8.2.0" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" + integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== + +dotenv@^16.0.1: + version "16.0.2" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz#0b0f8652c016a3858ef795024508cddc4bffc5bf" + integrity sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA== + +duplexer@~0.1.1: + version "0.1.2" + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + +elliptic@^6.5.4: + version "6.5.4" + resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +encoding@^0.1.12: + version "0.1.13" + resolved "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" + integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== + dependencies: + iconv-lite "^0.6.2" + +enquirer@^2.3.5: + version "2.3.6" + resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + dependencies: + ansi-colors "^4.1.1" + +entities@^1.1.1, entities@~1.1.1: + version "1.1.2" + resolved "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" + integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +env-paths@^2.2.0: + version "2.2.1" + resolved "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" + integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== + +err-code@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.5, es-abstract@^1.20.0: + version "1.20.2" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3" + integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.2" + get-symbol-description "^1.0.0" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + is-callable "^1.2.4" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + string.prototype.trimend "^1.0.5" + string.prototype.trimstart "^1.0.5" + unbox-primitive "^1.0.2" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ== + dependencies: + es6-promise "^4.0.3" + +esbuild-node-externals@^1.4.1: + version "1.5.0" + resolved "https://registry.npmjs.org/esbuild-node-externals/-/esbuild-node-externals-1.5.0.tgz#56674e3d102efeb704e931574b1866cf1f79c7b8" + integrity sha512-9394Ne2t2Z243BWeNBRkXEYVMOVbQuzp7XSkASZTOQs0GSXDuno5aH5OmzEXc6GMuln5zJjpkZpgwUPW0uRKgw== + dependencies: + find-up "5.0.0" + tslib "2.3.1" + +esbuild@^0.11.0: + version "0.11.23" + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.11.23.tgz#c42534f632e165120671d64db67883634333b4b8" + integrity sha512-iaiZZ9vUF5wJV8ob1tl+5aJTrwDczlvGP0JoMmnpC2B0ppiMCu8n8gmy5ZTGl5bcG081XBVn+U+jP+mPFm5T5Q== + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +esdoc-inject-style-plugin@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/esdoc-inject-style-plugin/-/esdoc-inject-style-plugin-1.0.0.tgz#a13597368bb9fb89c365e066495caf97a4decbb1" + integrity sha512-LqSGr3YKe+vY2u6TCp9K+EEt97S78KjdJUz5PXyitHkp4nGXRSZq2ftEQJioF/WtTeGYWeQLzNAM9LihIlisqg== + dependencies: + cheerio "0.22.0" + fs-extra "1.0.0" + +eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint@^7.28.0: + version "7.32.0" + resolved "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + 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" + +espree@^7.3.0, espree@^7.3.1: + version "7.3.1" + resolved "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" + integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== + dependencies: + acorn "^7.4.0" + acorn-jsx "^5.3.1" + eslint-visitor-keys "^1.3.0" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +estrella@^1.4.1: + version "1.4.1" + resolved "https://registry.npmjs.org/estrella/-/estrella-1.4.1.tgz#6971a710a91d38abe3ced6f6ffa68c0c6e08d369" + integrity sha512-h8vlec27CFxw+8uYFtgbvLvohx0v+IssCwb/haTQnI+kO2WaL0ApSTWxg49LneAtqrZkrnYVwXQB2ZgyIIAImw== + dependencies: + esbuild "^0.11.0" + optionalDependencies: + fsevents "~2.3.1" + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +event-stream@=3.3.4: + version "3.3.4" + resolved "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +eventemitter3@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +execa@5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + 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" + +extend@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== + +extsprintf@^1.2.0: + version "1.4.1" + resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" + integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== + +eyes@^0.1.8: + version "0.1.8" + resolved "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + integrity sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fast-stable-stringify@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" + integrity sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag== + +fastest-levenshtein@^1.0.12: + version "1.0.16" + resolved "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" + integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +flatted@^3.1.0: + version "3.2.7" + resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== + +follow-redirects@^1.14.0: + version "1.15.2" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== + +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +from@~0: + version "0.1.7" + resolved "https://registry.npmjs.org/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" + integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== + +fs-extra@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" + integrity sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + +fs-minipass@^2.0.0, fs-minipass@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.1, fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== + +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +g@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/g/-/g-2.0.1.tgz#0b5963ebd0ca70e3bc8c6766934a021821c8b857" + integrity sha512-Fi6Ng5fZ/ANLQ15H11hCe+09sgUoNvDEBevVgx3KoYOhsH5iLNPn54hx0jPZ+3oSWr+xajnp2Qau9VmPsc7hTA== + +gauge@^3.0.0: + version "3.0.2" + resolved "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395" + integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== + dependencies: + aproba "^1.0.3 || ^2.0.0" + color-support "^1.1.2" + console-control-strings "^1.0.0" + has-unicode "^2.0.1" + object-assign "^4.1.1" + signal-exit "^3.0.0" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wide-align "^1.1.2" + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + integrity sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg== + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== + dependencies: + assert-plus "^1.0.0" + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@7.2.0: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0: + version "7.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^8.0.3: + version "8.0.3" + resolved "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" + integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +globals@^13.6.0, globals@^13.9.0: + version "13.17.0" + resolved "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" + integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== + dependencies: + type-fest "^0.20.2" + +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.3, graceful-fs@^4.2.8: + version "4.2.10" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +growl@1.10.5: + version "1.10.5" + resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q== + +har-validator@~5.1.0, har-validator@~5.1.3: + version "5.1.5" + resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" + integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== + dependencies: + ajv "^6.12.3" + har-schema "^2.0.0" + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has-unicode@^2.0.0, has-unicode@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +hosted-git-info@^4.0.1, hosted-git-info@^4.0.2: + version "4.1.0" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" + integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== + dependencies: + lru-cache "^6.0.0" + +htmlparser2@^3.9.1: + version "3.10.1" + resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" + integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== + dependencies: + domelementtype "^1.3.1" + domhandler "^2.3.0" + domutils "^1.5.1" + entities "^1.1.1" + inherits "^2.0.1" + readable-stream "^3.1.1" + +http-cache-semantics@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" + integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== + +http-proxy-agent@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" + integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== + dependencies: + "@tootallnate/once" "1" + agent-base "6" + debug "4" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ== + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-proxy-agent@^5.0.0: + version "5.0.1" + resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== + dependencies: + agent-base "6" + debug "4" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== + dependencies: + ms "^2.0.0" + +iconv-lite@^0.6.2: + version "0.6.3" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + +ieee754@^1.1.13, ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore-walk@^3.0.3: + version "3.0.4" + resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz#c9a09f69b7c7b479a5d74ac1a3c0d4236d2a6335" + integrity sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ== + dependencies: + minimatch "^3.0.4" + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +infer-owner@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" + integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +ini@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" + integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== + +init-package-json@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/init-package-json/-/init-package-json-2.0.5.tgz#78b85f3c36014db42d8f32117252504f68022646" + integrity sha512-u1uGAtEFu3VA6HNl/yUWw57jmKEMx8SKOxHhxjGnOFUiIlFnohKDFg4ZrPpv9wWqk44nDxGJAtqjdQFm+9XXQA== + dependencies: + npm-package-arg "^8.1.5" + promzard "^0.3.0" + read "~1.0.1" + read-package-json "^4.1.1" + semver "^7.3.5" + validate-npm-package-license "^3.0.4" + validate-npm-package-name "^3.0.0" + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +ip-regex@^4.1.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5" + integrity sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q== + +ip@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" + integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== + +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: + version "1.2.6" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz#fd6170b0b8c7e2cc73de342ef8284a2202023c44" + integrity sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q== + +is-cidr@^4.0.2: + version "4.0.2" + resolved "https://registry.npmjs.org/is-cidr/-/is-cidr-4.0.2.tgz#94c7585e4c6c77ceabf920f8cde51b8c0fda8814" + integrity sha512-z4a1ENUajDbEl/Q6/pVBpTR1nBjjEE1X7qb7bmWYanNnPoKAvUCPFKeXV6Fe4mgTkWKBqiHIcwsI3SndiO5FeA== + dependencies: + cidr-regex "^3.1.1" + +is-core-module@^2.5.0, is-core-module@^2.9.0: + version "2.10.0" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" + integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw== + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-lambda@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" + integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== + +is-nan@^1.2.1: + version "1.3.2" + resolved "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.3, is-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67" + integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + +is-typedarray@^1.0.0, is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isomorphic-ws@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" + integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== + +jayson@^3.0.1, jayson@^3.4.4: + version "3.7.0" + resolved "https://registry.npmjs.org/jayson/-/jayson-3.7.0.tgz#b735b12d06d348639ae8230d7a1e2916cb078f25" + integrity sha512-tfy39KJMrrXJ+mFcMpxwBvFDetS8LAID93+rycFglIQM4kl3uNR3W4lBLE/FFhsoUCEox5Dt2adVpDm/XtebbQ== + dependencies: + "@types/connect" "^3.4.33" + "@types/node" "^12.12.54" + "@types/ws" "^7.4.4" + JSONStream "^1.3.5" + commander "^2.20.3" + delay "^5.0.0" + es6-promisify "^5.0.0" + eyes "^0.1.8" + isomorphic-ws "^4.0.1" + json-stringify-safe "^5.0.1" + lodash "^4.17.20" + uuid "^8.3.2" + ws "^7.4.5" + +joi@^17.4.0: + version "17.6.0" + resolved "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2" + integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.0" + "@sideway/pinpoint" "^2.0.0" + +js-sha256@^0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" + integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA== + +js-sha3@^0.8.0: + version "0.8.0" + resolved "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" + integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: + version "2.3.1" + resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-schema@0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" + integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json-stringify-nice@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz#2c937962b80181d3f317dd39aa323e14f5a60a67" + integrity sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw== + +json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + integrity sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonparse@^1.2.0, jsonparse@^1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +jsprim@^1.2.2: + version "1.4.2" + resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz#712c65533a15c878ba59e9ed5f0e26d5b77c5feb" + integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw== + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.4.0" + verror "1.10.0" + +just-diff-apply@^3.0.0: + version "3.1.2" + resolved "https://registry.npmjs.org/just-diff-apply/-/just-diff-apply-3.1.2.tgz#710d8cda00c65dc4e692df50dbe9bac5581c2193" + integrity sha512-TCa7ZdxCeq6q3Rgms2JCRHTCfWAETPZ8SzYUbkYF6KR3I03sN29DaOIC+xyWboIcMvjAsD5iG2u/RWzHD8XpgQ== + +just-diff@^3.0.1: + version "3.1.1" + resolved "https://registry.npmjs.org/just-diff/-/just-diff-3.1.1.tgz#d50c597c6fd4776495308c63bdee1b6839082647" + integrity sha512-sdMWKjRq8qWZEjDcVA6llnUT8RDEBIfOiGpYFPYa9u+2c39JCsejktSP7mj5eRid5EIvTzIpQ2kDOCw1Nq9BjQ== + +keccak@^3.0.1: + version "3.0.2" + resolved "https://registry.npmjs.org/keccak/-/keccak-3.0.2.tgz#4c2c6e8c54e04f2670ee49fa734eb9da152206e0" + integrity sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ== + dependencies: + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + readable-stream "^3.6.0" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + integrity sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw== + optionalDependencies: + graceful-fs "^4.1.9" + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +lazy-ass@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +libnpmaccess@^4.0.2: + version "4.0.3" + resolved "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-4.0.3.tgz#dfb0e5b0a53c315a2610d300e46b4ddeb66e7eec" + integrity sha512-sPeTSNImksm8O2b6/pf3ikv4N567ERYEpeKRPSmqlNt1dTZbvgpJIzg5vAhXHpw2ISBsELFRelk0jEahj1c6nQ== + dependencies: + aproba "^2.0.0" + minipass "^3.1.1" + npm-package-arg "^8.1.2" + npm-registry-fetch "^11.0.0" + +libnpmdiff@^2.0.4: + version "2.0.4" + resolved "https://registry.npmjs.org/libnpmdiff/-/libnpmdiff-2.0.4.tgz#bb1687992b1a97a8ea4a32f58ad7c7f92de53b74" + integrity sha512-q3zWePOJLHwsLEUjZw3Kyu/MJMYfl4tWCg78Vl6QGSfm4aXBUSVzMzjJ6jGiyarsT4d+1NH4B1gxfs62/+y9iQ== + dependencies: + "@npmcli/disparity-colors" "^1.0.1" + "@npmcli/installed-package-contents" "^1.0.7" + binary-extensions "^2.2.0" + diff "^5.0.0" + minimatch "^3.0.4" + npm-package-arg "^8.1.1" + pacote "^11.3.0" + tar "^6.1.0" + +libnpmexec@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/libnpmexec/-/libnpmexec-2.0.1.tgz#729ae3e15a3ba225964ccf248117a75d311eeb73" + integrity sha512-4SqBB7eJvJWmUKNF42Q5qTOn20DRjEE4TgvEh2yneKlAiRlwlhuS9MNR45juWwmoURJlf2K43bozlVt7OZiIOw== + dependencies: + "@npmcli/arborist" "^2.3.0" + "@npmcli/ci-detect" "^1.3.0" + "@npmcli/run-script" "^1.8.4" + chalk "^4.1.0" + mkdirp-infer-owner "^2.0.0" + npm-package-arg "^8.1.2" + pacote "^11.3.1" + proc-log "^1.0.0" + read "^1.0.7" + read-package-json-fast "^2.0.2" + walk-up-path "^1.0.0" + +libnpmfund@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/libnpmfund/-/libnpmfund-1.1.0.tgz#ee91313905b3194b900530efa339bc3f9fc4e5c4" + integrity sha512-Kfmh3pLS5/RGKG5WXEig8mjahPVOxkik6lsbH4iX0si1xxNi6eeUh/+nF1MD+2cgalsQif3O5qyr6mNz2ryJrQ== + dependencies: + "@npmcli/arborist" "^2.5.0" + +libnpmhook@^6.0.2: + version "6.0.3" + resolved "https://registry.npmjs.org/libnpmhook/-/libnpmhook-6.0.3.tgz#1d7f0d7e6a7932fbf7ce0881fdb0ed8bf8748a30" + integrity sha512-3fmkZJibIybzmAvxJ65PeV3NzRc0m4xmYt6scui5msocThbEp4sKFT80FhgrCERYDjlUuFahU6zFNbJDHbQ++g== + dependencies: + aproba "^2.0.0" + npm-registry-fetch "^11.0.0" + +libnpmorg@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/libnpmorg/-/libnpmorg-2.0.3.tgz#4e605d4113dfa16792d75343824a0625c76703bc" + integrity sha512-JSGl3HFeiRFUZOUlGdiNcUZOsUqkSYrg6KMzvPZ1WVZ478i47OnKSS0vkPmX45Pai5mTKuwIqBMcGWG7O8HfdA== + dependencies: + aproba "^2.0.0" + npm-registry-fetch "^11.0.0" + +libnpmpack@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/libnpmpack/-/libnpmpack-2.0.1.tgz#d3eac25cc8612f4e7cdeed4730eee339ba51c643" + integrity sha512-He4/jxOwlaQ7YG7sIC1+yNeXeUDQt8RLBvpI68R3RzPMZPa4/VpxhlDo8GtBOBDYoU8eq6v1wKL38sq58u4ibQ== + dependencies: + "@npmcli/run-script" "^1.8.3" + npm-package-arg "^8.1.0" + pacote "^11.2.6" + +libnpmpublish@^4.0.1: + version "4.0.2" + resolved "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-4.0.2.tgz#be77e8bf5956131bcb45e3caa6b96a842dec0794" + integrity sha512-+AD7A2zbVeGRCFI2aO//oUmapCwy7GHqPXFJh3qpToSRNU+tXKJ2YFUgjt04LPPAf2dlEH95s6EhIHM1J7bmOw== + dependencies: + normalize-package-data "^3.0.2" + npm-package-arg "^8.1.2" + npm-registry-fetch "^11.0.0" + semver "^7.1.3" + ssri "^8.0.1" + +libnpmsearch@^3.1.1: + version "3.1.2" + resolved "https://registry.npmjs.org/libnpmsearch/-/libnpmsearch-3.1.2.tgz#aee81b9e4768750d842b627a3051abc89fdc15f3" + integrity sha512-BaQHBjMNnsPYk3Bl6AiOeVuFgp72jviShNBw5aHaHNKWqZxNi38iVNoXbo6bG/Ccc/m1To8s0GtMdtn6xZ1HAw== + dependencies: + npm-registry-fetch "^11.0.0" + +libnpmteam@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/libnpmteam/-/libnpmteam-2.0.4.tgz#9dbe2e18ae3cb97551ec07d2a2daf9944f3edc4c" + integrity sha512-FPrVJWv820FZFXaflAEVTLRWZrerCvfe7ZHSMzJ/62EBlho2KFlYKjyNEsPW3JiV7TLSXi3vo8u0gMwIkXSMTw== + dependencies: + aproba "^2.0.0" + npm-registry-fetch "^11.0.0" + +libnpmversion@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/libnpmversion/-/libnpmversion-1.2.1.tgz#689aa7fe0159939b3cbbf323741d34976f4289e9" + integrity sha512-AA7x5CFgBFN+L4/JWobnY5t4OAHjQuPbAwUYJ7/NtHuyLut5meb+ne/aj0n7PWNiTGCJcRw/W6Zd2LoLT7EZuQ== + dependencies: + "@npmcli/git" "^2.0.7" + "@npmcli/run-script" "^1.8.4" + json-parse-even-better-errors "^2.3.1" + semver "^7.3.5" + stringify-package "^1.0.1" + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.assignin@^4.0.9: + version "4.2.0" + resolved "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" + integrity sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg== + +lodash.bind@^4.1.4: + version "4.2.1" + resolved "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" + integrity sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA== + +lodash.defaults@^4.0.1: + version "4.2.0" + resolved "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" + integrity sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ== + +lodash.filter@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" + integrity sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ== + +lodash.flatten@^4.2.0: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" + integrity sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g== + +lodash.foreach@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" + integrity sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ== + +lodash.map@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" + integrity sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q== + +lodash.merge@^4.4.0, lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.pick@^4.2.1: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" + integrity sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q== + +lodash.reduce@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" + integrity sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw== + +lodash.reject@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" + integrity sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ== + +lodash.some@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" + integrity sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ== + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== + +lodash@^4.13.1, lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +long@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" + integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +make-fetch-happen@^9.0.1, make-fetch-happen@^9.1.0: + version "9.1.0" + resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz#53085a09e7971433e6765f7971bf63f4e05cb968" + integrity sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg== + dependencies: + agentkeepalive "^4.1.3" + cacache "^15.2.0" + http-cache-semantics "^4.1.0" + http-proxy-agent "^4.0.1" + https-proxy-agent "^5.0.0" + is-lambda "^1.0.1" + lru-cache "^6.0.0" + minipass "^3.1.3" + minipass-collect "^1.0.2" + minipass-fetch "^1.3.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + negotiator "^0.6.2" + promise-retry "^2.0.1" + socks-proxy-agent "^6.0.0" + ssri "^8.0.0" + +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== + +memorystream@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" + integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12, mime-types@~2.1.19: + version "2.1.35" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + +minimatch@4.2.1: + version "4.2.1" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz#40d9d511a46bdc4e563c22c3080cde9c0d8299b4" + integrity sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1: + version "5.1.0" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.5: + version "1.2.6" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +minipass-collect@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" + integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== + dependencies: + minipass "^3.0.0" + +minipass-fetch@^1.3.0, minipass-fetch@^1.3.2: + version "1.4.1" + resolved "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz#d75e0091daac1b0ffd7e9d41629faff7d0c1f1b6" + integrity sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw== + dependencies: + minipass "^3.1.0" + minipass-sized "^1.0.3" + minizlib "^2.0.0" + optionalDependencies: + encoding "^0.1.12" + +minipass-flush@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" + integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== + dependencies: + minipass "^3.0.0" + +minipass-json-stream@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz#7edbb92588fbfc2ff1db2fc10397acb7b6b44aa7" + integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg== + dependencies: + jsonparse "^1.3.1" + minipass "^3.0.0" + +minipass-pipeline@^1.2.2, minipass-pipeline@^1.2.4: + version "1.2.4" + resolved "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" + integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== + dependencies: + minipass "^3.0.0" + +minipass-sized@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" + integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== + dependencies: + minipass "^3.0.0" + +minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3: + version "3.3.4" + resolved "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz#ca99f95dd77c43c7a76bf51e6d200025eee0ffae" + integrity sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw== + dependencies: + yallist "^4.0.0" + +minizlib@^2.0.0, minizlib@^2.1.1: + version "2.1.2" + resolved "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + +mkdirp-infer-owner@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz#55d3b368e7d89065c38f32fd38e638f0ab61d316" + integrity sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw== + dependencies: + chownr "^2.0.0" + infer-owner "^1.0.4" + mkdirp "^1.0.3" + +mkdirp@1.0.4, mkdirp@^1.0.3, mkdirp@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mocha@^9.1.1: + version "9.2.2" + resolved "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz#d70db46bdb93ca57402c809333e5a84977a88fb9" + integrity sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g== + dependencies: + "@ungap/promise-all-settled" "1.1.2" + ansi-colors "4.1.1" + browser-stdout "1.3.1" + chokidar "3.5.3" + debug "4.3.3" + diff "5.0.0" + escape-string-regexp "4.0.0" + find-up "5.0.0" + glob "7.2.0" + growl "1.10.5" + he "1.2.0" + js-yaml "4.1.0" + log-symbols "4.1.0" + minimatch "4.2.1" + ms "2.1.3" + nanoid "3.3.1" + serialize-javascript "6.0.0" + strip-json-comments "3.1.1" + supports-color "8.1.1" + which "2.0.2" + workerpool "6.2.0" + yargs "16.2.0" + yargs-parser "20.2.4" + yargs-unparser "2.0.0" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3, ms@^2.0.0, ms@^2.1.2: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mute-stream@~0.0.4: + version "0.0.8" + resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@3.3.1: + version "3.3.1" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" + integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +negotiator@^0.6.2: + version "0.6.3" + resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-addon-api@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32" + integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA== + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@2, node-fetch@2.6.7, node-fetch@^2.2.0: + version "2.6.7" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^3.2.6: + version "3.2.10" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8" + integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-gyp-build@^4.2.0, node-gyp-build@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" + integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + +node-gyp@^7.1.0, node-gyp@^7.1.2: + version "7.1.2" + resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz#21a810aebb187120251c3bcec979af1587b188ae" + integrity sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ== + dependencies: + env-paths "^2.2.0" + glob "^7.1.4" + graceful-fs "^4.2.3" + nopt "^5.0.0" + npmlog "^4.1.2" + request "^2.88.2" + rimraf "^3.0.2" + semver "^7.3.2" + tar "^6.0.2" + which "^2.0.2" + +node-pagerduty@^1.3.6: + version "1.3.6" + resolved "https://registry.npmjs.org/node-pagerduty/-/node-pagerduty-1.3.6.tgz#596c0c40b1a0f73a87666a937b8ede89a2d06710" + integrity sha512-tcbxlmiK1FfaqPGYWIeBdePRD/5TLHe11SP8aei9QsWDuTCUN20HubRRO6YVlm7olUV8TUisFLXs3KtgMn8NOQ== + dependencies: + deepmerge "4.2.2" + g "^2.0.1" + npm "^7.0.6" + query-string "6.13.6" + request "2.88.0" + request-promise-native "1.0.5" + +nopt@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" + integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== + dependencies: + abbrev "1" + +normalize-package-data@^2.3.2: + version "2.5.0" + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-package-data@^3.0.0, normalize-package-data@^3.0.2: + version "3.0.3" + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" + integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== + dependencies: + hosted-git-info "^4.0.1" + is-core-module "^2.5.0" + semver "^7.3.4" + validate-npm-package-license "^3.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-audit-report@^2.1.5: + version "2.1.5" + resolved "https://registry.npmjs.org/npm-audit-report/-/npm-audit-report-2.1.5.tgz#a5b8850abe2e8452fce976c8960dd432981737b5" + integrity sha512-YB8qOoEmBhUH1UJgh1xFAv7Jg1d+xoNhsDYiFQlEFThEBui0W1vIz2ZK6FVg4WZjwEdl7uBQlm1jy3MUfyHeEw== + dependencies: + chalk "^4.0.0" + +npm-bundled@^1.1.1: + version "1.1.2" + resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz#944c78789bd739035b70baa2ca5cc32b8d860bc1" + integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== + dependencies: + npm-normalize-package-bin "^1.0.1" + +npm-install-checks@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-4.0.0.tgz#a37facc763a2fde0497ef2c6d0ac7c3fbe00d7b4" + integrity sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w== + dependencies: + semver "^7.1.1" + +npm-normalize-package-bin@^1.0.0, npm-normalize-package-bin@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" + integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== + +npm-package-arg@^8.0.0, npm-package-arg@^8.0.1, npm-package-arg@^8.1.0, npm-package-arg@^8.1.1, npm-package-arg@^8.1.2, npm-package-arg@^8.1.5: + version "8.1.5" + resolved "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.5.tgz#3369b2d5fe8fdc674baa7f1786514ddc15466e44" + integrity sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q== + dependencies: + hosted-git-info "^4.0.1" + semver "^7.3.4" + validate-npm-package-name "^3.0.0" + +npm-packlist@^2.1.4: + version "2.2.2" + resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-2.2.2.tgz#076b97293fa620f632833186a7a8f65aaa6148c8" + integrity sha512-Jt01acDvJRhJGthnUJVF/w6gumWOZxO7IkpY/lsX9//zqQgnF7OJaxgQXcerd4uQOLu7W5bkb4mChL9mdfm+Zg== + dependencies: + glob "^7.1.6" + ignore-walk "^3.0.3" + npm-bundled "^1.1.1" + npm-normalize-package-bin "^1.0.1" + +npm-pick-manifest@^6.0.0, npm-pick-manifest@^6.1.0, npm-pick-manifest@^6.1.1: + version "6.1.1" + resolved "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz#7b5484ca2c908565f43b7f27644f36bb816f5148" + integrity sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA== + dependencies: + npm-install-checks "^4.0.0" + npm-normalize-package-bin "^1.0.1" + npm-package-arg "^8.1.2" + semver "^7.3.4" + +npm-profile@^5.0.3: + version "5.0.4" + resolved "https://registry.npmjs.org/npm-profile/-/npm-profile-5.0.4.tgz#73e5bd1d808edc2c382d7139049cc367ac43161b" + integrity sha512-OKtU7yoAEBOnc8zJ+/uo5E4ugPp09sopo+6y1njPp+W99P8DvQon3BJYmpvyK2Bf1+3YV5LN1bvgXRoZ1LUJBA== + dependencies: + npm-registry-fetch "^11.0.0" + +npm-registry-fetch@^11.0.0: + version "11.0.0" + resolved "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz#68c1bb810c46542760d62a6a965f85a702d43a76" + integrity sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA== + dependencies: + make-fetch-happen "^9.0.1" + minipass "^3.1.3" + minipass-fetch "^1.3.0" + minipass-json-stream "^1.0.1" + minizlib "^2.0.0" + npm-package-arg "^8.0.0" + +npm-run-all@^4.1.5: + version "4.1.5" + resolved "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" + integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== + dependencies: + ansi-styles "^3.2.1" + chalk "^2.4.1" + cross-spawn "^6.0.5" + memorystream "^0.3.1" + minimatch "^3.0.4" + pidtree "^0.3.0" + read-pkg "^3.0.0" + shell-quote "^1.6.1" + string.prototype.padend "^3.0.0" + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +npm-user-validate@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/npm-user-validate/-/npm-user-validate-1.0.1.tgz#31428fc5475fe8416023f178c0ab47935ad8c561" + integrity sha512-uQwcd/tY+h1jnEaze6cdX/LrhWhoBxfSknxentoqmIuStxUExxjWd3ULMLFPiFUrZKbOVMowH6Jq2FRWfmhcEw== + +npm@^7.0.6: + version "7.24.2" + resolved "https://registry.npmjs.org/npm/-/npm-7.24.2.tgz#861117af8241bea592289f22407230e5300e59ca" + integrity sha512-120p116CE8VMMZ+hk8IAb1inCPk4Dj3VZw29/n2g6UI77urJKVYb7FZUDW8hY+EBnfsjI/2yrobBgFyzo7YpVQ== + dependencies: + "@isaacs/string-locale-compare" "^1.1.0" + "@npmcli/arborist" "^2.9.0" + "@npmcli/ci-detect" "^1.2.0" + "@npmcli/config" "^2.3.0" + "@npmcli/map-workspaces" "^1.0.4" + "@npmcli/package-json" "^1.0.1" + "@npmcli/run-script" "^1.8.6" + abbrev "~1.1.1" + ansicolors "~0.3.2" + ansistyles "~0.1.3" + archy "~1.0.0" + cacache "^15.3.0" + chalk "^4.1.2" + chownr "^2.0.0" + cli-columns "^3.1.2" + cli-table3 "^0.6.0" + columnify "~1.5.4" + fastest-levenshtein "^1.0.12" + glob "^7.2.0" + graceful-fs "^4.2.8" + hosted-git-info "^4.0.2" + ini "^2.0.0" + init-package-json "^2.0.5" + is-cidr "^4.0.2" + json-parse-even-better-errors "^2.3.1" + libnpmaccess "^4.0.2" + libnpmdiff "^2.0.4" + libnpmexec "^2.0.1" + libnpmfund "^1.1.0" + libnpmhook "^6.0.2" + libnpmorg "^2.0.2" + libnpmpack "^2.0.1" + libnpmpublish "^4.0.1" + libnpmsearch "^3.1.1" + libnpmteam "^2.0.3" + libnpmversion "^1.2.1" + make-fetch-happen "^9.1.0" + minipass "^3.1.3" + minipass-pipeline "^1.2.4" + mkdirp "^1.0.4" + mkdirp-infer-owner "^2.0.0" + ms "^2.1.2" + node-gyp "^7.1.2" + nopt "^5.0.0" + npm-audit-report "^2.1.5" + npm-install-checks "^4.0.0" + npm-package-arg "^8.1.5" + npm-pick-manifest "^6.1.1" + npm-profile "^5.0.3" + npm-registry-fetch "^11.0.0" + npm-user-validate "^1.0.1" + npmlog "^5.0.1" + opener "^1.5.2" + pacote "^11.3.5" + parse-conflict-json "^1.1.1" + qrcode-terminal "^0.12.0" + read "~1.0.7" + read-package-json "^4.1.1" + read-package-json-fast "^2.0.3" + readdir-scoped-modules "^1.1.0" + rimraf "^3.0.2" + semver "^7.3.5" + ssri "^8.0.1" + tar "^6.1.11" + text-table "~0.2.0" + tiny-relative-date "^1.3.0" + treeverse "^1.0.4" + validate-npm-package-name "~3.0.0" + which "^2.0.2" + write-file-atomic "^3.0.3" + +npmlog@^4.1.2: + version "4.1.2" + resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +npmlog@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" + integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== + dependencies: + are-we-there-yet "^2.0.0" + console-control-strings "^1.1.0" + gauge "^3.0.0" + set-blocking "^2.0.0" + +nth-check@~1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + dependencies: + boolbase "~1.0.0" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== + +oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +opener@^1.5.2: + version "1.5.2" + resolved "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" + integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== + +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + 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.3" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + +pacote@^11.1.11, pacote@^11.2.6, pacote@^11.3.0, pacote@^11.3.1, pacote@^11.3.5: + version "11.3.5" + resolved "https://registry.npmjs.org/pacote/-/pacote-11.3.5.tgz#73cf1fc3772b533f575e39efa96c50be8c3dc9d2" + integrity sha512-fT375Yczn4zi+6Hkk2TBe1x1sP8FgFsEIZ2/iWaXY2r/NkhDJfxbcn5paz1+RTFCyNf+dPnaoBDJoAxXSU8Bkg== + dependencies: + "@npmcli/git" "^2.1.0" + "@npmcli/installed-package-contents" "^1.0.6" + "@npmcli/promise-spawn" "^1.2.0" + "@npmcli/run-script" "^1.8.2" + cacache "^15.0.5" + chownr "^2.0.0" + fs-minipass "^2.1.0" + infer-owner "^1.0.4" + minipass "^3.1.3" + mkdirp "^1.0.3" + npm-package-arg "^8.0.1" + npm-packlist "^2.1.4" + npm-pick-manifest "^6.0.0" + npm-registry-fetch "^11.0.0" + promise-retry "^2.0.1" + read-package-json-fast "^2.0.1" + rimraf "^3.0.2" + ssri "^8.0.1" + tar "^6.1.0" + +pako@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d" + integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-conflict-json@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-1.1.1.tgz#54ec175bde0f2d70abf6be79e0e042290b86701b" + integrity sha512-4gySviBiW5TRl7XHvp1agcS7SOe0KZOjC//71dzZVWJrY9hCrgtvl5v3SyIxCZ4fZF47TxD9nfzmxcx76xmbUw== + dependencies: + json-parse-even-better-errors "^2.3.0" + just-diff "^3.0.1" + just-diff-apply "^3.0.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" + integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== + dependencies: + through "~2.3" + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.3.1" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pidtree@^0.3.0: + version "0.3.1" + resolved "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" + integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +proc-log@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/proc-log/-/proc-log-1.0.0.tgz#0d927307401f69ed79341e83a0b2c9a13395eb77" + integrity sha512-aCk8AO51s+4JyuYGg3Q/a6gnrlDO09NpVWePtjp7xwphcoQ04x5WAfCyugcsbLooWcMJ87CLkD4+604IckEdhg== + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise-all-reject-late@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz#f8ebf13483e5ca91ad809ccc2fcf25f26f8643c2" + integrity sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw== + +promise-call-limit@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/promise-call-limit/-/promise-call-limit-1.0.1.tgz#4bdee03aeb85674385ca934da7114e9bcd3c6e24" + integrity sha512-3+hgaa19jzCGLuSCbieeRsu5C2joKfYn8pY6JAuXFRVfF4IO+L7UPpFWNTeWT9pM7uhskvbPPd/oEOktCn317Q== + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== + +promise-retry@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" + integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== + dependencies: + err-code "^2.0.2" + retry "^0.12.0" + +prompts@^2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +promzard@^0.3.0: + version "0.3.0" + resolved "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee" + integrity sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw== + dependencies: + read "1" + +protobufjs@^6.11.3: + version "6.11.3" + resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" + integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== + dependencies: + "@protobufjs/aspromise" "^1.1.2" + "@protobufjs/base64" "^1.1.2" + "@protobufjs/codegen" "^2.0.4" + "@protobufjs/eventemitter" "^1.1.0" + "@protobufjs/fetch" "^1.1.0" + "@protobufjs/float" "^1.0.2" + "@protobufjs/inquire" "^1.1.0" + "@protobufjs/path" "^1.1.2" + "@protobufjs/pool" "^1.1.0" + "@protobufjs/utf8" "^1.1.0" + "@types/long" "^4.0.1" + "@types/node" ">=13.7.0" + long "^4.0.0" + +ps-tree@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" + integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== + dependencies: + event-stream "=3.3.4" + +psl@^1.1.24, psl@^1.1.28, psl@^1.1.33: + version "1.9.0" + resolved "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" + integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== + +punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== + +punycode@^2.1.0, punycode@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +qrcode-terminal@^0.12.0: + version "0.12.0" + resolved "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz#bb5b699ef7f9f0505092a3748be4464fe71b5819" + integrity sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ== + +qs@~6.5.2: + version "6.5.3" + resolved "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" + integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== + +query-string@6.13.6: + version "6.13.6" + resolved "https://registry.npmjs.org/query-string/-/query-string-6.13.6.tgz#e5ac7c74f2a5da43fbca0b883b4f0bafba439966" + integrity sha512-/WWZ7d9na6s2wMEGdVCVgKWE9Rt7nYyNIf7k8xmHXcesPMlEzicWo3lbYwHyA4wBktI2KrXxxZeACLbE84hvSQ== + dependencies: + decode-uri-component "^0.2.0" + split-on-first "^1.0.0" + strict-uri-encode "^2.0.0" + +querystringify@^2.1.1: + version "2.2.0" + resolved "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" + integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +read-cmd-shim@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-2.0.0.tgz#4a50a71d6f0965364938e9038476f7eede3928d9" + integrity sha512-HJpV9bQpkl6KwjxlJcBoqu9Ba0PQg8TqSNIOrulGt54a0uup0HtevreFHzYzkm0lpnleRdNBzXznKrgxglEHQw== + +read-package-json-fast@^2.0.1, read-package-json-fast@^2.0.2, read-package-json-fast@^2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz#323ca529630da82cb34b36cc0b996693c98c2b83" + integrity sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ== + dependencies: + json-parse-even-better-errors "^2.3.0" + npm-normalize-package-bin "^1.0.1" + +read-package-json@^4.1.1: + version "4.1.2" + resolved "https://registry.npmjs.org/read-package-json/-/read-package-json-4.1.2.tgz#b444d047de7c75d4a160cb056d00c0693c1df703" + integrity sha512-Dqer4pqzamDE2O4M55xp1qZMuLPqi4ldk2ya648FOMHRjwMzFhuxVrG04wd0c38IsvkVdr3vgHI6z+QTPdAjrQ== + dependencies: + glob "^7.1.1" + json-parse-even-better-errors "^2.3.0" + normalize-package-data "^3.0.0" + npm-normalize-package-bin "^1.0.0" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +read@1, read@^1.0.7, read@~1.0.1, read@~1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" + integrity sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ== + dependencies: + mute-stream "~0.0.4" + +readable-stream@^2.0.6: + version "2.3.7" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + 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" + +readable-stream@^3.1.1, readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdir-scoped-modules@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309" + integrity sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw== + dependencies: + debuglog "^1.0.1" + dezalgo "^1.0.0" + graceful-fs "^4.1.2" + once "^1.3.0" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + +regexpp@^3.1.0: + version "3.2.0" + resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +request-promise-core@1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" + integrity sha512-paa/JFJUwUCx5ksokBlaGIXAvIDB+izsRU6FpHrlezFU2fj8555sKN4r+wPyql5d5Bp1ya/vrUPfVqM51v2H0g== + dependencies: + lodash "^4.13.1" + +request-promise-native@1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" + integrity sha512-Y75hrP+fdfWTg8R9rGNFmLi2JsZ3LlmHa+HcljiXY88NU86TaChwfkhsPN+pdojFluO2Qr0Jb+lV/aCkYpeAyw== + dependencies: + request-promise-core "1.1.1" + stealthy-require "^1.1.0" + tough-cookie ">=2.3.3" + +request@2.88.0: + version "2.88.0" + resolved "https://registry.npmjs.org/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" + integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + har-validator "~5.1.0" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + oauth-sign "~0.9.0" + performance-now "^2.1.0" + qs "~6.5.2" + safe-buffer "^5.1.2" + tough-cookie "~2.4.3" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + +request@^2.88.2: + version "2.88.2" + resolved "https://registry.npmjs.org/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + har-validator "~5.1.3" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + oauth-sign "~0.9.0" + performance-now "^2.1.0" + qs "~6.5.2" + safe-buffer "^5.1.2" + tough-cookie "~2.5.0" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve@^1.10.0: + version "1.22.1" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +rimraf@^3.0.0, rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rpc-websockets@^7.4.2, rpc-websockets@^7.5.0: + version "7.5.0" + resolved "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.5.0.tgz#bbeb87572e66703ff151e50af1658f98098e2748" + integrity sha512-9tIRi1uZGy7YmDjErf1Ax3wtqdSSLIlnmL5OtOzgd5eqPKbsPpwDP5whUDO2LQay3Xp0CcHlcNSGzacNRluBaQ== + dependencies: + "@babel/runtime" "^7.17.2" + eventemitter3 "^4.0.7" + uuid "^8.3.2" + ws "^8.5.0" + optionalDependencies: + bufferutil "^4.0.1" + utf-8-validate "^5.0.2" + +rxjs@^7.1.0: + version "7.5.6" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc" + integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw== + dependencies: + tslib "^2.1.0" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +"safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: + version "2.1.2" + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +secp256k1@^4.0.2: + version "4.0.3" + resolved "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz#c4559ecd1b8d3c1827ed2d1b94190d69ce267303" + integrity sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA== + dependencies: + elliptic "^6.5.4" + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + +"semver@2 || 3 || 4 || 5", semver@^5.5.0: + version "5.7.1" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^7.1.1, semver@^7.1.3, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5: + version "7.3.7" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" + integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== + dependencies: + lru-cache "^6.0.0" + +serialize-javascript@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + dependencies: + randombytes "^2.1.0" + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@^1.6.1: + version "1.7.3" + resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" + integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +smart-buffer@^4.2.0: + version "4.2.0" + resolved "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" + integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +socks-proxy-agent@^6.0.0: + version "6.2.1" + resolved "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz#2687a31f9d7185e38d530bef1944fe1f1496d6ce" + integrity sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ== + dependencies: + agent-base "^6.0.2" + debug "^4.3.3" + socks "^2.6.2" + +socks@^2.6.2: + version "2.7.0" + resolved "https://registry.npmjs.org/socks/-/socks-2.7.0.tgz#f9225acdb841e874dca25f870e9130990f3913d0" + integrity sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA== + dependencies: + ip "^2.0.0" + smart-buffer "^4.2.0" + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.12" + resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" + integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + +split-on-first@^1.0.0: + version "1.1.0" + resolved "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" + integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== + +split@0.3: + version "0.3.3" + resolved "https://registry.npmjs.org/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== + dependencies: + through "2" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +sshpk@^1.7.0: + version "1.17.0" + resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" + integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + bcrypt-pbkdf "^1.0.0" + dashdash "^1.12.0" + ecc-jsbn "~0.1.1" + getpass "^0.1.1" + jsbn "~0.1.0" + safer-buffer "^2.0.2" + tweetnacl "~0.14.0" + +ssri@^8.0.0, ssri@^8.0.1: + version "8.0.1" + resolved "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" + integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== + dependencies: + minipass "^3.1.1" + +start-server-and-test@^1.14.0: + version "1.14.0" + resolved "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-1.14.0.tgz#c57f04f73eac15dd51733b551d775b40837fdde3" + integrity sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw== + dependencies: + bluebird "3.7.2" + check-more-types "2.24.0" + debug "4.3.2" + execa "5.1.1" + lazy-ass "1.6.0" + ps-tree "1.2.0" + wait-on "6.0.0" + +stealthy-require@^1.1.0: + version "1.1.1" + resolved "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + integrity sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g== + +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== + dependencies: + duplexer "~0.1.1" + +strict-uri-encode@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" + integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw== + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + 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" + +string-width@^2.0.0: + version "2.1.1" + resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string.prototype.padend@^3.0.0: + version "3.1.3" + resolved "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz#997a6de12c92c7cb34dc8a201a6c53d9bd88a5f1" + integrity sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + +string.prototype.trimend@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string.prototype.trimstart@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +stringify-package@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/stringify-package/-/stringify-package-1.0.1.tgz#e5aa3643e7f74d0f28628b72f3dad5cecfc3ba85" + integrity sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg== + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow== + dependencies: + ansi-regex "^3.0.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +superstruct@^0.14.2: + version "0.14.2" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" + integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ== + +superstruct@^0.15.2: + version "0.15.5" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.15.5.tgz#0f0a8d3ce31313f0d84c6096cd4fa1bfdedc9dab" + integrity sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ== + +superstruct@^0.8.3: + version "0.8.4" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.8.4.tgz#478a19649f6b02c6319c02044db6a1f5863c391f" + integrity sha512-48Ors8IVWZm/tMr8r0Si6+mJiB7mkD7jqvIzktjJ4+EnP5tBp0qOpiM1J8sCUorKx+TXWrfb3i1UcjdD1YK/wA== + dependencies: + kind-of "^6.0.2" + tiny-invariant "^1.0.6" + +supports-color@8.1.1: + version "8.1.1" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +table@^6.0.9: + version "6.8.0" + resolved "https://registry.npmjs.org/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca" + integrity sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA== + 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" + +tar@^6.0.2, tar@^6.1.0, tar@^6.1.11: + version "6.1.11" + resolved "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" + integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^3.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + +text-encoding-utf-8@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13" + integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg== + +text-table@^0.2.0, text-table@~0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +through@2, "through@>=2.2.7 <3", through@~2.3, through@~2.3.1: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +tiny-invariant@^1.0.6, tiny-invariant@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.2.0.tgz#a1141f86b672a9148c72e978a19a73b9b94a15a9" + integrity sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg== + +tiny-relative-date@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz#fa08aad501ed730f31cc043181d995c39a935e07" + integrity sha512-MOQHpzllWxDCHHaDno30hhLfbouoYlOI8YlMNtvKe1zXbjEVhbcEovQxvZrPvtiYW630GQDoMMarCnjfyfHA+A== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toml@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" + integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== + +tough-cookie@>=2.3.3: + version "4.1.2" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz#e53e84b85f24e0b65dd526f46628db6c85f6b874" + integrity sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ== + dependencies: + psl "^1.1.33" + punycode "^2.1.1" + universalify "^0.2.0" + url-parse "^1.5.3" + +tough-cookie@~2.4.3: + version "2.4.3" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" + integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== + dependencies: + psl "^1.1.24" + punycode "^1.4.1" + +tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +treeverse@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/treeverse/-/treeverse-1.0.4.tgz#a6b0ebf98a1bca6846ddc7ecbc900df08cb9cd5f" + integrity sha512-whw60l7r+8ZU8Tu/Uc2yxtc4ZTZbR/PF3u1IPNKGQ6p8EICLb3Z2lAgoqw9bqYd8IkgnsaOcLzYHFckjqNsf0g== + +ts-node@^10.9.1: + version "10.9.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" + integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +tslib@2.3.1: + version "2.3.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + +tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== + +tweetnacl@^1.0.0: + version "1.0.3" + resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596" + integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +typedarray-to-buffer@^3.1.5: + version "3.1.5" + resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== + dependencies: + is-typedarray "^1.0.0" + +typescript@^4.3.2, typescript@^4.8.3: + version "4.8.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88" + integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + 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" + +unique-filename@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" + integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== + dependencies: + unique-slug "^2.0.0" + +unique-slug@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" + integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== + dependencies: + imurmurhash "^0.1.4" + +universalify@^0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" + integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +url-parse@^1.5.3: + version "1.5.10" + resolved "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" + integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== + dependencies: + querystringify "^2.1.1" + requires-port "^1.0.0" + +utf-8-validate@^5.0.2: + version "5.0.9" + resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz#ba16a822fbeedff1a58918f2a6a6b36387493ea3" + integrity sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q== + dependencies: + node-gyp-build "^4.3.0" + +util-deprecate@^1.0.1, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +util@^0.12.0: + version "0.12.4" + resolved "https://registry.npmjs.org/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + safe-buffer "^5.1.2" + which-typed-array "^1.1.2" + +uuid@^3.3.2: + version "3.4.0" + resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + +validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +validate-npm-package-name@^3.0.0, validate-npm-package-name@~3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" + integrity sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw== + dependencies: + builtins "^1.0.3" + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +wait-on@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/wait-on/-/wait-on-6.0.0.tgz#7e9bf8e3d7fe2daecbb7a570ac8ca41e9311c7e7" + integrity sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw== + dependencies: + axios "^0.21.1" + joi "^17.4.0" + lodash "^4.17.21" + minimist "^1.2.5" + rxjs "^7.1.0" + +walk-up-path@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/walk-up-path/-/walk-up-path-1.0.0.tgz#d4745e893dd5fd0dbb58dd0a4c6a33d9c9fec53e" + integrity sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg== + +wcwidth@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + 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" + +which-typed-array@^1.1.2: + version "1.1.8" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f" + integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.9" + +which@2.0.2, which@^2.0.1, which@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +which@^1.2.9: + version "1.3.1" + resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0, wide-align@^1.1.2: + version "1.1.5" + resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + dependencies: + string-width "^1.0.2 || 2 || 3 || 4" + +word-wrap@^1.2.3: + version "1.2.3" + resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +workerpool@6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" + integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +write-file-atomic@^3.0.3: + version "3.0.3" + resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" + 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" + +ws@^7.0.0, ws@^7.4.5: + version "7.5.9" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +ws@^8.5.0: + version "8.8.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" + integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yargs-parser@20.2.4: + version "20.2.4" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" + integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-parser@^21.0.0: + version "21.1.1" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs-unparser@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" + integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== + dependencies: + camelcase "^6.0.0" + decamelize "^4.0.0" + flat "^5.0.2" + is-plain-obj "^2.1.0" + +yargs@16.2.0: + version "16.2.0" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yargs@^17.0.1: + version "17.5.1" + resolved "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" + integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.0.0" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/libraries/sbv2-lite/.gitignore b/javascript/sbv2-lite/.gitignore similarity index 100% rename from libraries/sbv2-lite/.gitignore rename to javascript/sbv2-lite/.gitignore diff --git a/libraries/sbv2-lite/.npmignore b/javascript/sbv2-lite/.npmignore similarity index 100% rename from libraries/sbv2-lite/.npmignore rename to javascript/sbv2-lite/.npmignore diff --git a/libraries/py/LICENSE b/javascript/sbv2-lite/LICENSE similarity index 100% rename from libraries/py/LICENSE rename to javascript/sbv2-lite/LICENSE diff --git a/libraries/sbv2-lite/README.md b/javascript/sbv2-lite/README.md similarity index 100% rename from libraries/sbv2-lite/README.md rename to javascript/sbv2-lite/README.md diff --git a/libraries/sbv2-lite/package.json b/javascript/sbv2-lite/package.json similarity index 90% rename from libraries/sbv2-lite/package.json rename to javascript/sbv2-lite/package.json index 2ed752c..d95294c 100644 --- a/libraries/sbv2-lite/package.json +++ b/javascript/sbv2-lite/package.json @@ -1,12 +1,12 @@ { "name": "@switchboard-xyz/sbv2-lite", - "version": "0.1.5", + "version": "0.1.6", "description": "", "private": false, "repository": { "type": "git", "url": "https://github.com/switchboard-xyz/switchboard-v2", - "directory": "libraries/sbv2-lite" + "directory": "javascript/sbv2-lite" }, "homepage": "https://docs.switchboard.xyz", "files": [ @@ -39,6 +39,7 @@ "@types/big.js": "^6.1.3", "@types/chai": "^4.3.1", "@types/mocha": "^9.1.0", + "@types/node": "^18.7.18", "assert": "^2.0.0", "chai": "^4.3.6", "mocha": "^9.2.2", @@ -46,5 +47,8 @@ "ts-node": "^10.7.0", "typedoc": "^0.23.8", "typescript": "^4.6.3" - } + }, + "pre-commit": [ + "build" + ] } diff --git a/libraries/sbv2-lite/src/index.ts b/javascript/sbv2-lite/src/index.ts similarity index 100% rename from libraries/sbv2-lite/src/index.ts rename to javascript/sbv2-lite/src/index.ts diff --git a/libraries/sbv2-lite/tests/sbv2.test.ts b/javascript/sbv2-lite/tests/sbv2.test.ts similarity index 100% rename from libraries/sbv2-lite/tests/sbv2.test.ts rename to javascript/sbv2-lite/tests/sbv2.test.ts diff --git a/libraries/sbv2-lite/tsconfig.base.json b/javascript/sbv2-lite/tsconfig.base.json similarity index 100% rename from libraries/sbv2-lite/tsconfig.base.json rename to javascript/sbv2-lite/tsconfig.base.json diff --git a/libraries/sbv2-lite/tsconfig.cjs.json b/javascript/sbv2-lite/tsconfig.cjs.json similarity index 100% rename from libraries/sbv2-lite/tsconfig.cjs.json rename to javascript/sbv2-lite/tsconfig.cjs.json diff --git a/libraries/sbv2-lite/tsconfig.json b/javascript/sbv2-lite/tsconfig.json similarity index 100% rename from libraries/sbv2-lite/tsconfig.json rename to javascript/sbv2-lite/tsconfig.json diff --git a/javascript/sbv2-lite/yarn.lock b/javascript/sbv2-lite/yarn.lock new file mode 100644 index 0000000..4113b7a --- /dev/null +++ b/javascript/sbv2-lite/yarn.lock @@ -0,0 +1,1655 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259" + integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== + dependencies: + regenerator-runtime "^0.13.4" + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.0" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@noble/ed25519@^1.7.0": + version "1.7.1" + resolved "https://registry.npmjs.org/@noble/ed25519/-/ed25519-1.7.1.tgz#6899660f6fbb97798a6fbd227227c4589a454724" + integrity sha512-Rk4SkJFaXZiznFyC/t77Q0NKS4FL7TLJJsVG2V2oiEq3kJVeTdxysEe/yRWSpnWMe808XRDJ+VFh5pt/FN5plw== + +"@noble/hashes@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183" + integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA== + +"@noble/secp256k1@^1.6.3": + version "1.7.0" + resolved "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.0.tgz#d15357f7c227e751d90aa06b05a0e5cf993ba8c1" + integrity sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw== + +"@project-serum/anchor@^0.24.2": + version "0.24.2" + resolved "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.24.2.tgz#a3c52a99605c80735f446ca9b3a4885034731004" + integrity sha512-0/718g8/DnEuwAidUwh5wLYphUYXhUbiClkuRNhvNoa+1Y8a4g2tJyxoae+emV+PG/Gikd/QUBNMkIcimiIRTA== + dependencies: + "@project-serum/borsh" "^0.2.5" + "@solana/web3.js" "^1.36.0" + base64-js "^1.5.1" + bn.js "^5.1.2" + bs58 "^4.0.1" + buffer-layout "^1.2.2" + camelcase "^5.3.1" + cross-fetch "^3.1.5" + crypto-hash "^1.3.0" + eventemitter3 "^4.0.7" + js-sha256 "^0.9.0" + pako "^2.0.3" + snake-case "^3.0.4" + toml "^3.0.0" + +"@project-serum/borsh@^0.2.5": + version "0.2.5" + resolved "https://registry.npmjs.org/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663" + integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q== + dependencies: + bn.js "^5.1.2" + buffer-layout "^1.2.0" + +"@solana/buffer-layout@^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.0.tgz#75b1b11adc487234821c81dfae3119b73a5fd734" + integrity sha512-lR0EMP2HC3+Mxwd4YcnZb0smnaDw7Bl2IQWZiTevRH5ZZBZn6VRWn3/92E3qdU4SSImJkA6IDHawOHAnx/qUvQ== + dependencies: + buffer "~6.0.3" + +"@solana/web3.js@^1.36.0": + version "1.62.0" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz#8fef9fd443217161ddc25e701f603222047bc520" + integrity sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA== + dependencies: + "@babel/runtime" "^7.12.5" + "@noble/ed25519" "^1.7.0" + "@noble/hashes" "^1.1.2" + "@noble/secp256k1" "^1.6.3" + "@solana/buffer-layout" "^4.0.0" + bigint-buffer "^1.1.5" + bn.js "^5.0.0" + borsh "^0.7.0" + bs58 "^4.0.1" + buffer "6.0.1" + fast-stable-stringify "^1.0.0" + jayson "^3.4.4" + node-fetch "2" + rpc-websockets "^7.5.0" + superstruct "^0.14.2" + +"@tsconfig/node10@^1.0.7": + version "1.0.9" + resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" + integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" + integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== + +"@types/big.js@^6.1.3": + version "6.1.6" + resolved "https://registry.npmjs.org/@types/big.js/-/big.js-6.1.6.tgz#3d417e758483d55345a03a087f7e0c87137ca444" + integrity sha512-0r9J+Zz9rYm2hOTwiMAVkm3XFQ4u5uTK37xrQMhc9bysn/sf/okzovWMYYIBMFTn/yrEZ11pusgLEaoarTlQbA== + +"@types/chai@^4.3.1": + version "4.3.3" + resolved "https://registry.npmjs.org/@types/chai/-/chai-4.3.3.tgz#3c90752792660c4b562ad73b3fbd68bf3bc7ae07" + integrity sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g== + +"@types/connect@^3.4.33": + version "3.4.35" + resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/mocha@^9.1.0": + version "9.1.1" + resolved "https://registry.npmjs.org/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4" + integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw== + +"@types/node@*", "@types/node@^18.7.18": + version "18.7.18" + resolved "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz#633184f55c322e4fb08612307c274ee6d5ed3154" + integrity sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg== + +"@types/node@^12.12.54": + version "12.20.55" + resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + +"@types/ws@^7.4.4": + version "7.4.7" + resolved "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" + integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== + dependencies: + "@types/node" "*" + +"@ungap/promise-all-settled@1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" + integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== + +JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +acorn-walk@^8.1.1: + version "8.2.0" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^8.4.1: + version "8.8.0" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" + integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== + +ansi-colors@4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +assert@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== + dependencies: + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" + +assertion-error@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" + integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-x@^3.0.2: + version "3.0.9" + resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" + integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== + dependencies: + safe-buffer "^5.0.1" + +base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +big.js@^6.1.1: + version "6.2.1" + resolved "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz#7205ce763efb17c2e41f26f121c420c6a7c2744f" + integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== + +bigint-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442" + integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA== + dependencies: + bindings "^1.3.0" + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.3.0: + version "1.5.0" + resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bn.js@^5.0.0, bn.js@^5.1.2, bn.js@^5.2.0: + version "5.2.1" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +borsh@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a" + integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA== + dependencies: + bn.js "^5.2.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +bs58@^4.0.0, bs58@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" + integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== + dependencies: + base-x "^3.0.2" + +buffer-layout@^1.2.0, buffer-layout@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/buffer-layout/-/buffer-layout-1.2.2.tgz#b9814e7c7235783085f9ca4966a0cfff112259d5" + integrity sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA== + +buffer@6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2" + integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@~6.0.3: + version "6.0.3" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +bufferutil@^4.0.1: + version "4.0.6" + resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" + integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== + dependencies: + node-gyp-build "^4.3.0" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +chai@^4.3.6: + version "4.3.6" + resolved "https://registry.npmjs.org/chai/-/chai-4.3.6.tgz#ffe4ba2d9fa9d6680cc0b370adae709ec9011e9c" + integrity sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q== + dependencies: + assertion-error "^1.1.0" + check-error "^1.0.2" + deep-eql "^3.0.1" + get-func-name "^2.0.0" + loupe "^2.3.1" + pathval "^1.1.1" + type-detect "^4.0.5" + +chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +check-error@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" + integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== + +chokidar@3.5.3: + version "3.5.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + 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" + optionalDependencies: + fsevents "~2.3.2" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +commander@^2.20.3: + version "2.20.3" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-fetch@^3.1.5: + version "3.1.5" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" + integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== + dependencies: + node-fetch "2.6.7" + +crypto-hash@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247" + integrity sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg== + +debug@4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + +decamelize@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" + integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== + +deep-eql@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" + integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== + dependencies: + type-detect "^4.0.0" + +define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== + +diff@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" + integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +es-abstract@^1.19.0, es-abstract@^1.19.5, es-abstract@^1.20.0: + version "1.20.2" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3" + integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.2" + get-symbol-description "^1.0.0" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + is-callable "^1.2.4" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + string.prototype.trimend "^1.0.5" + string.prototype.trimstart "^1.0.5" + unbox-primitive "^1.0.2" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ== + dependencies: + es6-promise "^4.0.3" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +eventemitter3@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +eyes@^0.1.8: + version "0.1.8" + resolved "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + integrity sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ== + +fast-stable-stringify@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" + integrity sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag== + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-func-name@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" + integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@7.2.0: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.0.0: + version "7.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +growl@1.10.5: + version "1.10.5" + resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +interpret@^1.0.0: + version "1.4.0" + resolved "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: + version "1.2.6" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz#fd6170b0b8c7e2cc73de342ef8284a2202023c44" + integrity sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q== + +is-core-module@^2.9.0: + version "2.10.0" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" + integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-nan@^1.2.1: + version "1.3.2" + resolved "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.3, is-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67" + integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isomorphic-ws@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" + integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== + +jayson@^3.4.4: + version "3.7.0" + resolved "https://registry.npmjs.org/jayson/-/jayson-3.7.0.tgz#b735b12d06d348639ae8230d7a1e2916cb078f25" + integrity sha512-tfy39KJMrrXJ+mFcMpxwBvFDetS8LAID93+rycFglIQM4kl3uNR3W4lBLE/FFhsoUCEox5Dt2adVpDm/XtebbQ== + dependencies: + "@types/connect" "^3.4.33" + "@types/node" "^12.12.54" + "@types/ws" "^7.4.4" + JSONStream "^1.3.5" + commander "^2.20.3" + delay "^5.0.0" + es6-promisify "^5.0.0" + eyes "^0.1.8" + isomorphic-ws "^4.0.1" + json-stringify-safe "^5.0.1" + lodash "^4.17.20" + uuid "^8.3.2" + ws "^7.4.5" + +js-sha256@^0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" + integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA== + +js-yaml@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +json-stringify-safe@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +jsonc-parser@^3.0.0: + version "3.2.0" + resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" + integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash@^4.17.20: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +loupe@^2.3.1: + version "2.3.4" + resolved "https://registry.npmjs.org/loupe/-/loupe-2.3.4.tgz#7e0b9bffc76f148f9be769cb1321d3dcf3cb25f3" + integrity sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ== + dependencies: + get-func-name "^2.0.0" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lunr@^2.3.9: + version "2.3.9" + resolved "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" + integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +marked@^4.0.19: + version "4.1.0" + resolved "https://registry.npmjs.org/marked/-/marked-4.1.0.tgz#3fc6e7485f21c1ca5d6ec4a39de820e146954796" + integrity sha512-+Z6KDjSPa6/723PQYyc1axYZpYYpDnECDaU6hkaf5gqBieBkMKYReL5hteF2QizhlMbgbo8umXl/clZ67+GlsA== + +minimatch@4.2.1: + version "4.2.1" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz#40d9d511a46bdc4e563c22c3080cde9c0d8299b4" + integrity sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.1.0: + version "5.1.0" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.3: + version "1.2.6" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +mocha@^9.2.2: + version "9.2.2" + resolved "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz#d70db46bdb93ca57402c809333e5a84977a88fb9" + integrity sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g== + dependencies: + "@ungap/promise-all-settled" "1.1.2" + ansi-colors "4.1.1" + browser-stdout "1.3.1" + chokidar "3.5.3" + debug "4.3.3" + diff "5.0.0" + escape-string-regexp "4.0.0" + find-up "5.0.0" + glob "7.2.0" + growl "1.10.5" + he "1.2.0" + js-yaml "4.1.0" + log-symbols "4.1.0" + minimatch "4.2.1" + ms "2.1.3" + nanoid "3.3.1" + serialize-javascript "6.0.0" + strip-json-comments "3.1.1" + supports-color "8.1.1" + which "2.0.2" + workerpool "6.2.0" + yargs "16.2.0" + yargs-parser "20.2.4" + yargs-unparser "2.0.0" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +nanoid@3.3.1: + version "3.3.1" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" + integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-fetch@2, node-fetch@2.6.7: + version "2.6.7" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-gyp-build@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" + integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +pako@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d" + integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +pathval@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" + integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.3.1" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== + dependencies: + resolve "^1.1.6" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +resolve@^1.1.6: + version "1.22.1" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +rpc-websockets@^7.5.0: + version "7.5.0" + resolved "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.5.0.tgz#bbeb87572e66703ff151e50af1658f98098e2748" + integrity sha512-9tIRi1uZGy7YmDjErf1Ax3wtqdSSLIlnmL5OtOzgd5eqPKbsPpwDP5whUDO2LQay3Xp0CcHlcNSGzacNRluBaQ== + dependencies: + "@babel/runtime" "^7.17.2" + eventemitter3 "^4.0.7" + uuid "^8.3.2" + ws "^8.5.0" + optionalDependencies: + bufferutil "^4.0.1" + utf-8-validate "^5.0.2" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +serialize-javascript@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + dependencies: + randombytes "^2.1.0" + +shelljs@^0.8.5: + version "0.8.5" + resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" + integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +shiki@^0.11.1: + version "0.11.1" + resolved "https://registry.npmjs.org/shiki/-/shiki-0.11.1.tgz#df0f719e7ab592c484d8b73ec10e215a503ab8cc" + integrity sha512-EugY9VASFuDqOexOgXR18ZV+TbFrQHeCpEYaXamO+SZlsnT/2LxuLBX25GGtIrwaEVFXUAbUQ601SWE2rMwWHA== + dependencies: + jsonc-parser "^3.0.0" + vscode-oniguruma "^1.6.1" + vscode-textmate "^6.0.0" + +shx@^0.3.4: + version "0.3.4" + resolved "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz#74289230b4b663979167f94e1935901406e40f02" + integrity sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g== + dependencies: + minimist "^1.2.3" + shelljs "^0.8.5" + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +string-width@^4.1.0, string-width@^4.2.0: + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + 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" + +string.prototype.trimend@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string.prototype.trimstart@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-json-comments@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +superstruct@^0.14.2: + version "0.14.2" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" + integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ== + +supports-color@8.1.1: + version "8.1.1" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +text-encoding-utf-8@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13" + integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg== + +"through@>=2.2.7 <3": + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toml@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" + integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +ts-node@^10.7.0: + version "10.9.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" + integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +tslib@^2.0.3: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + +type-detect@^4.0.0, type-detect@^4.0.5: + version "4.0.8" + resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + +typedoc@^0.23.8: + version "0.23.14" + resolved "https://registry.npmjs.org/typedoc/-/typedoc-0.23.14.tgz#d3af50b38fe98210ac39e112b5892f9d88546c93" + integrity sha512-s2I+ZKBET38EctZvbXp2GooHrNaKjWZkrwGEK/sttnOGiKJqU0vHrsdcwLgKZGuo2aedNL3RRPj1LnAAeYscig== + dependencies: + lunr "^2.3.9" + marked "^4.0.19" + minimatch "^5.1.0" + shiki "^0.11.1" + +typescript@^4.6.3: + version "4.8.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88" + integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + 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" + +utf-8-validate@^5.0.2: + version "5.0.9" + resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz#ba16a822fbeedff1a58918f2a6a6b36387493ea3" + integrity sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q== + dependencies: + node-gyp-build "^4.3.0" + +util@^0.12.0: + version "0.12.4" + resolved "https://registry.npmjs.org/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + safe-buffer "^5.1.2" + which-typed-array "^1.1.2" + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +vscode-oniguruma@^1.6.1: + version "1.6.2" + resolved "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.6.2.tgz#aeb9771a2f1dbfc9083c8a7fdd9cccaa3f386607" + integrity sha512-KH8+KKov5eS/9WhofZR8M8dMHWN2gTxjMsG4jd04YhpbPR91fUj7rYQ2/XjeHCJWbg7X++ApRIU9NUwM2vTvLA== + +vscode-textmate@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-6.0.0.tgz#a3777197235036814ac9a92451492f2748589210" + integrity sha512-gu73tuZfJgu+mvCSy4UZwd2JXykjK9zAZsfmDeut5dx/1a7FeTk0XwJsSuqQn+cuMCGVbIBfl+s53X4T19DnzQ== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + 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" + +which-typed-array@^1.1.2: + version "1.1.8" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f" + integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.9" + +which@2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +workerpool@6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" + integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@^7.4.5: + version "7.5.9" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +ws@^8.5.0: + version "8.8.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" + integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yargs-parser@20.2.4: + version "20.2.4" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" + integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-unparser@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" + integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== + dependencies: + camelcase "^6.0.0" + decamelize "^4.0.0" + flat "^5.0.2" + is-plain-obj "^2.1.0" + +yargs@16.2.0: + version "16.2.0" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/libraries/sbv2-utils/.npmignore b/javascript/sbv2-utils/.npmignore similarity index 100% rename from libraries/sbv2-utils/.npmignore rename to javascript/sbv2-utils/.npmignore diff --git a/libraries/rs/LICENSE b/javascript/sbv2-utils/LICENSE similarity index 100% rename from libraries/rs/LICENSE rename to javascript/sbv2-utils/LICENSE diff --git a/libraries/sbv2-utils/README.md b/javascript/sbv2-utils/README.md similarity index 100% rename from libraries/sbv2-utils/README.md rename to javascript/sbv2-utils/README.md diff --git a/libraries/sbv2-utils/package.json b/javascript/sbv2-utils/package.json similarity index 93% rename from libraries/sbv2-utils/package.json rename to javascript/sbv2-utils/package.json index e4ce8ee..c156b85 100644 --- a/libraries/sbv2-utils/package.json +++ b/javascript/sbv2-utils/package.json @@ -1,13 +1,13 @@ { "name": "@switchboard-xyz/sbv2-utils", - "version": "0.1.48", + "version": "0.1.49", "description": "some basic utility functions when working with switchboard-v2", "author": "", "license": "ISC", "repository": { "type": "git", "url": "https://github.com/switchboard-xyz/switchboard-v2", - "directory": "libraries/sbv2-utils" + "directory": "javascript/sbv2-utils" }, "homepage": "https://docs.switchboard.xyz", "files": [ @@ -40,7 +40,7 @@ "@solana/spl-token-v2": "npm:@solana/spl-token@^0.2.0", "@solana/web3.js": "^1.43.5", "@switchboard-xyz/common": "^2.0.0", - "@switchboard-xyz/switchboard-v2": "^0.0.135", + "@switchboard-xyz/switchboard-v2": "^0.0.136", "big.js": "^6.2.1", "bn.js": "^5.2.1", "chalk": "4", diff --git a/libraries/sbv2-utils/src/anchor.ts b/javascript/sbv2-utils/src/anchor.ts similarity index 100% rename from libraries/sbv2-utils/src/anchor.ts rename to javascript/sbv2-utils/src/anchor.ts diff --git a/libraries/sbv2-utils/src/async.ts b/javascript/sbv2-utils/src/async.ts similarity index 100% rename from libraries/sbv2-utils/src/async.ts rename to javascript/sbv2-utils/src/async.ts diff --git a/libraries/sbv2-utils/src/big.ts b/javascript/sbv2-utils/src/big.ts similarity index 100% rename from libraries/sbv2-utils/src/big.ts rename to javascript/sbv2-utils/src/big.ts diff --git a/libraries/sbv2-utils/src/const.ts b/javascript/sbv2-utils/src/const.ts similarity index 100% rename from libraries/sbv2-utils/src/const.ts rename to javascript/sbv2-utils/src/const.ts diff --git a/libraries/sbv2-utils/src/date.ts b/javascript/sbv2-utils/src/date.ts similarity index 100% rename from libraries/sbv2-utils/src/date.ts rename to javascript/sbv2-utils/src/date.ts diff --git a/libraries/sbv2-utils/src/errors.ts b/javascript/sbv2-utils/src/errors.ts similarity index 100% rename from libraries/sbv2-utils/src/errors.ts rename to javascript/sbv2-utils/src/errors.ts diff --git a/libraries/sbv2-utils/src/feed.ts b/javascript/sbv2-utils/src/feed.ts similarity index 100% rename from libraries/sbv2-utils/src/feed.ts rename to javascript/sbv2-utils/src/feed.ts diff --git a/libraries/sbv2-utils/src/index.ts b/javascript/sbv2-utils/src/index.ts similarity index 100% rename from libraries/sbv2-utils/src/index.ts rename to javascript/sbv2-utils/src/index.ts diff --git a/libraries/sbv2-utils/src/json.ts b/javascript/sbv2-utils/src/json.ts similarity index 100% rename from libraries/sbv2-utils/src/json.ts rename to javascript/sbv2-utils/src/json.ts diff --git a/libraries/sbv2-utils/src/nonce.ts b/javascript/sbv2-utils/src/nonce.ts similarity index 100% rename from libraries/sbv2-utils/src/nonce.ts rename to javascript/sbv2-utils/src/nonce.ts diff --git a/libraries/sbv2-utils/src/print.ts b/javascript/sbv2-utils/src/print.ts similarity index 100% rename from libraries/sbv2-utils/src/print.ts rename to javascript/sbv2-utils/src/print.ts diff --git a/libraries/sbv2-utils/src/queue.ts b/javascript/sbv2-utils/src/queue.ts similarity index 100% rename from libraries/sbv2-utils/src/queue.ts rename to javascript/sbv2-utils/src/queue.ts diff --git a/libraries/sbv2-utils/src/switchboard.ts b/javascript/sbv2-utils/src/switchboard.ts similarity index 100% rename from libraries/sbv2-utils/src/switchboard.ts rename to javascript/sbv2-utils/src/switchboard.ts diff --git a/libraries/sbv2-utils/src/test/context.ts b/javascript/sbv2-utils/src/test/context.ts similarity index 100% rename from libraries/sbv2-utils/src/test/context.ts rename to javascript/sbv2-utils/src/test/context.ts diff --git a/libraries/sbv2-utils/src/test/env.ts b/javascript/sbv2-utils/src/test/env.ts similarity index 100% rename from libraries/sbv2-utils/src/test/env.ts rename to javascript/sbv2-utils/src/test/env.ts diff --git a/libraries/sbv2-utils/src/test/index.ts b/javascript/sbv2-utils/src/test/index.ts similarity index 100% rename from libraries/sbv2-utils/src/test/index.ts rename to javascript/sbv2-utils/src/test/index.ts diff --git a/libraries/sbv2-utils/src/token.ts b/javascript/sbv2-utils/src/token.ts similarity index 100% rename from libraries/sbv2-utils/src/token.ts rename to javascript/sbv2-utils/src/token.ts diff --git a/libraries/sbv2-utils/src/transaction.ts b/javascript/sbv2-utils/src/transaction.ts similarity index 100% rename from libraries/sbv2-utils/src/transaction.ts rename to javascript/sbv2-utils/src/transaction.ts diff --git a/libraries/sbv2-utils/src/vrf.ts b/javascript/sbv2-utils/src/vrf.ts similarity index 100% rename from libraries/sbv2-utils/src/vrf.ts rename to javascript/sbv2-utils/src/vrf.ts diff --git a/libraries/sbv2-utils/tests/feed.tests.ts b/javascript/sbv2-utils/tests/feed.tests.ts similarity index 100% rename from libraries/sbv2-utils/tests/feed.tests.ts rename to javascript/sbv2-utils/tests/feed.tests.ts diff --git a/libraries/sbv2-utils/tsconfig.base.json b/javascript/sbv2-utils/tsconfig.base.json similarity index 89% rename from libraries/sbv2-utils/tsconfig.base.json rename to javascript/sbv2-utils/tsconfig.base.json index 166cdb1..51dae37 100644 --- a/libraries/sbv2-utils/tsconfig.base.json +++ b/javascript/sbv2-utils/tsconfig.base.json @@ -27,8 +27,8 @@ "noImplicitReturns": true, "strictPropertyInitialization": true, "paths": { - "@switchboard-xyz/switchboard-v2": ["../ts"] + "@switchboard-xyz/switchboard-v2": ["../solana.js"] } }, - "references": [{ "path": "../ts" }] + "references": [{ "path": "../solana.js" }] } diff --git a/libraries/sbv2-utils/tsconfig.cjs.json b/javascript/sbv2-utils/tsconfig.cjs.json similarity index 100% rename from libraries/sbv2-utils/tsconfig.cjs.json rename to javascript/sbv2-utils/tsconfig.cjs.json diff --git a/libraries/sbv2-utils/tsconfig.json b/javascript/sbv2-utils/tsconfig.json similarity index 87% rename from libraries/sbv2-utils/tsconfig.json rename to javascript/sbv2-utils/tsconfig.json index 8fd216f..4c7e200 100644 --- a/libraries/sbv2-utils/tsconfig.json +++ b/javascript/sbv2-utils/tsconfig.json @@ -9,7 +9,6 @@ "rootDir": "./src", "paths": { "@solana/spl-token": [ - "../../node_modules/@solana/spl-token", "./node_modules/@solana/spl-token" ] } diff --git a/javascript/sbv2-utils/yarn.lock b/javascript/sbv2-utils/yarn.lock new file mode 100644 index 0000000..f5327db --- /dev/null +++ b/javascript/sbv2-utils/yarn.lock @@ -0,0 +1,3430 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/helper-validator-identifier@^7.18.6": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/highlight@^7.10.4": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/runtime@^7.10.5", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2", "@babel/runtime@^7.3.1": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259" + integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== + dependencies: + regenerator-runtime "^0.13.4" + +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + 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" + +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + version "1.2.1" + resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@noble/ed25519@^1.7.0": + version "1.7.1" + resolved "https://registry.npmjs.org/@noble/ed25519/-/ed25519-1.7.1.tgz#6899660f6fbb97798a6fbd227227c4589a454724" + integrity sha512-Rk4SkJFaXZiznFyC/t77Q0NKS4FL7TLJJsVG2V2oiEq3kJVeTdxysEe/yRWSpnWMe808XRDJ+VFh5pt/FN5plw== + +"@noble/hashes@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183" + integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA== + +"@noble/secp256k1@^1.6.3": + version "1.7.0" + resolved "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.0.tgz#d15357f7c227e751d90aa06b05a0e5cf993ba8c1" + integrity sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw== + +"@orca-so/aquafarm@^0.0.12": + version "0.0.12" + resolved "https://registry.npmjs.org/@orca-so/aquafarm/-/aquafarm-0.0.12.tgz#255df50e9d8a408cebf600ee3507ff650484e94c" + integrity sha512-4vEkxeI5A5NHR9wre7Dtp9MYPCnke4v2PkaIv7933S490PErCYeqrlDPIEBTAKYWJpHFz5jR+h0bPFbmdMs3kw== + dependencies: + "@solana/spl-token" "^0.1.6" + "@solana/web3.js" "^1.20.0" + "@types/bn.js" "^5.1.0" + bn.js "^5.2.0" + buffer-layout "^1.2.1" + decimal.js "^10.3.0" + dotenv "^10.0.0" + eslint "^7.28.0" + mz "^2.7.0" + prompts "^2.4.1" + typescript "^4.3.2" + yargs "^17.0.1" + +"@orca-so/sdk@^1.2.24": + version "1.2.25" + resolved "https://registry.npmjs.org/@orca-so/sdk/-/sdk-1.2.25.tgz#3c00acb032567067a6d79528bb587b7057e183e8" + integrity sha512-9m4F9GgqNpK69IJ9SBg1//L471AO2X3cvG54jtM24sMIvMNiLiebdIrODLKIHyHcMouspK1qPTN20L64ymu8Bw== + dependencies: + "@orca-so/aquafarm" "^0.0.12" + "@orca-so/stablecurve" "^1.0.5" + "@solana/spl-token" "^0.1.5" + "@solana/spl-token-swap" "^0.1.2" + "@solana/web3.js" "^1.24.1" + decimal.js "^10.3.1" + +"@orca-so/stablecurve@^1.0.5": + version "1.0.6" + resolved "https://registry.npmjs.org/@orca-so/stablecurve/-/stablecurve-1.0.6.tgz#bff0d4c701e4361196ffb0fc641904e6d17df295" + integrity sha512-uZD1jVvOBxyuij4a5C2QT7Mv4m9lMABY/MvAz1xHnK+iJ5pkmSFdYEWzQZUrf8ElCRTYSN9yk7Kb18UmGZnT5g== + dependencies: + "@solana/spl-token" "^0.0.13" + bn.js "^5.1.3" + decimal.js "^10.2.1" + +"@project-serum/anchor@^0.24.2": + version "0.24.2" + resolved "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.24.2.tgz#a3c52a99605c80735f446ca9b3a4885034731004" + integrity sha512-0/718g8/DnEuwAidUwh5wLYphUYXhUbiClkuRNhvNoa+1Y8a4g2tJyxoae+emV+PG/Gikd/QUBNMkIcimiIRTA== + dependencies: + "@project-serum/borsh" "^0.2.5" + "@solana/web3.js" "^1.36.0" + base64-js "^1.5.1" + bn.js "^5.1.2" + bs58 "^4.0.1" + buffer-layout "^1.2.2" + camelcase "^5.3.1" + cross-fetch "^3.1.5" + crypto-hash "^1.3.0" + eventemitter3 "^4.0.7" + js-sha256 "^0.9.0" + pako "^2.0.3" + snake-case "^3.0.4" + toml "^3.0.0" + +"@project-serum/borsh@^0.2.5": + version "0.2.5" + resolved "https://registry.npmjs.org/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663" + integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q== + dependencies: + bn.js "^5.1.2" + buffer-layout "^1.2.0" + +"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" + integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== + +"@protobufjs/base64@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" + integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== + +"@protobufjs/codegen@^2.0.4": + version "2.0.4" + resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" + integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== + +"@protobufjs/eventemitter@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" + integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== + +"@protobufjs/fetch@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" + integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== + dependencies: + "@protobufjs/aspromise" "^1.1.1" + "@protobufjs/inquire" "^1.1.0" + +"@protobufjs/float@^1.0.2": + version "1.0.2" + resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" + integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== + +"@protobufjs/inquire@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" + integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== + +"@protobufjs/path@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" + integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== + +"@protobufjs/pool@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" + integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== + +"@protobufjs/utf8@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" + integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== + +"@saberhq/option-utils@^1.14.6": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/option-utils/-/option-utils-1.14.6.tgz#c48e4afb9d9a030e2b676beeeb2481c6529d3eb9" + integrity sha512-85IMZiYzSf3H7/ZYty+I5JW6EYGJQ8lmRri+wVuhmLtDX+E/iqEBeoS+ns56ZcyfRGl7nsuUriWnJamNz9ekBQ== + dependencies: + tslib "^2.4.0" + +"@saberhq/solana-contrib@^1.14.6": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/solana-contrib/-/solana-contrib-1.14.6.tgz#3fe36ace42b94f5c3f75a60b6b32d010d8b21f93" + integrity sha512-lPnzWgAk+xAYtssvLUTc6e6r0czJaMAqCZ2p7I7DsEFBpWgEzj6Tw7rYMXk1pmwgxg48vGWzBZK/aw+m7ccn1A== + dependencies: + "@saberhq/option-utils" "^1.14.6" + "@solana/buffer-layout" "^4.0.0" + "@types/promise-retry" "^1.1.3" + "@types/retry" "^0.12.2" + promise-retry "^2.0.1" + retry "^0.13.1" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@saberhq/token-utils@^1.13.32": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/token-utils/-/token-utils-1.14.6.tgz#6d36c053f61834405ccf395b958a258eba9ea45b" + integrity sha512-jfGUS+tb+WVJUMAOfXdYICzTWhaKRcaZN5km9os7cRHAAXTYNZTgFFRThuiuobBAe30SpnJB052rAQE0x0c2iA== + dependencies: + "@saberhq/solana-contrib" "^1.14.6" + "@solana/buffer-layout" "^4.0.0" + "@solana/spl-token" "^0.1.8" + "@ubeswap/token-math" "^5.2.0" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.0": + version "3.0.0" + resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" + integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@solana/buffer-layout-utils@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz#b45a6cab3293a2eb7597cceb474f229889d875ca" + integrity sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.32.0" + bigint-buffer "^1.1.5" + bignumber.js "^9.0.1" + +"@solana/buffer-layout@^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.0.tgz#75b1b11adc487234821c81dfae3119b73a5fd734" + integrity sha512-lR0EMP2HC3+Mxwd4YcnZb0smnaDw7Bl2IQWZiTevRH5ZZBZn6VRWn3/92E3qdU4SSImJkA6IDHawOHAnx/qUvQ== + dependencies: + buffer "~6.0.3" + +"@solana/spl-governance@^0.0.34": + version "0.0.34" + resolved "https://registry.npmjs.org/@solana/spl-governance/-/spl-governance-0.0.34.tgz#c61d81d356dbcee961bbc85e5d3538846fea57ad" + integrity sha512-tZppBiiVkUa5v+B/Ds+TqZ4yxR/vaIYLRxBk7x6R22dwk4/9SU87bVE60kRdDqTdMzqScFxIMdhaGl/fCX533A== + dependencies: + "@solana/web3.js" "^1.22.0" + bignumber.js "^9.0.1" + bn.js "^5.1.3" + borsh "^0.3.1" + bs58 "^4.0.1" + superstruct "^0.15.2" + +"@solana/spl-token-swap@^0.1.2": + version "0.1.4" + resolved "https://registry.npmjs.org/@solana/spl-token-swap/-/spl-token-swap-0.1.4.tgz#f776d97c37987c85ad9374afe5c91be2069fb7b4" + integrity sha512-q0vHo1m6UwqXTpKM4sk/gnPk8BopPJ+qx+qXkx0pMGiBep/66MAj7Drx186xStyqEXVuXtvgPEPIEREVJDKt/w== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.42.0" + bn.js "^5.1.3" + +"@solana/spl-token-v2@npm:@solana/spl-token@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.2.0.tgz#329bb6babb5de0f9c40035ddb1657f01a8347acd" + integrity sha512-RWcn31OXtdqIxmkzQfB2R+WpsJOVS6rKuvpxJFjvik2LyODd+WN58ZP3Rpjpro03fscGAkzlFuP3r42doRJgyQ== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/buffer-layout-utils" "^0.2.0" + "@solana/web3.js" "^1.32.0" + start-server-and-test "^1.14.0" + +"@solana/spl-token@^0.0.13": + version "0.0.13" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.0.13.tgz#5e0b235b1f8b34643280401dbfddeb34d13d1acd" + integrity sha512-WT8M9V/hxURR5jLbhr3zgwVsgcY6m8UhHtK045w7o+jx8FJ9MKARkj387WBFU7mKiFq0k8jw/8YL7XmnIUuH8Q== + dependencies: + "@babel/runtime" "^7.10.5" + "@solana/web3.js" "^0.86.1" + bn.js "^5.0.0" + buffer-layout "^1.2.0" + dotenv "8.2.0" + mkdirp "1.0.4" + +"@solana/spl-token@^0.1.5", "@solana/spl-token@^0.1.6", "@solana/spl-token@^0.1.8": + version "0.1.8" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.1.8.tgz#f06e746341ef8d04165e21fc7f555492a2a0faa6" + integrity sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ== + dependencies: + "@babel/runtime" "^7.10.5" + "@solana/web3.js" "^1.21.0" + bn.js "^5.1.0" + buffer "6.0.3" + buffer-layout "^1.2.0" + dotenv "10.0.0" + +"@solana/web3.js@^0.86.1": + version "0.86.4" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-0.86.4.tgz#69216d3928ca4727c25a1ea96c405e897156ac3b" + integrity sha512-FpabDmdyxBN5aHIVUWc9Q6pXJFWiLRm/xeyxFg9O9ICHjiUkd38omds7G0CAmykIccG7zaMziwtkXp+0KvQOhA== + dependencies: + "@babel/runtime" "^7.3.1" + bn.js "^5.0.0" + bs58 "^4.0.1" + buffer "^5.4.3" + buffer-layout "^1.2.0" + crypto-hash "^1.2.2" + esdoc-inject-style-plugin "^1.0.0" + jayson "^3.0.1" + keccak "^3.0.1" + mz "^2.7.0" + node-fetch "^2.2.0" + npm-run-all "^4.1.5" + rpc-websockets "^7.4.2" + secp256k1 "^4.0.2" + superstruct "^0.8.3" + tweetnacl "^1.0.0" + ws "^7.0.0" + +"@solana/web3.js@^1.20.0", "@solana/web3.js@^1.21.0", "@solana/web3.js@^1.22.0", "@solana/web3.js@^1.24.1", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.42.0", "@solana/web3.js@^1.43.5", "@solana/web3.js@^1.44.3": + version "1.62.0" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz#8fef9fd443217161ddc25e701f603222047bc520" + integrity sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA== + dependencies: + "@babel/runtime" "^7.12.5" + "@noble/ed25519" "^1.7.0" + "@noble/hashes" "^1.1.2" + "@noble/secp256k1" "^1.6.3" + "@solana/buffer-layout" "^4.0.0" + bigint-buffer "^1.1.5" + bn.js "^5.0.0" + borsh "^0.7.0" + bs58 "^4.0.1" + buffer "6.0.1" + fast-stable-stringify "^1.0.0" + jayson "^3.4.4" + node-fetch "2" + rpc-websockets "^7.5.0" + superstruct "^0.14.2" + +"@switchboard-xyz/common@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@switchboard-xyz/common/-/common-2.0.0.tgz#8c3551b3611c4a2348c46879c0ab2ea188a1f753" + integrity sha512-hC7J7NShGQHjWaCU7+w6tEtZ3KljxMIKJe5IaxPxD+cgdxhx58UMjngyevaCcle33aPyFZ/tbpm0tU2ZqzqZtQ== + dependencies: + big.js "^6.2.1" + bn.js "^5.2.1" + protobufjs "^6.11.3" + +"@switchboard-xyz/switchboard-v2@^0.0.136": + version "0.0.136" + resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.136.tgz#092f43e9c0e35f31033c124aa12ce46019af4eb5" + integrity sha512-vgaGqkDais2VJHfQawBSqrlKjvqtvOScHv7Q9bAlQtSieu7a3zMgH3rF4zAZAh/iphJLsm6bdMftUdcCMpVbKQ== + dependencies: + "@project-serum/anchor" "^0.24.2" + "@solana/spl-governance" "^0.0.34" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.44.3" + "@switchboard-xyz/common" "^2.0.0" + assert "^2.0.0" + big.js "^6.2.0" + bs58 "^5.0.0" + chan "^0.6.1" + crypto-js "^4.0.0" + glob "^8.0.3" + lodash "^4.17.21" + long "^4.0.0" + mocha "^9.1.1" + node-fetch "^3.2.6" + +"@types/big.js@^6.1.5", "@types/big.js@^6.1.6": + version "6.1.6" + resolved "https://registry.npmjs.org/@types/big.js/-/big.js-6.1.6.tgz#3d417e758483d55345a03a087f7e0c87137ca444" + integrity sha512-0r9J+Zz9rYm2hOTwiMAVkm3XFQ4u5uTK37xrQMhc9bysn/sf/okzovWMYYIBMFTn/yrEZ11pusgLEaoarTlQbA== + +"@types/bn.js@^4.11.5": + version "4.11.6" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c" + integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== + dependencies: + "@types/node" "*" + +"@types/bn.js@^5.1.0", "@types/bn.js@^5.1.1": + version "5.1.1" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz#b51e1b55920a4ca26e9285ff79936bbdec910682" + integrity sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g== + dependencies: + "@types/node" "*" + +"@types/connect@^3.4.33": + version "3.4.35" + resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/long@^4.0.1": + version "4.0.2" + resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" + integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== + +"@types/mocha@^9.0.0": + version "9.1.1" + resolved "https://registry.npmjs.org/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4" + integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw== + +"@types/node@*", "@types/node@>=13.7.0": + version "18.7.18" + resolved "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz#633184f55c322e4fb08612307c274ee6d5ed3154" + integrity sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg== + +"@types/node@^12.12.54": + version "12.20.55" + resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + +"@types/node@^17.0.45": + version "17.0.45" + resolved "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" + integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== + +"@types/promise-retry@^1.1.3": + version "1.1.3" + resolved "https://registry.npmjs.org/@types/promise-retry/-/promise-retry-1.1.3.tgz#baab427419da9088a1d2f21bf56249c21b3dd43c" + integrity sha512-LxIlEpEX6frE3co3vCO2EUJfHIta1IOmhDlcAsR4GMMv9hev1iTI9VwberVGkePJAuLZs5rMucrV8CziCfuJMw== + dependencies: + "@types/retry" "*" + +"@types/retry@*", "@types/retry@^0.12.2": + version "0.12.2" + resolved "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz#ed279a64fa438bb69f2480eda44937912bb7480a" + integrity sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow== + +"@types/ws@^7.4.4": + version "7.4.7" + resolved "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" + integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== + dependencies: + "@types/node" "*" + +"@ubeswap/token-math@^5.2.0": + version "5.2.1" + resolved "https://registry.npmjs.org/@ubeswap/token-math/-/token-math-5.2.1.tgz#66e70ba8d65b5fdb1b7459332fbdad4ddec32a64" + integrity sha512-wkIKDKIl6rml4CVK3fvjjLVk55Z8qEYTgjxZx7MnrTwECazyhiDuekb9WAaDPXcW5QNffCu8uv4Ba8wE96CJsg== + dependencies: + "@types/big.js" "^6.1.6" + big.js "^6.2.1" + decimal.js-light "^2.5.1" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@ungap/promise-all-settled@1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" + integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== + +JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +acorn-jsx@^5.3.1: + version "5.3.2" + resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@^7.4.0: + version "7.4.1" + resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +ajv@^6.10.0, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + 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" + +ajv@^8.0.1: + version "8.11.0" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" + integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ansi-colors@4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-colors@^4.1.1: + version "4.1.3" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +arrify@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + +assert@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== + dependencies: + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-x@^3.0.2: + version "3.0.9" + resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" + integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== + dependencies: + safe-buffer "^5.0.1" + +base-x@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz#d0e3b7753450c73f8ad2389b5c018a4af7b2224a" + integrity sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw== + +base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +big.js@^6.2.0, big.js@^6.2.1: + version "6.2.1" + resolved "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz#7205ce763efb17c2e41f26f121c420c6a7c2744f" + integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== + +bigint-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442" + integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA== + dependencies: + bindings "^1.3.0" + +bignumber.js@^9.0.1: + version "9.1.0" + resolved "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62" + integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.3.0: + version "1.5.0" + resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bluebird@3.7.2: + version "3.7.2" + resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.0.0, bn.js@^5.1.0, bn.js@^5.1.2, bn.js@^5.1.3, bn.js@^5.2.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +borsh@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.3.1.tgz#c31c3a149610e37913deada80e89073fb15cf55b" + integrity sha512-gJoSTnhwLxN/i2+15Y7uprU8h3CKI+Co4YKZKvrGYUy0FwHWM20x5Sx7eU8Xv4HQqV+7rb4r3P7K1cBIQe3q8A== + dependencies: + "@types/bn.js" "^4.11.5" + bn.js "^5.0.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +borsh@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a" + integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA== + dependencies: + bn.js "^5.2.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +bs58@^4.0.0, bs58@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" + integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== + dependencies: + base-x "^3.0.2" + +bs58@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz#865575b4d13c09ea2a84622df6c8cbeb54ffc279" + integrity sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ== + dependencies: + base-x "^4.0.0" + +buffer-from@^1.0.0, buffer-from@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer-layout@^1.2.0, buffer-layout@^1.2.1, buffer-layout@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/buffer-layout/-/buffer-layout-1.2.2.tgz#b9814e7c7235783085f9ca4966a0cfff112259d5" + integrity sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA== + +buffer@6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2" + integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@6.0.3, buffer@~6.0.3: + version "6.0.3" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@^5.4.3: + version "5.7.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +bufferutil@^4.0.1: + version "4.0.6" + resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" + integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== + dependencies: + node-gyp-build "^4.3.0" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +chalk@4, chalk@^4.0.0, chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^2.0.0, chalk@^2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + 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" + +chan@^0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/chan/-/chan-0.6.1.tgz#ec0ad132e5bc62c27ef10ccbfc4d8dcd8ca00640" + integrity sha512-/TdBP2UhbBmw7qnqkzo9Mk4rzvwRv4dlNPXFerqWy90T8oBspKagJNZxrDbExKHhx9uXXHjo3f9mHgs9iKO3nQ== + +check-more-types@2.24.0: + version "2.24.0" + resolved "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== + +cheerio@0.22.0: + version "0.22.0" + resolved "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" + integrity sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA== + dependencies: + css-select "~1.2.0" + dom-serializer "~0.1.0" + entities "~1.1.1" + htmlparser2 "^3.9.1" + lodash.assignin "^4.0.9" + lodash.bind "^4.1.4" + lodash.defaults "^4.0.1" + lodash.filter "^4.4.0" + lodash.flatten "^4.2.0" + lodash.foreach "^4.3.0" + lodash.map "^4.4.0" + lodash.merge "^4.4.0" + lodash.pick "^4.2.1" + lodash.reduce "^4.4.0" + lodash.reject "^4.4.0" + lodash.some "^4.4.0" + +chokidar@3.5.3: + version "3.5.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + 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" + optionalDependencies: + fsevents "~2.3.2" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +commander@^2.20.3: + version "2.20.3" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +cross-fetch@^3.1.5: + version "3.1.5" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" + integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== + dependencies: + node-fetch "2.6.7" + +cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-hash@^1.2.2, crypto-hash@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247" + integrity sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg== + +crypto-js@^4.0.0: + version "4.1.1" + resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" + integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== + +css-select@~1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + integrity sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA== + dependencies: + boolbase "~1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "~1.0.1" + +css-what@2.1: + version "2.1.3" + resolved "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" + integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== + +data-uri-to-buffer@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" + integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== + +debug@4.3.2: + version "4.3.2" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + +debug@4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + +debug@^4.0.1, debug@^4.1.1: + version "4.3.4" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +decamelize@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" + integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== + +decimal.js-light@^2.5.1: + version "2.5.1" + resolved "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz#134fd32508f19e208f4fb2f8dac0d2626a867934" + integrity sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg== + +decimal.js@^10.2.1, decimal.js@^10.3.0, decimal.js@^10.3.1: + version "10.4.0" + resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.0.tgz#97a7448873b01e92e5ff9117d89a7bca8e63e0fe" + integrity sha512-Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg== + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== + +diff@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" + integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== + +diff@^3.1.0: + version "3.5.0" + resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-serializer@0: + version "0.2.2" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@~0.1.0: + version "0.1.1" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" + integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== + dependencies: + domelementtype "^1.3.0" + entities "^1.1.1" + +domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domelementtype@^2.0.1: + version "2.3.0" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^2.3.0: + version "2.4.2" + resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" + integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== + dependencies: + domelementtype "1" + +domutils@1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + integrity sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw== + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^1.5.1: + version "1.7.0" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dotenv@10.0.0, dotenv@^10.0.0: + version "10.0.0" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== + +dotenv@8.2.0: + version "8.2.0" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" + integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== + +dotenv@^16.0.1: + version "16.0.2" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz#0b0f8652c016a3858ef795024508cddc4bffc5bf" + integrity sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA== + +duplexer@~0.1.1: + version "0.1.2" + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +elliptic@^6.5.4: + version "6.5.4" + resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +enquirer@^2.3.5: + version "2.3.6" + resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + dependencies: + ansi-colors "^4.1.1" + +entities@^1.1.1, entities@~1.1.1: + version "1.1.2" + resolved "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" + integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +err-code@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.5, es-abstract@^1.20.0: + version "1.20.2" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3" + integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.2" + get-symbol-description "^1.0.0" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + is-callable "^1.2.4" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + string.prototype.trimend "^1.0.5" + string.prototype.trimstart "^1.0.5" + unbox-primitive "^1.0.2" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ== + dependencies: + es6-promise "^4.0.3" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +esdoc-inject-style-plugin@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/esdoc-inject-style-plugin/-/esdoc-inject-style-plugin-1.0.0.tgz#a13597368bb9fb89c365e066495caf97a4decbb1" + integrity sha512-LqSGr3YKe+vY2u6TCp9K+EEt97S78KjdJUz5PXyitHkp4nGXRSZq2ftEQJioF/WtTeGYWeQLzNAM9LihIlisqg== + dependencies: + cheerio "0.22.0" + fs-extra "1.0.0" + +eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint@^7.28.0: + version "7.32.0" + resolved "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + 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" + +espree@^7.3.0, espree@^7.3.1: + version "7.3.1" + resolved "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" + integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== + dependencies: + acorn "^7.4.0" + acorn-jsx "^5.3.1" + eslint-visitor-keys "^1.3.0" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +event-stream@=3.3.4: + version "3.3.4" + resolved "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +eventemitter3@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +execa@5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + 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" + +eyes@^0.1.8: + version "0.1.8" + resolved "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + integrity sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fast-stable-stringify@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" + integrity sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag== + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +flatted@^3.1.0: + version "3.2.7" + resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== + +follow-redirects@^1.14.0: + version "1.15.2" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +from@~0: + version "0.1.7" + resolved "https://registry.npmjs.org/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" + integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== + +fs-extra@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" + integrity sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== + +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@7.2.0: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.0.0, glob@^7.1.3: + version "7.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^8.0.3: + version "8.0.3" + resolved "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" + integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +globals@^13.6.0, globals@^13.9.0: + version "13.17.0" + resolved "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" + integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== + dependencies: + type-fest "^0.20.2" + +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: + version "4.2.10" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +growl@1.10.5: + version "1.10.5" + resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +htmlparser2@^3.9.1: + version "3.10.1" + resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" + integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== + dependencies: + domelementtype "^1.3.1" + domhandler "^2.3.0" + domutils "^1.5.1" + entities "^1.1.1" + inherits "^2.0.1" + readable-stream "^3.1.1" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +ieee754@^1.1.13, ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +interpret@^1.0.0: + version "1.4.0" + resolved "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: + version "1.2.6" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz#fd6170b0b8c7e2cc73de342ef8284a2202023c44" + integrity sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q== + +is-core-module@^2.9.0: + version "2.10.0" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" + integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-nan@^1.2.1: + version "1.3.2" + resolved "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.3, is-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67" + integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isomorphic-ws@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" + integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== + +jayson@^3.0.1, jayson@^3.4.4: + version "3.7.0" + resolved "https://registry.npmjs.org/jayson/-/jayson-3.7.0.tgz#b735b12d06d348639ae8230d7a1e2916cb078f25" + integrity sha512-tfy39KJMrrXJ+mFcMpxwBvFDetS8LAID93+rycFglIQM4kl3uNR3W4lBLE/FFhsoUCEox5Dt2adVpDm/XtebbQ== + dependencies: + "@types/connect" "^3.4.33" + "@types/node" "^12.12.54" + "@types/ws" "^7.4.4" + JSONStream "^1.3.5" + commander "^2.20.3" + delay "^5.0.0" + es6-promisify "^5.0.0" + eyes "^0.1.8" + isomorphic-ws "^4.0.1" + json-stringify-safe "^5.0.1" + lodash "^4.17.20" + uuid "^8.3.2" + ws "^7.4.5" + +joi@^17.4.0: + version "17.6.0" + resolved "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2" + integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.0" + "@sideway/pinpoint" "^2.0.0" + +js-sha256@^0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" + integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA== + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json-stringify-safe@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +jsonc-parser@^3.0.0: + version "3.2.0" + resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" + integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== + +jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + integrity sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +keccak@^3.0.1: + version "3.0.2" + resolved "https://registry.npmjs.org/keccak/-/keccak-3.0.2.tgz#4c2c6e8c54e04f2670ee49fa734eb9da152206e0" + integrity sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ== + dependencies: + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + readable-stream "^3.6.0" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + integrity sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw== + optionalDependencies: + graceful-fs "^4.1.9" + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +lazy-ass@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.assignin@^4.0.9: + version "4.2.0" + resolved "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" + integrity sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg== + +lodash.bind@^4.1.4: + version "4.2.1" + resolved "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" + integrity sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA== + +lodash.defaults@^4.0.1: + version "4.2.0" + resolved "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" + integrity sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ== + +lodash.filter@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" + integrity sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ== + +lodash.flatten@^4.2.0: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" + integrity sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g== + +lodash.foreach@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" + integrity sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ== + +lodash.map@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" + integrity sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q== + +lodash.merge@^4.4.0, lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.pick@^4.2.1: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" + integrity sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q== + +lodash.reduce@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" + integrity sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw== + +lodash.reject@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" + integrity sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ== + +lodash.some@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" + integrity sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ== + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== + +lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +long@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" + integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +lunr@^2.3.9: + version "2.3.9" + resolved "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" + integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== + +marked@^4.0.19: + version "4.1.0" + resolved "https://registry.npmjs.org/marked/-/marked-4.1.0.tgz#3fc6e7485f21c1ca5d6ec4a39de820e146954796" + integrity sha512-+Z6KDjSPa6/723PQYyc1axYZpYYpDnECDaU6hkaf5gqBieBkMKYReL5hteF2QizhlMbgbo8umXl/clZ67+GlsA== + +memorystream@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" + integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + +minimatch@4.2.1: + version "4.2.1" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz#40d9d511a46bdc4e563c22c3080cde9c0d8299b4" + integrity sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1, minimatch@^5.1.0: + version "5.1.0" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6: + version "1.2.6" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +mkdirp@1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mkdirp@^0.5.1: + version "0.5.6" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +mocha@^9.1.1: + version "9.2.2" + resolved "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz#d70db46bdb93ca57402c809333e5a84977a88fb9" + integrity sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g== + dependencies: + "@ungap/promise-all-settled" "1.1.2" + ansi-colors "4.1.1" + browser-stdout "1.3.1" + chokidar "3.5.3" + debug "4.3.3" + diff "5.0.0" + escape-string-regexp "4.0.0" + find-up "5.0.0" + glob "7.2.0" + growl "1.10.5" + he "1.2.0" + js-yaml "4.1.0" + log-symbols "4.1.0" + minimatch "4.2.1" + ms "2.1.3" + nanoid "3.3.1" + serialize-javascript "6.0.0" + strip-json-comments "3.1.1" + supports-color "8.1.1" + which "2.0.2" + workerpool "6.2.0" + yargs "16.2.0" + yargs-parser "20.2.4" + yargs-unparser "2.0.0" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@3.3.1: + version "3.3.1" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" + integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-addon-api@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32" + integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA== + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@2, node-fetch@2.6.7, node-fetch@^2.2.0: + version "2.6.7" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^3.2.6: + version "3.2.10" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8" + integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-gyp-build@^4.2.0, node-gyp-build@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" + integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + +normalize-package-data@^2.3.2: + version "2.5.0" + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-all@^4.1.5: + version "4.1.5" + resolved "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" + integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== + dependencies: + ansi-styles "^3.2.1" + chalk "^2.4.1" + cross-spawn "^6.0.5" + memorystream "^0.3.1" + minimatch "^3.0.4" + pidtree "^0.3.0" + read-pkg "^3.0.0" + shell-quote "^1.6.1" + string.prototype.padend "^3.0.0" + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +nth-check@~1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + dependencies: + boolbase "~1.0.0" + +object-assign@^4.0.1: + version "4.1.1" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + 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.3" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +pako@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d" + integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" + integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== + dependencies: + through "~2.3" + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.3.1" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pidtree@^0.3.0: + version "0.3.1" + resolved "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" + integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise-retry@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" + integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== + dependencies: + err-code "^2.0.2" + retry "^0.12.0" + +prompts@^2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +protobufjs@^6.11.3: + version "6.11.3" + resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" + integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== + dependencies: + "@protobufjs/aspromise" "^1.1.2" + "@protobufjs/base64" "^1.1.2" + "@protobufjs/codegen" "^2.0.4" + "@protobufjs/eventemitter" "^1.1.0" + "@protobufjs/fetch" "^1.1.0" + "@protobufjs/float" "^1.0.2" + "@protobufjs/inquire" "^1.1.0" + "@protobufjs/path" "^1.1.2" + "@protobufjs/pool" "^1.1.0" + "@protobufjs/utf8" "^1.1.0" + "@types/long" "^4.0.1" + "@types/node" ">=13.7.0" + long "^4.0.0" + +ps-tree@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" + integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== + dependencies: + event-stream "=3.3.4" + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +readable-stream@^3.1.1, readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== + dependencies: + resolve "^1.1.6" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + +regexpp@^3.1.0: + version "3.2.0" + resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve@^1.1.6, resolve@^1.10.0: + version "1.22.1" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rpc-websockets@^7.4.2, rpc-websockets@^7.5.0: + version "7.5.0" + resolved "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.5.0.tgz#bbeb87572e66703ff151e50af1658f98098e2748" + integrity sha512-9tIRi1uZGy7YmDjErf1Ax3wtqdSSLIlnmL5OtOzgd5eqPKbsPpwDP5whUDO2LQay3Xp0CcHlcNSGzacNRluBaQ== + dependencies: + "@babel/runtime" "^7.17.2" + eventemitter3 "^4.0.7" + uuid "^8.3.2" + ws "^8.5.0" + optionalDependencies: + bufferutil "^4.0.1" + utf-8-validate "^5.0.2" + +rxjs@^7.1.0: + version "7.5.6" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc" + integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw== + dependencies: + tslib "^2.1.0" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +secp256k1@^4.0.2: + version "4.0.3" + resolved "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz#c4559ecd1b8d3c1827ed2d1b94190d69ce267303" + integrity sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA== + dependencies: + elliptic "^6.5.4" + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + +"semver@2 || 3 || 4 || 5", semver@^5.5.0: + version "5.7.1" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^7.2.1: + version "7.3.7" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" + integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== + dependencies: + lru-cache "^6.0.0" + +serialize-javascript@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + dependencies: + randombytes "^2.1.0" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@^1.6.1: + version "1.7.3" + resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" + integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== + +shelljs@^0.8.5: + version "0.8.5" + resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" + integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +shiki@^0.11.1: + version "0.11.1" + resolved "https://registry.npmjs.org/shiki/-/shiki-0.11.1.tgz#df0f719e7ab592c484d8b73ec10e215a503ab8cc" + integrity sha512-EugY9VASFuDqOexOgXR18ZV+TbFrQHeCpEYaXamO+SZlsnT/2LxuLBX25GGtIrwaEVFXUAbUQ601SWE2rMwWHA== + dependencies: + jsonc-parser "^3.0.0" + vscode-oniguruma "^1.6.1" + vscode-textmate "^6.0.0" + +shx@^0.3.4: + version "0.3.4" + resolved "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz#74289230b4b663979167f94e1935901406e40f02" + integrity sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g== + dependencies: + minimist "^1.2.3" + shelljs "^0.8.5" + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +source-map-support@^0.5.6: + version "0.5.21" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.12" + resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" + integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + +split@0.3: + version "0.3.3" + resolved "https://registry.npmjs.org/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== + dependencies: + through "2" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +start-server-and-test@^1.14.0: + version "1.14.0" + resolved "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-1.14.0.tgz#c57f04f73eac15dd51733b551d775b40837fdde3" + integrity sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw== + dependencies: + bluebird "3.7.2" + check-more-types "2.24.0" + debug "4.3.2" + execa "5.1.1" + lazy-ass "1.6.0" + ps-tree "1.2.0" + wait-on "6.0.0" + +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== + dependencies: + duplexer "~0.1.1" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + 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" + +string.prototype.padend@^3.0.0: + version "3.1.3" + resolved "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz#997a6de12c92c7cb34dc8a201a6c53d9bd88a5f1" + integrity sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + +string.prototype.trimend@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string.prototype.trimstart@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +superstruct@^0.14.2: + version "0.14.2" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" + integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ== + +superstruct@^0.15.2: + version "0.15.5" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.15.5.tgz#0f0a8d3ce31313f0d84c6096cd4fa1bfdedc9dab" + integrity sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ== + +superstruct@^0.8.3: + version "0.8.4" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.8.4.tgz#478a19649f6b02c6319c02044db6a1f5863c391f" + integrity sha512-48Ors8IVWZm/tMr8r0Si6+mJiB7mkD7jqvIzktjJ4+EnP5tBp0qOpiM1J8sCUorKx+TXWrfb3i1UcjdD1YK/wA== + dependencies: + kind-of "^6.0.2" + tiny-invariant "^1.0.6" + +supports-color@8.1.1: + version "8.1.1" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +table@^6.0.9: + version "6.8.0" + resolved "https://registry.npmjs.org/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca" + integrity sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA== + 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" + +text-encoding-utf-8@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13" + integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg== + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +through@2, "through@>=2.2.7 <3", through@~2.3, through@~2.3.1: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +tiny-invariant@^1.0.6, tiny-invariant@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.2.0.tgz#a1141f86b672a9148c72e978a19a73b9b94a15a9" + integrity sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toml@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" + integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +ts-mocha@^9.0.2: + version "9.0.2" + resolved "https://registry.npmjs.org/ts-mocha/-/ts-mocha-9.0.2.tgz#c1ef0248874d04a0f26dd9bd8d88e617a8d82ab1" + integrity sha512-WyQjvnzwrrubl0JT7EC1yWmNpcsU3fOuBFfdps30zbmFBgKniSaSOyZMZx+Wq7kytUs5CY+pEbSYEbGfIKnXTw== + dependencies: + ts-node "7.0.1" + optionalDependencies: + tsconfig-paths "^3.5.0" + +ts-node@7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-7.0.1.tgz#9562dc2d1e6d248d24bc55f773e3f614337d9baf" + integrity sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw== + dependencies: + arrify "^1.0.0" + buffer-from "^1.1.0" + diff "^3.1.0" + make-error "^1.1.1" + minimist "^1.2.0" + mkdirp "^0.5.1" + source-map-support "^0.5.6" + yn "^2.0.0" + +tsconfig-paths@^3.5.0: + version "3.14.1" + resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" + integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + +tweetnacl@^1.0.0: + version "1.0.3" + resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596" + integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +typedoc@^0.23.8: + version "0.23.14" + resolved "https://registry.npmjs.org/typedoc/-/typedoc-0.23.14.tgz#d3af50b38fe98210ac39e112b5892f9d88546c93" + integrity sha512-s2I+ZKBET38EctZvbXp2GooHrNaKjWZkrwGEK/sttnOGiKJqU0vHrsdcwLgKZGuo2aedNL3RRPj1LnAAeYscig== + dependencies: + lunr "^2.3.9" + marked "^4.0.19" + minimatch "^5.1.0" + shiki "^0.11.1" + +typescript@^4.3.2, typescript@^4.6.3: + version "4.8.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88" + integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + 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" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +utf-8-validate@^5.0.2: + version "5.0.9" + resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz#ba16a822fbeedff1a58918f2a6a6b36387493ea3" + integrity sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q== + dependencies: + node-gyp-build "^4.3.0" + +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +util@^0.12.0: + version "0.12.4" + resolved "https://registry.npmjs.org/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + safe-buffer "^5.1.2" + which-typed-array "^1.1.2" + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +vscode-oniguruma@^1.6.1: + version "1.6.2" + resolved "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.6.2.tgz#aeb9771a2f1dbfc9083c8a7fdd9cccaa3f386607" + integrity sha512-KH8+KKov5eS/9WhofZR8M8dMHWN2gTxjMsG4jd04YhpbPR91fUj7rYQ2/XjeHCJWbg7X++ApRIU9NUwM2vTvLA== + +vscode-textmate@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-6.0.0.tgz#a3777197235036814ac9a92451492f2748589210" + integrity sha512-gu73tuZfJgu+mvCSy4UZwd2JXykjK9zAZsfmDeut5dx/1a7FeTk0XwJsSuqQn+cuMCGVbIBfl+s53X4T19DnzQ== + +wait-on@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/wait-on/-/wait-on-6.0.0.tgz#7e9bf8e3d7fe2daecbb7a570ac8ca41e9311c7e7" + integrity sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw== + dependencies: + axios "^0.21.1" + joi "^17.4.0" + lodash "^4.17.21" + minimist "^1.2.5" + rxjs "^7.1.0" + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + 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" + +which-typed-array@^1.1.2: + version "1.1.8" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f" + integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.9" + +which@2.0.2, which@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +which@^1.2.9: + version "1.3.1" + resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +word-wrap@^1.2.3: + version "1.2.3" + resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +workerpool@6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" + integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@^7.0.0, ws@^7.4.5: + version "7.5.9" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +ws@^8.5.0: + version "8.8.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" + integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yargs-parser@20.2.4: + version "20.2.4" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" + integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-parser@^21.0.0: + version "21.1.1" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs-unparser@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" + integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== + dependencies: + camelcase "^6.0.0" + decamelize "^4.0.0" + flat "^5.0.2" + is-plain-obj "^2.1.0" + +yargs@16.2.0: + version "16.2.0" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yargs@^17.0.1: + version "17.5.1" + resolved "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" + integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.0.0" + +yn@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a" + integrity sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/libraries/ts/.gitignore b/javascript/solana.js/.gitignore similarity index 100% rename from libraries/ts/.gitignore rename to javascript/solana.js/.gitignore diff --git a/libraries/ts/.npmignore b/javascript/solana.js/.npmignore similarity index 100% rename from libraries/ts/.npmignore rename to javascript/solana.js/.npmignore diff --git a/libraries/sbv2-lite/LICENSE b/javascript/solana.js/LICENSE similarity index 100% rename from libraries/sbv2-lite/LICENSE rename to javascript/solana.js/LICENSE diff --git a/libraries/ts/README.md b/javascript/solana.js/README.md similarity index 100% rename from libraries/ts/README.md rename to javascript/solana.js/README.md diff --git a/libraries/ts/package.json b/javascript/solana.js/package.json similarity index 97% rename from libraries/ts/package.json rename to javascript/solana.js/package.json index 6b9108a..ff154f7 100644 --- a/libraries/ts/package.json +++ b/javascript/solana.js/package.json @@ -1,6 +1,6 @@ { "name": "@switchboard-xyz/switchboard-v2", - "version": "0.0.135", + "version": "0.0.136", "license": "MIT", "author": "mitch@switchboard.xyz", "description": "API wrapper for intergating with the Switchboardv2 program", @@ -12,7 +12,7 @@ "repository": { "type": "git", "url": "https://github.com/switchboard-xyz/switchboard-v2", - "directory": "libraries/ts" + "directory": "javascript/solana.js" }, "homepage": "https://docs.switchboard.xyz", "files": [ diff --git a/libraries/ts/src/index.ts b/javascript/solana.js/src/index.ts similarity index 100% rename from libraries/ts/src/index.ts rename to javascript/solana.js/src/index.ts diff --git a/libraries/ts/src/sbv2.ts b/javascript/solana.js/src/sbv2.ts similarity index 99% rename from libraries/ts/src/sbv2.ts rename to javascript/solana.js/src/sbv2.ts index b71cb4c..ae2fe78 100644 --- a/libraries/ts/src/sbv2.ts +++ b/javascript/solana.js/src/sbv2.ts @@ -1606,7 +1606,7 @@ export class JobAccount { ): Promise { const CHUNK_SIZE = 800; const payerKeypair = programWallet(program); - const jobAccount = params.keypair ?? anchor.web3.Keypair.generate(); + const jobKeypair = params.keypair ?? anchor.web3.Keypair.generate(); const [stateAccount, stateBump] = await ProgramStateAccount.getOrCreate( program, {} @@ -1623,13 +1623,13 @@ export class JobAccount { size: null, }) .accounts({ - job: jobAccount.publicKey, + job: jobKeypair.publicKey, authority: params.authority, programState: stateAccount.publicKey, payer: payerKeypair.publicKey, systemProgram: SystemProgram.programId, }) - .signers([jobAccount]) + // .signers() .rpc(); } else { const chunks: Buffer[] = []; @@ -1654,13 +1654,12 @@ export class JobAccount { size: params.data.byteLength, }) .accounts({ - job: jobAccount.publicKey, + job: jobKeypair.publicKey, authority: payerKeypair.publicKey, programState: stateAccount.publicKey, payer: payerKeypair.publicKey, systemProgram: SystemProgram.programId, }) - .signers([jobAccount]) .rpc() ); @@ -1673,7 +1672,7 @@ export class JobAccount { chunkIdx: n, }) .accounts({ - job: jobAccount.publicKey, + job: jobKeypair.publicKey, authority: payerKeypair.publicKey, }) .rpc() @@ -1681,7 +1680,7 @@ export class JobAccount { } } - return new JobAccount({ program, keypair: jobAccount }); + return new JobAccount({ program, keypair: jobKeypair }); } static decode( diff --git a/libraries/ts/tests/decimal.tests.ts b/javascript/solana.js/tests/decimal.tests.ts similarity index 100% rename from libraries/ts/tests/decimal.tests.ts rename to javascript/solana.js/tests/decimal.tests.ts diff --git a/libraries/ts/tests/program-wallet.tests.ts b/javascript/solana.js/tests/program-wallet.tests.ts similarity index 100% rename from libraries/ts/tests/program-wallet.tests.ts rename to javascript/solana.js/tests/program-wallet.tests.ts diff --git a/libraries/ts/tsconfig.base.json b/javascript/solana.js/tsconfig.base.json similarity index 100% rename from libraries/ts/tsconfig.base.json rename to javascript/solana.js/tsconfig.base.json diff --git a/libraries/ts/tsconfig.cjs.json b/javascript/solana.js/tsconfig.cjs.json similarity index 100% rename from libraries/ts/tsconfig.cjs.json rename to javascript/solana.js/tsconfig.cjs.json diff --git a/libraries/ts/tsconfig.json b/javascript/solana.js/tsconfig.json similarity index 100% rename from libraries/ts/tsconfig.json rename to javascript/solana.js/tsconfig.json diff --git a/javascript/solana.js/yarn.lock b/javascript/solana.js/yarn.lock new file mode 100644 index 0000000..d0404a0 --- /dev/null +++ b/javascript/solana.js/yarn.lock @@ -0,0 +1,2067 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259" + integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== + dependencies: + regenerator-runtime "^0.13.4" + +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@noble/ed25519@^1.7.0": + version "1.7.1" + resolved "https://registry.npmjs.org/@noble/ed25519/-/ed25519-1.7.1.tgz#6899660f6fbb97798a6fbd227227c4589a454724" + integrity sha512-Rk4SkJFaXZiznFyC/t77Q0NKS4FL7TLJJsVG2V2oiEq3kJVeTdxysEe/yRWSpnWMe808XRDJ+VFh5pt/FN5plw== + +"@noble/hashes@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183" + integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA== + +"@noble/secp256k1@^1.6.3": + version "1.7.0" + resolved "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.0.tgz#d15357f7c227e751d90aa06b05a0e5cf993ba8c1" + integrity sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw== + +"@project-serum/anchor@^0.24.2": + version "0.24.2" + resolved "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.24.2.tgz#a3c52a99605c80735f446ca9b3a4885034731004" + integrity sha512-0/718g8/DnEuwAidUwh5wLYphUYXhUbiClkuRNhvNoa+1Y8a4g2tJyxoae+emV+PG/Gikd/QUBNMkIcimiIRTA== + dependencies: + "@project-serum/borsh" "^0.2.5" + "@solana/web3.js" "^1.36.0" + base64-js "^1.5.1" + bn.js "^5.1.2" + bs58 "^4.0.1" + buffer-layout "^1.2.2" + camelcase "^5.3.1" + cross-fetch "^3.1.5" + crypto-hash "^1.3.0" + eventemitter3 "^4.0.7" + js-sha256 "^0.9.0" + pako "^2.0.3" + snake-case "^3.0.4" + toml "^3.0.0" + +"@project-serum/borsh@^0.2.5": + version "0.2.5" + resolved "https://registry.npmjs.org/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663" + integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q== + dependencies: + bn.js "^5.1.2" + buffer-layout "^1.2.0" + +"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" + integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== + +"@protobufjs/base64@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" + integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== + +"@protobufjs/codegen@^2.0.4": + version "2.0.4" + resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" + integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== + +"@protobufjs/eventemitter@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" + integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== + +"@protobufjs/fetch@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" + integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== + dependencies: + "@protobufjs/aspromise" "^1.1.1" + "@protobufjs/inquire" "^1.1.0" + +"@protobufjs/float@^1.0.2": + version "1.0.2" + resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" + integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== + +"@protobufjs/inquire@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" + integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== + +"@protobufjs/path@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" + integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== + +"@protobufjs/pool@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" + integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== + +"@protobufjs/utf8@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" + integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== + +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.0": + version "3.0.0" + resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" + integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@solana/buffer-layout-utils@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz#b45a6cab3293a2eb7597cceb474f229889d875ca" + integrity sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.32.0" + bigint-buffer "^1.1.5" + bignumber.js "^9.0.1" + +"@solana/buffer-layout@^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.0.tgz#75b1b11adc487234821c81dfae3119b73a5fd734" + integrity sha512-lR0EMP2HC3+Mxwd4YcnZb0smnaDw7Bl2IQWZiTevRH5ZZBZn6VRWn3/92E3qdU4SSImJkA6IDHawOHAnx/qUvQ== + dependencies: + buffer "~6.0.3" + +"@solana/spl-governance@^0.0.34": + version "0.0.34" + resolved "https://registry.npmjs.org/@solana/spl-governance/-/spl-governance-0.0.34.tgz#c61d81d356dbcee961bbc85e5d3538846fea57ad" + integrity sha512-tZppBiiVkUa5v+B/Ds+TqZ4yxR/vaIYLRxBk7x6R22dwk4/9SU87bVE60kRdDqTdMzqScFxIMdhaGl/fCX533A== + dependencies: + "@solana/web3.js" "^1.22.0" + bignumber.js "^9.0.1" + bn.js "^5.1.3" + borsh "^0.3.1" + bs58 "^4.0.1" + superstruct "^0.15.2" + +"@solana/spl-token-v2@npm:@solana/spl-token@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.2.0.tgz#329bb6babb5de0f9c40035ddb1657f01a8347acd" + integrity sha512-RWcn31OXtdqIxmkzQfB2R+WpsJOVS6rKuvpxJFjvik2LyODd+WN58ZP3Rpjpro03fscGAkzlFuP3r42doRJgyQ== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/buffer-layout-utils" "^0.2.0" + "@solana/web3.js" "^1.32.0" + start-server-and-test "^1.14.0" + +"@solana/web3.js@^1.22.0", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.44.3": + version "1.62.0" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz#8fef9fd443217161ddc25e701f603222047bc520" + integrity sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA== + dependencies: + "@babel/runtime" "^7.12.5" + "@noble/ed25519" "^1.7.0" + "@noble/hashes" "^1.1.2" + "@noble/secp256k1" "^1.6.3" + "@solana/buffer-layout" "^4.0.0" + bigint-buffer "^1.1.5" + bn.js "^5.0.0" + borsh "^0.7.0" + bs58 "^4.0.1" + buffer "6.0.1" + fast-stable-stringify "^1.0.0" + jayson "^3.4.4" + node-fetch "2" + rpc-websockets "^7.5.0" + superstruct "^0.14.2" + +"@switchboard-xyz/common@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@switchboard-xyz/common/-/common-2.0.0.tgz#8c3551b3611c4a2348c46879c0ab2ea188a1f753" + integrity sha512-hC7J7NShGQHjWaCU7+w6tEtZ3KljxMIKJe5IaxPxD+cgdxhx58UMjngyevaCcle33aPyFZ/tbpm0tU2ZqzqZtQ== + dependencies: + big.js "^6.2.1" + bn.js "^5.2.1" + protobufjs "^6.11.3" + +"@types/big.js@^6.1.4": + version "6.1.6" + resolved "https://registry.npmjs.org/@types/big.js/-/big.js-6.1.6.tgz#3d417e758483d55345a03a087f7e0c87137ca444" + integrity sha512-0r9J+Zz9rYm2hOTwiMAVkm3XFQ4u5uTK37xrQMhc9bysn/sf/okzovWMYYIBMFTn/yrEZ11pusgLEaoarTlQbA== + +"@types/bn.js@^4.11.5": + version "4.11.6" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c" + integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== + dependencies: + "@types/node" "*" + +"@types/connect@^3.4.33": + version "3.4.35" + resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/long@^4.0.1": + version "4.0.2" + resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" + integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== + +"@types/mocha@^9.0.0": + version "9.1.1" + resolved "https://registry.npmjs.org/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4" + integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw== + +"@types/node@*", "@types/node@>=13.7.0": + version "18.7.18" + resolved "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz#633184f55c322e4fb08612307c274ee6d5ed3154" + integrity sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg== + +"@types/node@^12.12.54": + version "12.20.55" + resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + +"@types/node@^17.0.45": + version "17.0.45" + resolved "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" + integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== + +"@types/ws@^7.4.4": + version "7.4.7" + resolved "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" + integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== + dependencies: + "@types/node" "*" + +"@ungap/promise-all-settled@1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" + integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== + +JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +ansi-colors@4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +arrify@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + +assert@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== + dependencies: + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-x@^3.0.2: + version "3.0.9" + resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" + integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== + dependencies: + safe-buffer "^5.0.1" + +base-x@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz#d0e3b7753450c73f8ad2389b5c018a4af7b2224a" + integrity sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw== + +base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +big.js@^6.2.0, big.js@^6.2.1: + version "6.2.1" + resolved "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz#7205ce763efb17c2e41f26f121c420c6a7c2744f" + integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== + +bigint-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442" + integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA== + dependencies: + bindings "^1.3.0" + +bignumber.js@^9.0.1: + version "9.1.0" + resolved "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62" + integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.3.0: + version "1.5.0" + resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bluebird@3.7.2: + version "3.7.2" + resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^5.0.0, bn.js@^5.1.2, bn.js@^5.1.3, bn.js@^5.2.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +borsh@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.3.1.tgz#c31c3a149610e37913deada80e89073fb15cf55b" + integrity sha512-gJoSTnhwLxN/i2+15Y7uprU8h3CKI+Co4YKZKvrGYUy0FwHWM20x5Sx7eU8Xv4HQqV+7rb4r3P7K1cBIQe3q8A== + dependencies: + "@types/bn.js" "^4.11.5" + bn.js "^5.0.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +borsh@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a" + integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA== + dependencies: + bn.js "^5.2.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +bs58@^4.0.0, bs58@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" + integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== + dependencies: + base-x "^3.0.2" + +bs58@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz#865575b4d13c09ea2a84622df6c8cbeb54ffc279" + integrity sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ== + dependencies: + base-x "^4.0.0" + +buffer-from@^1.0.0, buffer-from@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer-layout@^1.2.0, buffer-layout@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/buffer-layout/-/buffer-layout-1.2.2.tgz#b9814e7c7235783085f9ca4966a0cfff112259d5" + integrity sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA== + +buffer@6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2" + integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@~6.0.3: + version "6.0.3" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +bufferutil@^4.0.1: + version "4.0.6" + resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" + integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== + dependencies: + node-gyp-build "^4.3.0" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chan@^0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/chan/-/chan-0.6.1.tgz#ec0ad132e5bc62c27ef10ccbfc4d8dcd8ca00640" + integrity sha512-/TdBP2UhbBmw7qnqkzo9Mk4rzvwRv4dlNPXFerqWy90T8oBspKagJNZxrDbExKHhx9uXXHjo3f9mHgs9iKO3nQ== + +check-more-types@2.24.0: + version "2.24.0" + resolved "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== + +chokidar@3.5.3: + version "3.5.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + 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" + optionalDependencies: + fsevents "~2.3.2" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +commander@^2.20.3: + version "2.20.3" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +cross-fetch@^3.1.5: + version "3.1.5" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" + integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== + dependencies: + node-fetch "2.6.7" + +cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-hash@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247" + integrity sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg== + +crypto-js@^4.0.0: + version "4.1.1" + resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" + integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== + +data-uri-to-buffer@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" + integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== + +debug@4.3.2: + version "4.3.2" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + +debug@4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + +decamelize@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" + integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== + +define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== + +diff@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" + integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== + +diff@^3.1.0: + version "3.5.0" + resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +duplexer@~0.1.1: + version "0.1.2" + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +es-abstract@^1.19.0, es-abstract@^1.19.5, es-abstract@^1.20.0: + version "1.20.2" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3" + integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.2" + get-symbol-description "^1.0.0" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + is-callable "^1.2.4" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + string.prototype.trimend "^1.0.5" + string.prototype.trimstart "^1.0.5" + unbox-primitive "^1.0.2" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ== + dependencies: + es6-promise "^4.0.3" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +event-stream@=3.3.4: + version "3.3.4" + resolved "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +eventemitter3@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +execa@5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + 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" + +eyes@^0.1.8: + version "0.1.8" + resolved "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + integrity sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ== + +fast-stable-stringify@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" + integrity sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag== + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +follow-redirects@^1.14.0: + version "1.15.2" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +from@~0: + version "0.1.7" + resolved "https://registry.npmjs.org/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" + integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@7.2.0: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.0.0: + version "7.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^8.0.3: + version "8.0.3" + resolved "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" + integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +growl@1.10.5: + version "1.10.5" + resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +interpret@^1.0.0: + version "1.4.0" + resolved "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: + version "1.2.6" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz#fd6170b0b8c7e2cc73de342ef8284a2202023c44" + integrity sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q== + +is-core-module@^2.9.0: + version "2.10.0" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" + integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-nan@^1.2.1: + version "1.3.2" + resolved "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.3, is-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67" + integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isomorphic-ws@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" + integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== + +jayson@^3.4.4: + version "3.7.0" + resolved "https://registry.npmjs.org/jayson/-/jayson-3.7.0.tgz#b735b12d06d348639ae8230d7a1e2916cb078f25" + integrity sha512-tfy39KJMrrXJ+mFcMpxwBvFDetS8LAID93+rycFglIQM4kl3uNR3W4lBLE/FFhsoUCEox5Dt2adVpDm/XtebbQ== + dependencies: + "@types/connect" "^3.4.33" + "@types/node" "^12.12.54" + "@types/ws" "^7.4.4" + JSONStream "^1.3.5" + commander "^2.20.3" + delay "^5.0.0" + es6-promisify "^5.0.0" + eyes "^0.1.8" + isomorphic-ws "^4.0.1" + json-stringify-safe "^5.0.1" + lodash "^4.17.20" + uuid "^8.3.2" + ws "^7.4.5" + +joi@^17.4.0: + version "17.6.0" + resolved "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2" + integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.0" + "@sideway/pinpoint" "^2.0.0" + +js-sha256@^0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" + integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA== + +js-yaml@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +json-stringify-safe@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +jsonc-parser@^3.0.0: + version "3.2.0" + resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" + integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +lazy-ass@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +long@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" + integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lunr@^2.3.9: + version "2.3.9" + resolved "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" + integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== + +marked@^4.0.19: + version "4.1.0" + resolved "https://registry.npmjs.org/marked/-/marked-4.1.0.tgz#3fc6e7485f21c1ca5d6ec4a39de820e146954796" + integrity sha512-+Z6KDjSPa6/723PQYyc1axYZpYYpDnECDaU6hkaf5gqBieBkMKYReL5hteF2QizhlMbgbo8umXl/clZ67+GlsA== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimatch@4.2.1: + version "4.2.1" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz#40d9d511a46bdc4e563c22c3080cde9c0d8299b4" + integrity sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1, minimatch@^5.1.0: + version "5.1.0" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6: + version "1.2.6" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +mkdirp@^0.5.1: + version "0.5.6" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +mocha@^9.1.1: + version "9.2.2" + resolved "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz#d70db46bdb93ca57402c809333e5a84977a88fb9" + integrity sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g== + dependencies: + "@ungap/promise-all-settled" "1.1.2" + ansi-colors "4.1.1" + browser-stdout "1.3.1" + chokidar "3.5.3" + debug "4.3.3" + diff "5.0.0" + escape-string-regexp "4.0.0" + find-up "5.0.0" + glob "7.2.0" + growl "1.10.5" + he "1.2.0" + js-yaml "4.1.0" + log-symbols "4.1.0" + minimatch "4.2.1" + ms "2.1.3" + nanoid "3.3.1" + serialize-javascript "6.0.0" + strip-json-comments "3.1.1" + supports-color "8.1.1" + which "2.0.2" + workerpool "6.2.0" + yargs "16.2.0" + yargs-parser "20.2.4" + yargs-unparser "2.0.0" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +nanoid@3.3.1: + version "3.3.1" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" + integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@2, node-fetch@2.6.7: + version "2.6.7" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^3.2.6: + version "3.2.10" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8" + integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-gyp-build@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" + integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +pako@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d" + integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" + integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== + dependencies: + through "~2.3" + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.3.1" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +protobufjs@^6.11.3: + version "6.11.3" + resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" + integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== + dependencies: + "@protobufjs/aspromise" "^1.1.2" + "@protobufjs/base64" "^1.1.2" + "@protobufjs/codegen" "^2.0.4" + "@protobufjs/eventemitter" "^1.1.0" + "@protobufjs/fetch" "^1.1.0" + "@protobufjs/float" "^1.0.2" + "@protobufjs/inquire" "^1.1.0" + "@protobufjs/path" "^1.1.2" + "@protobufjs/pool" "^1.1.0" + "@protobufjs/utf8" "^1.1.0" + "@types/long" "^4.0.1" + "@types/node" ">=13.7.0" + long "^4.0.0" + +ps-tree@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" + integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== + dependencies: + event-stream "=3.3.4" + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== + dependencies: + resolve "^1.1.6" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +resolve@^1.1.6: + version "1.22.1" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +rpc-websockets@^7.5.0: + version "7.5.0" + resolved "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.5.0.tgz#bbeb87572e66703ff151e50af1658f98098e2748" + integrity sha512-9tIRi1uZGy7YmDjErf1Ax3wtqdSSLIlnmL5OtOzgd5eqPKbsPpwDP5whUDO2LQay3Xp0CcHlcNSGzacNRluBaQ== + dependencies: + "@babel/runtime" "^7.17.2" + eventemitter3 "^4.0.7" + uuid "^8.3.2" + ws "^8.5.0" + optionalDependencies: + bufferutil "^4.0.1" + utf-8-validate "^5.0.2" + +rxjs@^7.1.0: + version "7.5.6" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc" + integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw== + dependencies: + tslib "^2.1.0" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +serialize-javascript@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + dependencies: + randombytes "^2.1.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shelljs@^0.8.5: + version "0.8.5" + resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" + integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +shiki@^0.11.1: + version "0.11.1" + resolved "https://registry.npmjs.org/shiki/-/shiki-0.11.1.tgz#df0f719e7ab592c484d8b73ec10e215a503ab8cc" + integrity sha512-EugY9VASFuDqOexOgXR18ZV+TbFrQHeCpEYaXamO+SZlsnT/2LxuLBX25GGtIrwaEVFXUAbUQ601SWE2rMwWHA== + dependencies: + jsonc-parser "^3.0.0" + vscode-oniguruma "^1.6.1" + vscode-textmate "^6.0.0" + +shx@^0.3.4: + version "0.3.4" + resolved "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz#74289230b4b663979167f94e1935901406e40f02" + integrity sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g== + dependencies: + minimist "^1.2.3" + shelljs "^0.8.5" + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +source-map-support@^0.5.6: + version "0.5.21" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +split@0.3: + version "0.3.3" + resolved "https://registry.npmjs.org/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== + dependencies: + through "2" + +start-server-and-test@^1.14.0: + version "1.14.0" + resolved "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-1.14.0.tgz#c57f04f73eac15dd51733b551d775b40837fdde3" + integrity sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw== + dependencies: + bluebird "3.7.2" + check-more-types "2.24.0" + debug "4.3.2" + execa "5.1.1" + lazy-ass "1.6.0" + ps-tree "1.2.0" + wait-on "6.0.0" + +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== + dependencies: + duplexer "~0.1.1" + +string-width@^4.1.0, string-width@^4.2.0: + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + 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" + +string.prototype.trimend@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string.prototype.trimstart@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +superstruct@^0.14.2: + version "0.14.2" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" + integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ== + +superstruct@^0.15.2: + version "0.15.5" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.15.5.tgz#0f0a8d3ce31313f0d84c6096cd4fa1bfdedc9dab" + integrity sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ== + +supports-color@8.1.1: + version "8.1.1" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +text-encoding-utf-8@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13" + integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg== + +through@2, "through@>=2.2.7 <3", through@~2.3, through@~2.3.1: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toml@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" + integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +ts-mocha@^9.0.2: + version "9.0.2" + resolved "https://registry.npmjs.org/ts-mocha/-/ts-mocha-9.0.2.tgz#c1ef0248874d04a0f26dd9bd8d88e617a8d82ab1" + integrity sha512-WyQjvnzwrrubl0JT7EC1yWmNpcsU3fOuBFfdps30zbmFBgKniSaSOyZMZx+Wq7kytUs5CY+pEbSYEbGfIKnXTw== + dependencies: + ts-node "7.0.1" + optionalDependencies: + tsconfig-paths "^3.5.0" + +ts-node@7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-7.0.1.tgz#9562dc2d1e6d248d24bc55f773e3f614337d9baf" + integrity sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw== + dependencies: + arrify "^1.0.0" + buffer-from "^1.1.0" + diff "^3.1.0" + make-error "^1.1.1" + minimist "^1.2.0" + mkdirp "^0.5.1" + source-map-support "^0.5.6" + yn "^2.0.0" + +tsconfig-paths@^3.5.0: + version "3.14.1" + resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" + integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^2.0.3, tslib@^2.1.0: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + +typedoc@^0.23.8: + version "0.23.14" + resolved "https://registry.npmjs.org/typedoc/-/typedoc-0.23.14.tgz#d3af50b38fe98210ac39e112b5892f9d88546c93" + integrity sha512-s2I+ZKBET38EctZvbXp2GooHrNaKjWZkrwGEK/sttnOGiKJqU0vHrsdcwLgKZGuo2aedNL3RRPj1LnAAeYscig== + dependencies: + lunr "^2.3.9" + marked "^4.0.19" + minimatch "^5.1.0" + shiki "^0.11.1" + +typescript@^4.7: + version "4.8.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88" + integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + 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" + +utf-8-validate@^5.0.2: + version "5.0.9" + resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz#ba16a822fbeedff1a58918f2a6a6b36387493ea3" + integrity sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q== + dependencies: + node-gyp-build "^4.3.0" + +util@^0.12.0: + version "0.12.4" + resolved "https://registry.npmjs.org/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + safe-buffer "^5.1.2" + which-typed-array "^1.1.2" + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +vscode-oniguruma@^1.6.1: + version "1.6.2" + resolved "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.6.2.tgz#aeb9771a2f1dbfc9083c8a7fdd9cccaa3f386607" + integrity sha512-KH8+KKov5eS/9WhofZR8M8dMHWN2gTxjMsG4jd04YhpbPR91fUj7rYQ2/XjeHCJWbg7X++ApRIU9NUwM2vTvLA== + +vscode-textmate@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-6.0.0.tgz#a3777197235036814ac9a92451492f2748589210" + integrity sha512-gu73tuZfJgu+mvCSy4UZwd2JXykjK9zAZsfmDeut5dx/1a7FeTk0XwJsSuqQn+cuMCGVbIBfl+s53X4T19DnzQ== + +wait-on@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/wait-on/-/wait-on-6.0.0.tgz#7e9bf8e3d7fe2daecbb7a570ac8ca41e9311c7e7" + integrity sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw== + dependencies: + axios "^0.21.1" + joi "^17.4.0" + lodash "^4.17.21" + minimist "^1.2.5" + rxjs "^7.1.0" + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + 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" + +which-typed-array@^1.1.2: + version "1.1.8" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f" + integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.9" + +which@2.0.2, which@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +workerpool@6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" + integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@^7.4.5: + version "7.5.9" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +ws@^8.5.0: + version "8.8.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" + integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yargs-parser@20.2.4: + version "20.2.4" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" + integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-unparser@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" + integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== + dependencies: + camelcase "^6.0.0" + decamelize "^4.0.0" + flat "^5.0.2" + is-plain-obj "^2.1.0" + +yargs@16.2.0: + version "16.2.0" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yn@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a" + integrity sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/lerna.json b/lerna.json deleted file mode 100644 index 8c8783f..0000000 --- a/lerna.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "packages": [ - "tools/eslint", - "libraries/sbv2-lite", - "libraries/ts", - "libraries/sbv2-utils", - "examples/clients/*", - "examples/programs/*", - "website" - ], - "npmClient": "yarn", - "version": "independent", - "useWorkspaces": true, - "publish": { - "registry": "https://registry.npmjs.org " - }, - "ignoreChanges": [ - "**/README.md", - "website/**/*", - "examples/programs/**/*", - "examples/clients/**/*", - "libraries/rs", - "libraries/py", - "libraries/sbv2-utils/!(src)", - "libraries/sbv2-lite/!(src)", - "libraries/ts/!(src)", - "directory/**", - "tools/**" - ], - "command": { - "version": { - "message": "chore(release): publish" - } - } -} diff --git a/libraries/README.md b/libraries/README.md deleted file mode 100644 index 7841e83..0000000 --- a/libraries/README.md +++ /dev/null @@ -1,10 +0,0 @@ -# Sbv2 Libraries - -| Package | Description | -| ------------------------------------ | -------------------------------------------------------------- | -| [Protobufs](./protos) | Protocol buffers used by the oracle to fetch and publish data. | -| [Typescript](./ts) | Typescript client to interact with Switchboard V2. | -| [Typescript **_Lite_**](./sbv2-lite) | Typescript "Lite" client to deserialize aggregator accounts | -| [Sbv2 Utils](./sbv2-utils) | Typescript library with helpful utility functions | -| [Python](./py) | Python client to interact with Switchboard V2. | -| [Rust](./rs) | Rust client to interact with Switchboard V2. | diff --git a/Cargo.toml b/old.Cargo.toml similarity index 100% rename from Cargo.toml rename to old.Cargo.toml diff --git a/oracles/README.md b/oracles/README.md deleted file mode 100644 index d8956bc..0000000 --- a/oracles/README.md +++ /dev/null @@ -1,17 +0,0 @@ -# Switchboard Oracle - -Packages to assist in deploying, running, and managing a Switchboard oracle. - -## Contents - -- **Helm Manifest** - helm manifest and scripts to deploy a Switchboard Oracle to a kubernetes cluster - -## Start Docker Oracle - -``` -CLUSTER=devnet \ -ORACLE_KEY=XXXXXXXXX \ -RPC_URL=https://api.devnet.solana.com \ -PAYER_SECRET_PATH=../payer-keypair.json \ -docker-compose up -``` diff --git a/oracles/docker-compose.yml b/oracles/docker-compose.yml deleted file mode 100644 index 2b5c914..0000000 --- a/oracles/docker-compose.yml +++ /dev/null @@ -1,17 +0,0 @@ -version: "3.3" -services: - switchboard: - image: "switchboardlabs/node:${SBV2_ORACLE_VERSION:-dev-v2-07-18-22}" # https://hub.docker.com/r/switchboardlabs/node/tags - network_mode: host - restart: always - environment: - - LIVE=1 - - CLUSTER=${CLUSTER} - - RPC_URL=${RPC_URL} - - ORACLE_KEY=${ORACLE_KEY} - - HEARTBEAT_INTERVAL=15 - volumes: - - ./configs.json:/configs.json -secrets: - PAYER_SECRETS: - file: ${PAYER_SECRET_PATH} diff --git a/oracles/helm-deployment/.gitignore b/oracles/helm-deployment/.gitignore deleted file mode 100644 index 5217adf..0000000 --- a/oracles/helm-deployment/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -secrets/** -.keypairs/** -/**.json -**.env -kubernetes-**/** \ No newline at end of file diff --git a/oracles/helm-deployment/README.md b/oracles/helm-deployment/README.md deleted file mode 100644 index 032c847..0000000 --- a/oracles/helm-deployment/README.md +++ /dev/null @@ -1,56 +0,0 @@ -# Switchboard Helm Manifest - -## Setup - -### Google Cloud - -You will need to first setup a GCP project and provision your account. The following script will walk you through the steps, where PROJECTNAME contains no spaces or special characters and will be the name of your GCP project: - -```bash -./setup-gcloud.sh PROJECTNAME -``` - -Upon succesful completion, `PROJECTNAME.env` will contain your google cloud configuration: - -- PROJECT_ID -- GOOGLE_PAYER_SECRET_PATH -- EXTERNAL_IP -- SERVICE_ACCOUNT_EMAIL -- SERVICE_ACCOUNT_BASE64 - -### Switchboard - -You will need to manually add the following variables to `PROJECTNAME.env` - -- RPC_URL -- ORACLE_KEY -- CLUSTER [devnet/mainnet-beta] - -### Grafana - -Next we will need to provision the TLS certificate to view the Grafana dashboard - -```bash -./setup-grafana.sh PROJECTNAME DOMAIN EMAIL -``` - -Follow the instructions then add the following outputted variables to the env file: - -- GRAFANA_HOSTNAME (your domain/subdomain that will host your grafana dashboard) -- GRAFANA_ADMIN_PASSWORD (can be set to any string used to login to the admin account) -- GRAFANA_TLS_CRT -- GRAFANA_TLS_KEY - -## Deploy - -Using the same `PROJECTNAME` as above, run the following command to build the helm charts for your deployment: - -```bash -./build-helm.sh PROJECTNAME -``` - -Then deploy your helm charts to your GCP cluster: - -```bash -./deploy-helm.sh PROJECTNAME -``` diff --git a/oracles/helm-deployment/build-helm.sh b/oracles/helm-deployment/build-helm.sh deleted file mode 100755 index dd301e7..0000000 --- a/oracles/helm-deployment/build-helm.sh +++ /dev/null @@ -1,138 +0,0 @@ -#!/bin/bash - -set -e - -stty sane # dont show backspace char during prompts - -script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) - -## Get Project Name -project=$1 -if [[ -z "${project}" ]]; then - read -rp "Enter the name for the google cloud project (Ex. switchboard-oracle-cluster): " project -fi -project=$(echo "${project// /-}" | awk '{print tolower($0)}') # Replace spaces with dashes and make lower case -echo -e "project: $project" - -envFile="$project.env" -if [ -f "$envFile" ] -then - envFile=$(realpath "${envFile}") - echo "env file: $envFile" -else - echo "failed to find env file: $envFile" - exit 1 -fi - -set -a -. "$envFile" -set +a - -prefix="kubernetes-" -outputPath=$(realpath "$prefix$project") -echo "output path: $outputPath"; - -mkdir -p "$outputPath" -cp -r "${script_dir}/helm/" "$outputPath/" - -files=( -"$outputPath/dashboard.yaml" -"$outputPath/grafana-values.yaml" -"$outputPath/nginx-values.yaml" -"$outputPath/vmetrics-values.yaml" -"$outputPath/switchboard-oracle/values.yaml" -) - -## Validate env variables -if [[ -z "${CLUSTER}" ]]; then - echo "failed to set CLUSTER" - exit 1 -elif [[ "$CLUSTER" != "devnet" && "$CLUSTER" != "mainnet-beta" && "$CLUSTER" != "localnet" ]]; then - echo "invalid CLUSTER ($CLUSTER) - [devnet, mainnet-beta, or localnet]" - exit 1 -fi -if [[ -z "${RPC_URL}" ]]; then - echo "failed to set RPC_URL" - exit 1 -fi -if [[ -z "${WS_URL}" ]]; then - WS_URL="" -fi -if [[ -z "${BACKUP_MAINNET_RPC}" ]]; then - BACKUP_MAINNET_RPC="https://solana-api.projectserum.com" -fi -if [[ -z "${ORACLE_KEY}" ]]; then - echo "failed to set ORACLE_KEY" - exit 1 -fi -if [[ -z "${HEARTBEAT_INTERVAL}" ]]; then - HEARTBEAT_INTERVAL="15" -fi -if [[ -z "${UNWRAP_STAKE_THRESHOLD}" ]]; then - UNWRAP_STAKE_THRESHOLD="" -fi -if [[ -z "${GOOGLE_PAYER_SECRET_PATH}" ]]; then - echo "failed to set GOOGLE_PAYER_SECRET_PATH" - exit 1 -fi -if [[ -z "${GCP_CONFIG_BUCKET}" ]]; then - GCP_CONFIG_BUCKET="oracle-configs:configs.json" -fi -if [[ -z "${SERVICE_ACCOUNT_BASE64}" ]]; then - echo "failed to set SERVICE_ACCOUNT_BASE64" - exit 1 -fi -if [[ -z "${EXTERNAL_IP}" ]]; then - echo "failed to set EXTERNAL_IP" - exit 1 -fi -if [[ -z "${PAGERDUTY_EVENT_KEY}" ]]; then - PAGERDUTY_EVENT_KEY="" -fi -if [[ -z "${GRAFANA_HOSTNAME}" ]]; then - echo "failed to set GRAFANA_HOSTNAME" - exit 1 -fi -if [[ -z "${GRAFANA_ADMIN_PASSWORD}" ]]; then - GRAFANA_ADMIN_PASSWORD="${GRAFANA_ADMIN_PASSWORD:-Sbv2K8sPassword123@}" -fi -if [[ -z "${GRAFANA_TLS_CRT}" ]]; then - echo "failed to set GRAFANA_TLS_CRT" - exit 1 -fi -if [[ -z "${GRAFANA_TLS_KEY}" ]]; then - echo "failed to set GRAFANA_TLS_KEY" - exit 1 -fi -if [[ -z "${METRICS_EXPORTER}" ]]; then - METRICS_EXPORTER="${METRICS_EXPORTER:-prometheus}" -elif [[ "$METRICS_EXPORTER" != "prometheus" && "$CLUSTER" != "gcp" && "$CLUSTER" != "opentelemetry-collector" ]]; then - echo "invalid METRICS_EXPORTER ($METRICS_EXPORTER) - [prometheus, gcp, or opentelemetry-collector]" - exit 1 -fi -if [[ -z "${SBV2_NODE_IMAGE}" ]]; then - SBV2_NODE_IMAGE="${SBV2_NODE_IMAGE:-dev-v2-06-08-22}" -fi - -## Substitute ENV values -for f in "${files[@]}"; do - UNWRAP_STAKE_THRESHOLD="$UNWRAP_STAKE_THRESHOLD" \ - NONCE_QUEUE_SIZE="$NONCE_QUEUE_SIZE" \ - NONCE_FLAG="$NONCE_FLAG" \ - PAGERDUTY_EVENT_KEY="$PAGERDUTY_EVENT_KEY" \ - METRICS_EXPORTER="$METRICS_EXPORTER" \ - GRAFANA_ADMIN_PASSWORD="$GRAFANA_ADMIN_PASSWORD" \ - HEARTBEAT_INTERVAL="$HEARTBEAT_INTERVAL" \ - SBV2_NODE_IMAGE="$SBV2_NODE_IMAGE" \ - WS_URL="$WS_URL" \ - GCP_CONFIG_BUCKET="$GCP_CONFIG_BUCKET" \ - BACKUP_MAINNET_RPC="$BACKUP_MAINNET_RPC" \ - envsubst '$UNWRAP_STAKE_THRESHOLD $CLUSTER $RPC_URL $WS_URL $BACKUP_MAINNET_RPC $ORACLE_KEY $HEARTBEAT_INTERVAL $GOOGLE_PAYER_SECRET_PATH $GCP_CONFIG_BUCKET $SERVICE_ACCOUNT_BASE64 $EXTERNAL_IP $PAGERDUTY_EVENT_KEY $GRAFANA_HOSTNAME $GRAFANA_ADMIN_PASSWORD $GRAFANA_TLS_CRT $GRAFANA_TLS_KEY $METRICS_EXPORTER $SBV2_NODE_IMAGE' < "$f" \ - | tee "$outputPath/tmp.txt" \ - > /dev/null ; - cat "$outputPath/tmp.txt" > "$f"; -done - -rm "$outputPath/tmp.txt" - -exit 0 diff --git a/oracles/helm-deployment/deploy-helm.sh b/oracles/helm-deployment/deploy-helm.sh deleted file mode 100755 index 3127734..0000000 --- a/oracles/helm-deployment/deploy-helm.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash - -set -e - -### SHOULD WE ENSURE WERE CONNECTED TO THE RIGHT K8S BEFORE RUNNING? - -## Get Project Name -project=$1 -if [[ -z "${project}" ]]; then - read -rp "Enter the name for the google cloud project (Ex. switchboard-oracle-cluster): " project -fi -project=$(echo "${project// /-}" | awk '{print tolower($0)}') # Replace spaces with dashes and make lower case -echo -e "project: $project" - -prefix="kubernetes-" -helmDir=$(realpath "$prefix$project") -if [ -d "$helmDir" ] -then - echo "helm directory: $helmDir"; -else - echo "failed to find helm directory: $helmDir" - exit 1 -fi - -## Add / Update Helm Charts -helm repo add vm https://victoriametrics.github.io/helm-charts/ -helm repo add grafana https://grafana.github.io/helm-charts -helm repo add nginx-stable https://helm.nginx.com/stable -helm repo add stable https://charts.helm.sh/stable -helm repo update - -## Deploy Helm Charts -if ! kubectl apply -f "$helmDir/dashboard.yaml" -n grafana -then - kubectl create ns grafana - kubectl apply -f "$helmDir/dashboard.yaml" -n grafana -fi - -helm upgrade -i grafana grafana/grafana -f "$helmDir/grafana-values.yaml" -helm upgrade -i vmsingle vm/victoria-metrics-single -f "$helmDir/vmetrics-values.yaml" -helm upgrade -i nginx-helm nginx-stable/nginx-ingress -f "$helmDir/nginx-values.yaml" -helm upgrade -i switchboard-oracle helm/switchboard-oracle -f "$helmDir/switchboard-oracle/values.yaml" - -printf "\nHelm charts deployed from %s\n" "${helmDir}" - -exit 0 \ No newline at end of file diff --git a/oracles/helm-deployment/helm/dashboard.yaml b/oracles/helm-deployment/helm/dashboard.yaml deleted file mode 100644 index 93f23e8..0000000 --- a/oracles/helm-deployment/helm/dashboard.yaml +++ /dev/null @@ -1,1098 +0,0 @@ -apiVersion: v1 -kind: ConfigMap -metadata: - name: sample-grafana-dashboard - labels: - grafana_dashboard: "1" -data: - k8s-dashboard.json: | - { - "annotations": { - "list": [ - { - "builtIn": 1, - "datasource": "-- Grafana --", - "enable": true, - "hide": true, - "iconColor": "rgba(0, 211, 255, 1)", - "name": "Annotations & Alerts", - "type": "dashboard" - } - ] - }, - "editable": true, - "gnetId": null, - "graphTooltip": 0, - "id": 2, - "links": [], - "panels": [ - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": null, - "fieldConfig": { - "defaults": { - "custom": {} - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 0 - }, - "hiddenSeries": false, - "id": 16, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "7.3.10", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "sum by (cluster) (switchboard_log_age_sum[5m]/switchboard_log_age_count[5m])", - "interval": "", - "legendFormat": "", - "refId": "A" - } - ], - "thresholds": [], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "Average Log Age", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": null, - "fieldConfig": { - "defaults": { - "custom": {} - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 8 - }, - "hiddenSeries": false, - "id": 14, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "7.3.10", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "sum by (cluster) ((switchboard_total_latency_total[5m]/switchboard_job_posting_total[5m] )/count(switchboard_total_latency_total[5m]))", - "interval": "", - "legendFormat": "", - "refId": "A" - } - ], - "thresholds": [], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "Average Job Latency", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "alert": { - "alertRuleTags": {}, - "conditions": [ - { - "evaluator": { - "params": [ - 1 - ], - "type": "lt" - }, - "operator": { - "type": "and" - }, - "query": { - "params": [ - "A", - "1m", - "now" - ] - }, - "reducer": { - "params": [], - "type": "min" - }, - "type": "query" - } - ], - "executionErrorState": "keep_state", - "for": "5m", - "frequency": "1m", - "handler": 1, - "name": "Scheduler Funds alert", - "noDataState": "ok", - "notifications": [ - { - "uid": "TWlTi-v7z" - } - ] - }, - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": null, - "fieldConfig": { - "defaults": { - "custom": {} - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 16 - }, - "hiddenSeries": false, - "id": 12, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "7.3.10", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "scheduler_node_balance*0.000000001", - "interval": "", - "legendFormat": "", - "refId": "A" - } - ], - "thresholds": [ - { - "colorMode": "critical", - "fill": true, - "line": true, - "op": "lt", - "value": 1 - } - ], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "Scheduler Funds", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "alert": { - "alertRuleTags": {}, - "conditions": [ - { - "evaluator": { - "params": [ - 1 - ], - "type": "lt" - }, - "operator": { - "type": "and" - }, - "query": { - "params": [ - "A", - "5m", - "now" - ] - }, - "reducer": { - "params": [], - "type": "min" - }, - "type": "query" - } - ], - "executionErrorState": "alerting", - "for": "5m", - "frequency": "1m", - "handler": 1, - "name": "Node Balances alert", - "noDataState": "no_data", - "notifications": [] - }, - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": null, - "fieldConfig": { - "defaults": { - "custom": {}, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green", - "value": null - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 24 - }, - "hiddenSeries": false, - "id": 10, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "7.3.10", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "sum(switchboard_node_balance) by (account)", - "interval": "", - "legendFormat": "", - "refId": "A" - } - ], - "thresholds": [ - { - "colorMode": "critical", - "fill": true, - "line": true, - "op": "lt", - "value": 1 - } - ], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "Node Balances", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "alert": { - "alertRuleTags": {}, - "conditions": [ - { - "evaluator": { - "params": [ - 20 - ], - "type": "gt" - }, - "operator": { - "type": "and" - }, - "query": { - "params": [ - "A", - "5m", - "now" - ] - }, - "reducer": { - "params": [], - "type": "max" - }, - "type": "query" - } - ], - "executionErrorState": "alerting", - "for": "5m", - "frequency": "1m", - "handler": 1, - "message": "save result failure error rate too high", - "name": "save result failure rate alert", - "noDataState": "no_data", - "notifications": [ - { - "uid": "x9wXxo77k" - } - ] - }, - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": null, - "fieldConfig": { - "defaults": { - "custom": {} - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 32 - }, - "hiddenSeries": false, - "id": 8, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "7.3.10", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": true, - "steppedLine": false, - "targets": [ - { - "expr": "sum by (errorType) (rate(switchboard_save_result_failure_total[5m]))", - "interval": "", - "legendFormat": "", - "refId": "A" - } - ], - "thresholds": [ - { - "colorMode": "critical", - "fill": true, - "line": true, - "op": "gt", - "value": 20 - } - ], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "save result failure rate", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "alert": { - "alertRuleTags": {}, - "conditions": [ - { - "evaluator": { - "params": [ - 2 - ], - "type": "gt" - }, - "operator": { - "type": "and" - }, - "query": { - "params": [ - "A", - "5m", - "now" - ] - }, - "reducer": { - "params": [], - "type": "avg" - }, - "type": "query" - } - ], - "executionErrorState": "alerting", - "for": "5m", - "frequency": "1m", - "handler": 1, - "message": "too many insufficient aggregation errors", - "name": "insufficient aggregation error rate alert", - "noDataState": "no_data", - "notifications": [ - { - "uid": "x9wXxo77k" - } - ] - }, - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": null, - "fieldConfig": { - "defaults": { - "custom": {} - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 40 - }, - "hiddenSeries": false, - "id": 6, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "7.3.10", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": true, - "steppedLine": false, - "targets": [ - { - "expr": "sum by (cluster,pod) (rate(switchboard_node_aggregation_insufficient_responses_total[5m]))", - "interval": "", - "legendFormat": "", - "refId": "A" - } - ], - "thresholds": [ - { - "colorMode": "critical", - "fill": true, - "line": true, - "op": "gt", - "value": 2 - } - ], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "insufficient aggregation error rate", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "alert": { - "alertRuleTags": {}, - "conditions": [ - { - "evaluator": { - "params": [ - 0.1 - ], - "type": "gt" - }, - "operator": { - "type": "and" - }, - "query": { - "params": [ - "A", - "5m", - "now" - ] - }, - "reducer": { - "params": [], - "type": "max" - }, - "type": "query" - } - ], - "executionErrorState": "alerting", - "for": "5m", - "frequency": "1m", - "handler": 1, - "message": "job failure percentage too high", - "name": "job failure percentage rate alert", - "noDataState": "no_data", - "notifications": [ - { - "uid": "x9wXxo77k" - } - ] - }, - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": null, - "fieldConfig": { - "defaults": { - "custom": {} - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 48 - }, - "hiddenSeries": false, - "id": 4, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "7.3.10", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": true, - "steppedLine": false, - "targets": [ - { - "expr": "sum by (cluster,pod) (rate(switchboard_job_failure_total[5m])/(rate(switchboard_job_success_total[5m])+rate(switchboard_job_failure_total[5m])))", - "interval": "", - "legendFormat": "", - "refId": "A" - } - ], - "thresholds": [ - { - "colorMode": "critical", - "fill": true, - "line": true, - "op": "gt", - "value": 0.1 - } - ], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "job failure percentage rate", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "alert": { - "alertRuleTags": {}, - "conditions": [ - { - "evaluator": { - "params": [ - 0.05 - ], - "type": "gt" - }, - "operator": { - "type": "and" - }, - "query": { - "params": [ - "A", - "5m", - "now" - ] - }, - "reducer": { - "params": [], - "type": "min" - }, - "type": "query" - } - ], - "executionErrorState": "alerting", - "for": "5m", - "frequency": "1m", - "handler": 1, - "name": "heartbeat failure rate alert", - "noDataState": "no_data", - "notifications": [] - }, - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": null, - "description": "y axis is failures per 5 minute increment", - "fieldConfig": { - "defaults": { - "custom": {} - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 9, - "w": 12, - "x": 0, - "y": 56 - }, - "hiddenSeries": false, - "id": 2, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "7.3.10", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": true, - "steppedLine": false, - "targets": [ - { - "expr": "sum by (cluster,pod) (rate(switchboard_heartbeat_failure_total[5m]))", - "interval": "", - "legendFormat": "", - "refId": "A" - } - ], - "thresholds": [ - { - "colorMode": "critical", - "fill": true, - "line": true, - "op": "gt", - "value": 0.05 - } - ], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "heartbeat failure rate", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - } - ], - "refresh": false, - "schemaVersion": 26, - "style": "dark", - "tags": [], - "templating": { - "list": [] - }, - "time": { - "from": "now-7d", - "to": "now" - }, - "timepicker": {}, - "timezone": "", - "title": "switchboard metrics", - "uid": "PQkgE_Mnk", - "version": 43 - } \ No newline at end of file diff --git a/oracles/helm-deployment/helm/grafana-values.yaml b/oracles/helm-deployment/helm/grafana-values.yaml deleted file mode 100644 index 4358606..0000000 --- a/oracles/helm-deployment/helm/grafana-values.yaml +++ /dev/null @@ -1,52 +0,0 @@ -persistence: - enabled: true - storageClassName: standard-rwo -adminUser: admin -adminPassword: $GRAFANA_ADMIN_PASSWORD -resources: - requests: - memory: "1024Mi" - cpu: "500m" - limits: - memory: "1024Mi" - cpu: "500m" -service: - type: ClusterIP -ingress: - enabled: true - annotations: - kubernetes.io/ingress.class: "nginx" - hosts: [$GRAFANA_HOSTNAME] - tls: - - hosts: - - $GRAFANA_HOSTNAME -namespaceOverride: grafana -sidecar: - dashboards: - enabled: true - labelValue: "1" -datasources: - datasources.yaml: - apiVersion: 1 - datasources: - - name: victoriametrics - type: $METRICS_EXPORTER - url: "http://vmsingle-victoria-metrics-single-server.default.svc:8428" - access: proxy - editable: true - isDefault: true - basicAuth: false - -notifiers: - name: PagerDuty - type: pagerduty - uid: pagerduty1 - org_id: 1 - is_default: true - send_reminder: true - frequency: 5m - disable_resolve_message: false - settings: - autoResolve: true - secure_settings: - integrationKey: $PAGERDUTY_EVENT_KEY diff --git a/oracles/helm-deployment/helm/nginx-values.yaml b/oracles/helm-deployment/helm/nginx-values.yaml deleted file mode 100644 index 4d0e37d..0000000 --- a/oracles/helm-deployment/helm/nginx-values.yaml +++ /dev/null @@ -1,7 +0,0 @@ -controller: - setAsDefaultIngress: true - service: - loadBalancerIP: $EXTERNAL_IP - wildcardTLS: - cert: $GRAFANA_TLS_CRT - key: $GRAFANA_TLS_KEY diff --git a/oracles/helm-deployment/helm/switchboard-oracle/.helmignore b/oracles/helm-deployment/helm/switchboard-oracle/.helmignore deleted file mode 100644 index 0e8a0eb..0000000 --- a/oracles/helm-deployment/helm/switchboard-oracle/.helmignore +++ /dev/null @@ -1,23 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*.orig -*~ -# Various IDEs -.project -.idea/ -*.tmproj -.vscode/ diff --git a/oracles/helm-deployment/helm/switchboard-oracle/Chart.yaml b/oracles/helm-deployment/helm/switchboard-oracle/Chart.yaml deleted file mode 100644 index 49f5f9c..0000000 --- a/oracles/helm-deployment/helm/switchboard-oracle/Chart.yaml +++ /dev/null @@ -1,26 +0,0 @@ -apiVersion: v2 -name: switchboard-xyz/switchboard-oracle -description: A Helm chart for the switchboard oracle application - -# A chart can be either an 'application' or a 'library' chart. -# -# Application charts are a collection of templates that can be packaged into versioned archives -# to be deployed. -# -# Library charts provide useful utilities or functions for the chart developer. They're included as -# a dependency of application charts to inject those utilities and functions into the rendering -# pipeline. Library charts do not define any templates and therefore cannot be deployed. -type: application - -# This is the chart version. This version number should be incremented each time you make changes -# to the chart and its templates, including the app version. -# Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.0 - -# This is the version number of the application being deployed. This version number should be -# incremented each time you make changes to the application. Versions are not expected to -# follow Semantic Versioning. They should reflect the version the application is using. -# It is recommended to use it with quotes. -appVersion: "1.16.0" - -icon: https://docs.switchboard.xyz/img/switchboard_purple.png \ No newline at end of file diff --git a/oracles/helm-deployment/helm/switchboard-oracle/templates/_helpers.tpl b/oracles/helm-deployment/helm/switchboard-oracle/templates/_helpers.tpl deleted file mode 100644 index 7cb2529..0000000 --- a/oracles/helm-deployment/helm/switchboard-oracle/templates/_helpers.tpl +++ /dev/null @@ -1,62 +0,0 @@ -{{/* -Expand the name of the chart. -*/}} -{{- define "switchboard-oracle.name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} -{{- end }} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -If release name contains chart name it will be used as a full name. -*/}} -{{- define "switchboard-oracle.fullname" -}} -{{- if .Values.fullnameOverride }} -{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} -{{- else }} -{{- $name := default .Chart.Name .Values.nameOverride }} -{{- if contains $name .Release.Name }} -{{- .Release.Name | trunc 63 | trimSuffix "-" }} -{{- else }} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} -{{- end }} -{{- end }} -{{- end }} - -{{/* -Create chart name and version as used by the chart label. -*/}} -{{- define "switchboard-oracle.chart" -}} -{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} -{{- end }} - -{{/* -Common labels -*/}} -{{- define "switchboard-oracle.labels" -}} -helm.sh/chart: {{ include "switchboard-oracle.chart" . }} -{{ include "switchboard-oracle.selectorLabels" . }} -{{- if .Chart.AppVersion }} -app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} -{{- end }} -app.kubernetes.io/managed-by: {{ .Release.Service }} -{{- end }} - -{{/* -Selector labels -*/}} -{{- define "switchboard-oracle.selectorLabels" -}} -app.kubernetes.io/name: {{ include "switchboard-oracle.name" . }} -app.kubernetes.io/instance: {{ .Release.Name }} -{{- end }} - -{{/* -Create the name of the service account to use -*/}} -{{- define "switchboard-oracle.serviceAccountName" -}} -{{- if .Values.serviceAccount.create }} -{{- default (include "switchboard-oracle.fullname" .) .Values.serviceAccount.name }} -{{- else }} -{{- default "default" .Values.serviceAccount.name }} -{{- end }} -{{- end }} diff --git a/oracles/helm-deployment/helm/switchboard-oracle/templates/oracle-deployment.yaml b/oracles/helm-deployment/helm/switchboard-oracle/templates/oracle-deployment.yaml deleted file mode 100644 index 0a1e1e6..0000000 --- a/oracles/helm-deployment/helm/switchboard-oracle/templates/oracle-deployment.yaml +++ /dev/null @@ -1,102 +0,0 @@ -{{- $values := .Values -}} -{{- range $index, $key := .Values.oracleKeys }} -apiVersion: apps/v1 -kind: Deployment -metadata: - labels: - app: oracle - name: oracle-deployment-{{ $key.name }} -spec: - replicas: 1 - selector: - matchLabels: - app: oracle - strategy: - rollingUpdate: - maxSurge: 1 - maxUnavailable: 0 - template: - metadata: - labels: - app: oracle - spec: - affinity: - podAntiAffinity: - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: app - operator: In - values: - - oracle - topologyKey: kubernetes.io/hostname - containers: - - env: - - - name: RPC_URL - value: {{ $values.rpcUrl }} - - - name: WS_URL - value: {{ $values.wsUrl }} - - - name: PAGERDUTY_EVENT_KEY - value: {{ $values.pagerdutyEventKey }} - - - name: LIVE - value: "1" - - - name: CLUSTER - value: {{ $values.cluster }} - - - name: HEARTBEAT_INTERVAL - value: {{ $values.heartbeatInterval }} - - - name: GOOGLE_PAYER_SECRET_PATH - value: {{ $values.googlePayerSecretPath }} - - - name: GOOGLE_ORACLE_SECRET_PATH - value: {{ $values.googleOracleSecretPath }} - - - name: METRICS_EXPORTER - value: {{ $values.metricsExporter }} - - - name: GCP_CONFIG_BUCKET - value: {{ $values.gcpConfigBucket }} - - - name: ORACLE_KEY - value: {{ $key.data }} - - - name: GOOGLE_APPLICATION_CREDENTIALS - value: /var/secrets/google/key.json - - - name: BACKUP_MAINNET_RPC - value: {{ $values.backupMainnetUrl }} - image: {{ $values.image }} - imagePullPolicy: Always - name: oracle - ports: - - name: web - containerPort: 9090 - protocol: TCP - livenessProbe: - httpGet: - path: /healthz - port: 8080 - initialDelaySeconds: 30 - periodSeconds: 3 - resources: - limits: - cpu: 3000m - memory: 4092Mi - requests: - cpu: 3000m - memory: 4092Mi - volumeMounts: - - mountPath: /var/secrets/google - name: google-cloud-key - volumes: - - name: google-cloud-key - secret: - secretName: service-account ---- -{{ end }} \ No newline at end of file diff --git a/oracles/helm-deployment/helm/switchboard-oracle/templates/service-account-secret.yaml b/oracles/helm-deployment/helm/switchboard-oracle/templates/service-account-secret.yaml deleted file mode 100644 index f8a9f14..0000000 --- a/oracles/helm-deployment/helm/switchboard-oracle/templates/service-account-secret.yaml +++ /dev/null @@ -1,7 +0,0 @@ -apiVersion: v1 -kind: Secret -type: Opaque -data: - key.json: {{ .Values.keyJson }} -metadata: - name: service-account diff --git a/oracles/helm-deployment/helm/switchboard-oracle/values.yaml b/oracles/helm-deployment/helm/switchboard-oracle/values.yaml deleted file mode 100644 index efcaecf..0000000 --- a/oracles/helm-deployment/helm/switchboard-oracle/values.yaml +++ /dev/null @@ -1,20 +0,0 @@ -image: "docker.io/switchboardlabs/node:$SBV2_NODE_IMAGE" -cluster: $CLUSTER -rpcUrl: $RPC_URL -wsUrl: $WS_URL -backupMainnetUrl: $BACKUP_MAINNET_RPC -googlePayerSecretPath: $GOOGLE_PAYER_SECRET_PATH -googleOracleSecretPath: $GOOGLE_PAYER_SECRET_PATH -keyJson: $SERVICE_ACCOUNT_BASE64 -gcpConfigBucket: $GCP_CONFIG_BUCKET -metricsExporter: $METRICS_EXPORTER -pagerdutyEventKey: "$PAGERDUTY_EVENT_KEY" -heartbeatInterval: "$HEARTBEAT_INTERVAL" -nonceFlag: "$NONCE_FLAG" -nonceQueueSize: "$NONCE_QUEUE_SIZE" -unwrapStakeThreshold: "$UNWRAP_STAKE_THRESHOLD" -oracleKeys: - - name: idx-1 - data: $ORACLE_KEY - # - name: idx-2 - # data: $ORACLE_KEY diff --git a/oracles/helm-deployment/helm/vmetrics-values.yaml b/oracles/helm-deployment/helm/vmetrics-values.yaml deleted file mode 100644 index 39bc46b..0000000 --- a/oracles/helm-deployment/helm/vmetrics-values.yaml +++ /dev/null @@ -1,17 +0,0 @@ -server: - scrape: - enabled: true - configMap: "" - config: - global: - scrape_interval: 15s - scrape_configs: - - job_name: "oracle-pods" - kubernetes_sd_configs: - - role: pod - scheme: http - metrics_path: /metrics - relabel_configs: - - source_labels: [__meta_kubernetes_pod_label_app] - regex: oracle - action: keep diff --git a/oracles/helm-deployment/scripts/create-secret.sh b/oracles/helm-deployment/scripts/create-secret.sh deleted file mode 100755 index 7f452b3..0000000 --- a/oracles/helm-deployment/scripts/create-secret.sh +++ /dev/null @@ -1,66 +0,0 @@ -#!/bin/bash - -set -e - -script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) - -stty sane # dont show backspace char during prompts - -project=$1 -if [ -z "$project" ]; -then - echo "failed to provide project to create secret" - exit 1 -fi -secret_name=$2 -if [ -z "$secret_name" ]; -then - echo "failed to provide project secret_name to create secret" - exit 1 -fi -service_account_email=$3 -if [ -z "$service_account_email" ]; -then - echo "failed to provide project service_account_email to create secret" - exit 1 -fi - -if gcloud secrets list --project "$project" | grep -q "^${secret_name}\s"; -then - echo -e "\npayer secret already exists: ${secret_name}" -else - echo -e "\nCreating payer secret: ${secret_name}" - while - read -rp "Enter the path to your payer keypair: " payer_keypair_path - do - if [[ -f "$payer_keypair_path" ]] - then - gcloud secrets create "$secret_name" --replication-policy="automatic" --data-file="$payer_keypair_path" --project "$project" - sleep 3 - gcloud secrets add-iam-policy-binding "$secret_name" --member="serviceAccount:${service_account_email}" --role="roles/secretmanager.secretAccessor" --project "$project" > /dev/null - break - else - echo "File does not exists, please try again." - continue - fi - done -fi -google_payer_secret_path="$(gcloud secrets list --uri --filter="${secret_name}" --project "$project" | cut -c41- | tr -d '\n')/versions/latest" - -printf "secret: %s\n" "$google_payer_secret_path" - - -read -rp "Want to save values to $project.env? (y/n)? " answer -case ${answer:0:1} in - y|Y ) - "$script_dir"/save-env-value.sh "$project" "SECRET_NAME" "$secret_name" - "$script_dir"/save-env-value.sh "$project" "GOOGLE_PAYER_SECRET_PATH" "$google_payer_secret_path" - ;; - * ) - echo "User Exited" - exit 0 - ;; -esac - - -exit 0 \ No newline at end of file diff --git a/oracles/helm-deployment/scripts/create-svc-account.sh b/oracles/helm-deployment/scripts/create-svc-account.sh deleted file mode 100755 index 4d57e5d..0000000 --- a/oracles/helm-deployment/scripts/create-svc-account.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/bash - -set -e - -script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) - -stty sane # dont show backspace char during prompts - -project=$1 -if [ -z "$project" ]; -then - echo "failed to provide project to create secret" - exit 1 -fi -service_account_display_name=$2 -if [ -z "$service_account_display_name" ]; -then - echo "failed to provide project service_account_name, defaulting to Oracle Service Account" - service_account_display_name="oracle-svc-account" -fi - -service_account_name=$(echo "${service_account_display_name// /-}" | awk '{print tolower($0)}') # Replace spaces with dashes and make lower case -service_account_file="secrets/$project-$service_account_name.private-key.json" -service_account_email="${service_account_name}@${project}.iam.gserviceaccount.com" -if gcloud iam service-accounts list --project "$project" | grep -q "${service_account_email}\s"; -then - echo -e "\nservice account already exists: ${service_account_email}" -else - echo -e "\nCreating service account: ${service_account_name}" - gcloud iam service-accounts create "$service_account_name" --display-name="$service_account_display_name" --project "$project" -fi -while true; do - if [ ! -s "$service_account_file" ] - then - mkdir -p secrets - if ! gcloud iam service-accounts keys create "$service_account_file" --iam-account="$service_account_email" --project "$project"; then - echo "failed to create new svc-account key and output file is empty - deleting and recreating svc-account key" - lastKeyId=$(gcloud iam service-accounts keys list --iam-account="$service_account_email" | awk 'NR==2' | grep -o "^\w*\b" | tr -d '\n') - gcloud iam service-accounts keys delete "$lastKeyId" --iam-account="$service_account_email" --project "$project" - continue - fi - fi - break -done -service_account_base64=$(base64 "$service_account_file") - - -read -rp "Want to save values to $project.env? (y/n)? " answer -case ${answer:0:1} in - y|Y ) - "$script_dir"/save-env-value.sh "$project" "SERVICE_ACCOUNT_EMAIL" "$service_account_email" - "$script_dir"/save-env-value.sh "$project" "SERVICE_ACCOUNT_BASE64" "$service_account_base64" - ;; - * ) - echo "User Exited" - exit 0 - ;; -esac - -exit 0 \ No newline at end of file diff --git a/oracles/helm-deployment/scripts/save-env-value.sh b/oracles/helm-deployment/scripts/save-env-value.sh deleted file mode 100755 index b3c8f8a..0000000 --- a/oracles/helm-deployment/scripts/save-env-value.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash - -project=$1 -if [ -z "$project" ]; -then - echo "failed to provide project to save env value" - exit 1 -fi -envFile=$(realpath "$project".env) -touch "$envFile" - -key=$2 -if [ -z "$key" ]; -then - echo "failed to provide key to save env value" - exit 1 -fi - -value=$3 -if [ -z "$value" ]; -then - echo "failed to provide value to save env value" - exit 1 -fi - -existingLineRegex="^$key=.*$" -newLine=$(printf '%s="%s"\n' "$key" "$value") - -if grep "$existingLineRegex" "$envFile" -then - sed -E -i '' "s!$existingLineRegex!$newLine!g" "$envFile" -else - echo "$newLine" >> "$envFile" -fi - -exit 0 \ No newline at end of file diff --git a/oracles/helm-deployment/setup-gcloud.sh b/oracles/helm-deployment/setup-gcloud.sh deleted file mode 100755 index 108ec00..0000000 --- a/oracles/helm-deployment/setup-gcloud.sh +++ /dev/null @@ -1,209 +0,0 @@ -#!/bin/bash -# Initiate a new google cloud project and build the necessary configuration - -set -e - -stty sane # dont show backspace char during prompts - -script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) - -## Get Project Name -project=$1 -if [ -z "$project" ]; -then - read -rp "Enter the name for the google cloud project (Ex. switchboard-oracle-cluster): " project -fi -project=$(echo "${project// /-}" | awk '{print tolower($0)}') # Replace spaces with dashes and make lower case -echo -e "project name: $project" - -## Create GCP Project -if gcloud projects list | grep -q "^${project}\s"; -then - echo -e "\ngcloud project already exists: ${project}" -else -echo -e "\nCreating gcloud project: ${project}" - gcloud projects create "$project" -fi -gcloud config set project "$project" ## TODO: Remove when each command explicitly sets project -"$script_dir"/scripts/save-env-value.sh "$project" "PROJECT" "$project" - -echo -e "\nhttps://console.cloud.google.com/billing/enable?project=$project" -read -rp "Have you enabled billing on this project ($project)? (y/n)? " answer -case ${answer:0:1} in - y|Y ) - ;; - * ) - echo "User Exited" - exit 0 - ;; -esac - -## Enable Required Services -printf "\n########## Enabling GCP Services ##########\n" -gcloud services enable compute.googleapis.com --project "$project" > /dev/null -gcloud services enable container.googleapis.com --project "$project" > /dev/null -gcloud services enable iamcredentials.googleapis.com --project "$project" > /dev/null -gcloud services enable secretmanager.googleapis.com --project "$project" > /dev/null - -## Set Default Region/Zone -printf "\n########## GCP Project Config ##########\n" -region=$(gcloud compute project-info describe --project "$project" | grep -A1 "google-compute-default-region" | tail -n 1 | cut -d ":" -f2- | awk '{$1=$1};1') -zone=$(gcloud compute project-info describe --project "$project" | grep -A1 "google-compute-default-zone" | tail -n 1 | cut -d ":" -f2- | awk '{$1=$1};1') -if [[ -z "$region" || -z "$zone" ]] -then - PS3="Enter a number to select your clusters region: " - select region in us-east1 us-central1 us-west1 europe-north1 europe-west1 asia-east1 asia-southeast1 asia-east2 - do - case $region in - us-east1) - region="us-east1" - zone="us-east1-b" - break - ;; - us-central1) - region="us-central1" - zone="us-central1-a" - break - ;; - us-west1) - region="us-west1" - zone="us-west1-a" - break - ;; - europe-north1) - region="europe-north1" - zone="europe-north1-a" - break - ;; - europe-west1) - region="europe-west1" - zone="europe-west1-b" - break - ;; - asia-east1) - region="asia-east1" - zone="asia-east1-a" - break - ;; - asia-southeast1) - region="asia-southeast1" - zone="asia-southeast1-a" - break - ;; - asia-east2) - region="asia-east2" - zone="asia-east2-a" - break - ;; - *) - echo "Invalid option $REPLY" - ;; - esac - done - gcloud compute project-info add-metadata --metadata google-compute-default-region=$region,google-compute-default-zone=$zone --project "$project" -else - echo -e "project default region ($region) and zone ($zone) already configured" -fi -"$script_dir"/scripts/save-env-value.sh "$project" "DEFAULT_REGION" "$region" -"$script_dir"/scripts/save-env-value.sh "$project" "DEFAULT_ZONE" "$zone" - -## Create Service Account -printf "\n########## Service Account ##########\n" -service_account_display_name="Oracle Service Account" -service_account_name=$(echo "${service_account_display_name// /-}" | awk '{print tolower($0)}') # Replace spaces with dashes and make lower case -service_account_file="secrets/$project-$service_account_name.private-key.json" -service_account_email="${service_account_name}@${project}.iam.gserviceaccount.com" -if gcloud iam service-accounts list --project "$project" | grep -q "${service_account_email}\s"; -then - echo -e "service account already exists: ${service_account_email}" -else - echo -e "Creating service account: ${service_account_name}" - gcloud iam service-accounts create "$service_account_name" --display-name="$service_account_display_name" --project "$project" -fi -while true; do - if [ ! -s "$service_account_file" ] - then - mkdir -p secrets - if ! gcloud iam service-accounts keys create "$service_account_file" --iam-account="$service_account_email" --project "$project"; then - echo "failed to create new svc-account key and output file is empty - deleting and recreating svc-account key" - lastKeyId=$(gcloud iam service-accounts keys list --iam-account="$service_account_email" | awk 'NR==2' | grep -o "^\w*\b" | tr -d '\n') - gcloud iam service-accounts keys delete "$lastKeyId" --iam-account="$service_account_email" --project "$project" - continue - fi - fi - break -done -service_account_base64=$(base64 "$service_account_file") -"$script_dir"/scripts/save-env-value.sh "$project" "SERVICE_ACCOUNT_EMAIL" "$service_account_email" -"$script_dir"/scripts/save-env-value.sh "$project" "SERVICE_ACCOUNT_BASE64" "$service_account_base64" - -## Create External IP -printf "\n########## External IP ##########\n" -external_ip_name="cluster-external-ip" -if gcloud compute addresses list --project "$project" | grep -q "^${external_ip_name}\s"; -then - echo -e "external ipv4 address already exists: ${external_ip_name}" -else - echo -e "Creating external ipv4 address: ${external_ip_name}" - gcloud compute addresses create ${external_ip_name} --region $region --project "$project" -fi -external_ip=$(gcloud compute addresses list --project "$project" | grep "^${external_ip_name}\s" | grep -oE "((1?[0-9][0-9]?|2[0-4][0-9]|25[0-5])\.){3}(1?[0-9][0-9]?|2[0-4][0-9]|25[0-5])") -"$script_dir"/scripts/save-env-value.sh "$project" "EXTERNAL_IP" "$external_ip" - -## Create Keypair Secret -printf "\n########## Oracle Payer Secret ##########\n" -secret_name="oracle-payer-secret" -if gcloud secrets list --project "$project" | grep -q "^${secret_name}\s"; -then - echo -e "payer secret already exists: ${secret_name}" -else - echo -e "Creating payer secret: ${secret_name}" - while - read -rp "Enter the path to your payer keypair: " payer_keypair_path - do - if [[ -f "$payer_keypair_path" ]] - then - gcloud secrets create $secret_name --replication-policy="automatic" --data-file="$payer_keypair_path" --project "$project" - sleep 3 - gcloud secrets add-iam-policy-binding $secret_name --member="serviceAccount:${service_account_email}" --role="roles/secretmanager.secretAccessor" --project "$project" > /dev/null - break - else - echo "File does not exists, please try again." - continue - fi - done -fi -google_payer_secret_path="$(gcloud secrets list --uri --filter=${secret_name} --project "$project" | cut -c41- | tr -d '\n')/versions/latest" -"$script_dir"/scripts/save-env-value.sh "$project" "SECRET_NAME" "$secret_name" -"$script_dir"/scripts/save-env-value.sh "$project" "GOOGLE_PAYER_SECRET_PATH" "$google_payer_secret_path" - -## Storage Bucket -printf "\n########## Storage Bucket ##########\n" -storage_bucket_name="${project}-oracle-configs" -storage_bucket_path="$storage_bucket_name:configs.json" -full_storage_bucket_name="gs://$project-oracle-configs" -if gsutil ls | grep -q "^gs://$storage_bucket_name/"; -then - echo -e "storage bucket already exists: ${storage_bucket_name}" -else - echo -e "Creating storage bucket: ${storage_bucket_name}" - gsutil mb -p "$project" -l "$region" "$full_storage_bucket_name" - gsutil iam ch serviceAccount:"$service_account_email":legacyBucketReader "$full_storage_bucket_name" -fi -storage_bucket_path="$storage_bucket_name:configs.json" -"$script_dir"/scripts/save-env-value.sh "$project" "GCP_CONFIG_BUCKET" "$storage_bucket_path" - -## Start container and save credentials -printf "\n########## Kubernetes Cluster ##########\n" -cluster_name="switchboard-cluster" -if gcloud container clusters list --project "$project" | grep -q "^${cluster_name}\s"; -then - echo -e "kubernetes cluster already exists: ${cluster_name}" -else - echo -e "Creating kubernetes cluster: ${cluster_name}" - gcloud container clusters create-auto $cluster_name --service-account="$service_account_email" --region $region --project "$project" -fi -gcloud container clusters get-credentials $cluster_name --project "$project" --region $region -"$script_dir"/scripts/save-env-value.sh "$project" "CLUSTER_NAME" "$cluster_name" - -echo -e "\nEnvironment variables saved to ${project}.env" \ No newline at end of file diff --git a/oracles/helm-deployment/setup-grafana.sh b/oracles/helm-deployment/setup-grafana.sh deleted file mode 100755 index bcad850..0000000 --- a/oracles/helm-deployment/setup-grafana.sh +++ /dev/null @@ -1,101 +0,0 @@ -#!/bin/bash - -set -e - -stty sane # dont show backspace char during prompts - -script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) - -## Get Project Name -project=$1 -if [ -z "$project" ]; -then - read -rp "Enter the name for the google cloud project (Ex. switchboard-oracle-cluster): " project -fi -project=$(echo "${project// /-}" | awk '{print tolower($0)}') # Replace spaces with dashes and make lower case -echo -e "project name: $project" - -## Create TLS Certificate -mkdir -p secrets -tls_privkey_file=$(realpath "secrets/${project}-letsencrypt.private.key") -tls_pubkey_file=$(realpath "secrets/${project}-tls.public.pub") -csr_privkey_file=$(realpath "secrets/${project}-csr.private.key") -csr_file=$(realpath "secrets/${project}-csr.pem") -chain_file=$(realpath "secrets/${project}-tls-chain.pem") -crt_file=$(realpath "secrets/${project}-crt.pem") - -## Exit if we have the files we need -if [ -s "$csr_privkey_file" ] && [ -s "$crt_file" ] -then - grafana_tls_key=$(base64 "$csr_privkey_file") - printf "\nGRAFANA_TLS_KEY=\"%s\"\n" "$grafana_tls_key" - "$script_dir"/scripts/save-env-value.sh "$project" "GRAFANA_TLS_KEY" "$grafana_tls_key" > /dev/null - grafana_tls_crt=$(base64 "$crt_file") - printf "\nGRAFANA_TLS_CRT=\"%s\"\n" "$grafana_tls_crt" - "$script_dir"/scripts/save-env-value.sh "$project" "GRAFANA_TLS_CRT" "$grafana_tls_crt" > /dev/null - exit 0 -fi - -if [ ! -s "$tls_privkey_file" ]; then - openssl genrsa 4096 > "$tls_privkey_file" -fi -tls_pubkey=$(openssl rsa -in "$tls_privkey_file" -pubout) -echo "$tls_pubkey" > "$tls_pubkey_file" -printf '\nStep #1: Account Public Key:\n%s\n\n' "$tls_pubkey" - -if [ ! -s "$csr_privkey_file" ]; then - openssl genrsa 4096 > "$csr_privkey_file" -fi -if [[ -s "$csr_privkey_file" ]]; then - grafana_tls_key=$(base64 "$csr_privkey_file") - # printf "\nGRAFANA_TLS_KEY=\"%s\"\n" "$grafana_tls_key" - "$script_dir"/scripts/save-env-value.sh "$project" "GRAFANA_TLS_KEY" "$grafana_tls_key" > /dev/null -fi - -if [ ! -s "$csr_file" ]; then - domain=$2 - read -rp "is this domain correct (${domain})? (y/n)? " answer - case ${answer:0:1} in - y|Y ) - ;; - * ) - read -rp "Enter your registered domain name where you will view grafana metrics (Ex. grafana.switchboard.com): " domain - ;; - esac - email=$3 - read -rp "is this email correct (${email})? (y/n)? " answer - case ${answer:0:1} in - y|Y ) - ;; - * ) - read -rp "Enter an email for your TLS CRT: " email - ;; - esac - "$script_dir"/scripts/save-env-value.sh "$project" "GRAFANA_HOSTNAME" "$domain" - openssl req -new -nodes -key "$csr_privkey_file" -out "$csr_file" -subj "/CN=${domain}/emailAddress=${email}" -fi -tls_csr=$(<"$csr_file") -printf '\nStep#2: Certificate Signing Request:\n%s\n' "$tls_csr" - - -if [ -s "$chain_file" ] -then - if [[ ! -f "$crt_file" || ! -s "$crt_file" ]]; then - openssl x509 -in "$chain_file" -out "$crt_file" - fi - grafana_tls_crt=$(base64 "$crt_file") - printf "\nGRAFANA_TLS_CRT=\"%s\"\n" "$grafana_tls_crt" - "$script_dir"/scripts/save-env-value.sh "$project" "GRAFANA_TLS_KEY" "$grafana_tls_key" > /dev/null - exit 0 -else - printf '\nPrivate Key File: %s' "$tls_privkey_file" - printf '\nPublic Key File: %s' "$tls_pubkey_file" - printf '\nCert Signing Request File: %s' "$csr_file" - - printf "\n\nComplete the steps at https://gethttpsforfree.com and save the entire TLS certificate chain to:\n\t%s\n" "$chain_file" - - echo -e "\n\texport PRIV_KEY=\"$tls_privkey_file\"" - exit 0 -fi - -exit 0 diff --git a/package.json b/package.json deleted file mode 100644 index c2129bb..0000000 --- a/package.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "name": "@switchboard-xyz/switchboard-v2-monorepo", - "description": "switchboard v2 repo containing type definitions, libraries, and examples", - "private": true, - "workspaces": [ - "tools/eslint", - "libraries/sbv2-lite", - "libraries/ts", - "libraries/sbv2-utils", - "examples/clients/*", - "examples/programs/*", - "website" - ], - "scripts": { - "watch": "yarn workspaces run watch", - "build": "yarn workspaces run build", - "build:ts": "yarn workspace @switchboard-xyz/switchboard-v2 build", - "start": "echo \"Error: no start script specified\" && exit 1", - "anchor:setup": "anchor build && node ./scripts/setup-example-programs.js", - "test:anchor": "yarn workspace anchor-feed-parser anchor:test && yarn workspace native-feed-parser anchor:test && yarn workspace anchor-vrf-parser anchor:test", - "test:libraries:ts": "yarn workspace @switchboard-xyz/sbv2-lite test && yarn workspace @switchboard-xyz/switchboard-v2 test", - "test:libraries:py": "cd libraries/py && poetry run pytest", - "test:libraries:rs": "cd libraries/rs && cargo test", - "test:libraries": "yarn test:libraries:ts & yarn test:libraries:rs", - "docs": "yarn workspace website start", - "docs:build:py": "pip install poetry && cd libraries/py && poetry install && poetry run python -m pdoc switchboardpy -o ../../website/static/api/py", - "docs:build:ts": "yarn workspace @switchboard-xyz/switchboard-v2 docgen", - "docs:build:sbv2-lite": "yarn workspace @switchboard-xyz/sbv2-lite docgen", - "docs:build:sbv2-utils": "yarn workspace @switchboard-xyz/sbv2-utils docgen", - "docs:build:cli": "node ./scripts/generate-cli-docs.js", - "docs:build:site": "yarn workspace website build:site", - "docs:build": "run-s docs:build:ts docs:build:sbv2-lite docs:build:sbv2-utils docs:build:site", - "docs:deploy": "yarn workspace website deploy", - "gen:idl": "rawrtools gen:anchor SW1TCH7qEPTdLsDHRgPuMQjbQxKdH2aBStViMFnt64f -o website/idl -p /idl", - "gen:idl:devnet": "rawrtools gen:anchor --devnet 2TfB33aLaneQb5TNVwyDz3jSZXS6jdW2ARw1Dgf84XCG -o website/idl -p /idl", - "nuke": "shx rm -rf {./programs/*,./packages/*,./website,./libraries/*,.}/{node_modules,yarn*.log,build,dist,lib,.anchor,Cargo.lock,.docusaurus,target/release,target/rls,target/bpfel-unknown-unknown}" - }, - "devDependencies": { - "@gallynaut/rawrtools": "^0.0.1", - "@types/node": "^17.0.45", - "anchor-client-gen": "^0.24.0", - "lerna": "^4.0.0", - "npm-run-all": "^4.1.5", - "shelljs": "^0.8.5", - "shx": "^0.3.4", - "ts-node": "^10.8.0", - "typedoc": "^0.23.3", - "typescript": "^4.7.3" - }, - "engines": { - "node": ">=16", - "npm": ">=8" - }, - "dependencies": { - "dotenv": "^16.0.1" - } -} diff --git a/examples/programs/README.md b/programs/README.md similarity index 100% rename from examples/programs/README.md rename to programs/README.md diff --git a/programs/anchor-buffer-parser/Anchor.toml b/programs/anchor-buffer-parser/Anchor.toml new file mode 100644 index 0000000..80fa300 --- /dev/null +++ b/programs/anchor-buffer-parser/Anchor.toml @@ -0,0 +1,26 @@ +[workspace] +members = [ + "." +] + +[provider] +# cluster = "devnet" +cluster = "localnet" +wallet = "../../../payer-keypair.json" +# wallet = "~/.config/solana/id.json" + +[programs.localnet] +anchor_buffer_parser = "96punQGZDShZGkzsBa3SsfTxfUnwu4XGpzXbhF7NTgcP" + +[registry] +url = "https://anchor.projectserum.com" + +[scripts] +test = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 ./tests/*.test.ts" + + +[test.validator] +url="https://api.devnet.solana.com" + +[[testnet.validator.clone]] +address="GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR" # sbv2 SOL/USD Feed \ No newline at end of file diff --git a/examples/programs/anchor-buffer-parser/Cargo.toml b/programs/anchor-buffer-parser/Cargo.toml similarity index 78% rename from examples/programs/anchor-buffer-parser/Cargo.toml rename to programs/anchor-buffer-parser/Cargo.toml index 0c11d58..e8540ef 100644 --- a/examples/programs/anchor-buffer-parser/Cargo.toml +++ b/programs/anchor-buffer-parser/Cargo.toml @@ -16,7 +16,7 @@ cpi = ["no-entrypoint"] default = [] [dependencies] -# switchboard-v2 = { path = "../../../libraries/rs", features = ["devnet"] } +# switchboard-v2 = { path = "../../rust/switchboard-v2", features = ["devnet"] } switchboard-v2 = { version = "^0.1.14", features = ["devnet"] } anchor-lang = "^0.25.0" solana-program = "~1.10.29" \ No newline at end of file diff --git a/examples/programs/anchor-buffer-parser/Xargo.toml b/programs/anchor-buffer-parser/Xargo.toml similarity index 100% rename from examples/programs/anchor-buffer-parser/Xargo.toml rename to programs/anchor-buffer-parser/Xargo.toml diff --git a/examples/programs/anchor-buffer-parser/client/accounts/BufferClient.ts b/programs/anchor-buffer-parser/client/accounts/BufferClient.ts similarity index 100% rename from examples/programs/anchor-buffer-parser/client/accounts/BufferClient.ts rename to programs/anchor-buffer-parser/client/accounts/BufferClient.ts diff --git a/examples/programs/anchor-buffer-parser/client/accounts/index.ts b/programs/anchor-buffer-parser/client/accounts/index.ts similarity index 100% rename from examples/programs/anchor-buffer-parser/client/accounts/index.ts rename to programs/anchor-buffer-parser/client/accounts/index.ts diff --git a/examples/programs/anchor-buffer-parser/client/errors/anchor.ts b/programs/anchor-buffer-parser/client/errors/anchor.ts similarity index 100% rename from examples/programs/anchor-buffer-parser/client/errors/anchor.ts rename to programs/anchor-buffer-parser/client/errors/anchor.ts diff --git a/examples/programs/anchor-buffer-parser/client/errors/custom.ts b/programs/anchor-buffer-parser/client/errors/custom.ts similarity index 100% rename from examples/programs/anchor-buffer-parser/client/errors/custom.ts rename to programs/anchor-buffer-parser/client/errors/custom.ts diff --git a/examples/programs/anchor-buffer-parser/client/errors/index.ts b/programs/anchor-buffer-parser/client/errors/index.ts similarity index 100% rename from examples/programs/anchor-buffer-parser/client/errors/index.ts rename to programs/anchor-buffer-parser/client/errors/index.ts diff --git a/examples/programs/anchor-buffer-parser/client/instructions/index.ts b/programs/anchor-buffer-parser/client/instructions/index.ts similarity index 100% rename from examples/programs/anchor-buffer-parser/client/instructions/index.ts rename to programs/anchor-buffer-parser/client/instructions/index.ts diff --git a/examples/programs/anchor-buffer-parser/client/instructions/readResult.ts b/programs/anchor-buffer-parser/client/instructions/readResult.ts similarity index 100% rename from examples/programs/anchor-buffer-parser/client/instructions/readResult.ts rename to programs/anchor-buffer-parser/client/instructions/readResult.ts diff --git a/examples/programs/anchor-buffer-parser/client/programId.ts b/programs/anchor-buffer-parser/client/programId.ts similarity index 100% rename from examples/programs/anchor-buffer-parser/client/programId.ts rename to programs/anchor-buffer-parser/client/programId.ts diff --git a/examples/programs/anchor-buffer-parser/client/types/ReadResultParams.ts b/programs/anchor-buffer-parser/client/types/ReadResultParams.ts similarity index 100% rename from examples/programs/anchor-buffer-parser/client/types/ReadResultParams.ts rename to programs/anchor-buffer-parser/client/types/ReadResultParams.ts diff --git a/examples/programs/anchor-buffer-parser/client/types/index.ts b/programs/anchor-buffer-parser/client/types/index.ts similarity index 100% rename from examples/programs/anchor-buffer-parser/client/types/index.ts rename to programs/anchor-buffer-parser/client/types/index.ts diff --git a/examples/programs/anchor-buffer-parser/package.json b/programs/anchor-buffer-parser/package.json similarity index 95% rename from examples/programs/anchor-buffer-parser/package.json rename to programs/anchor-buffer-parser/package.json index 8a11a9c..b0a7474 100644 --- a/examples/programs/anchor-buffer-parser/package.json +++ b/programs/anchor-buffer-parser/package.json @@ -14,6 +14,7 @@ "dependencies": { "@project-serum/anchor": "^0.24.2", "@solana/web3.js": "^1.42.0", + "@switchboard-xyz/common": "^2.0.0", "@switchboard-xyz/sbv2-utils": "^0.1.43", "@switchboard-xyz/switchboard-v2": "^0.0.135", "node-fetch": "^2.6" diff --git a/examples/programs/anchor-buffer-parser/src/lib.rs b/programs/anchor-buffer-parser/src/lib.rs similarity index 100% rename from examples/programs/anchor-buffer-parser/src/lib.rs rename to programs/anchor-buffer-parser/src/lib.rs diff --git a/examples/programs/anchor-buffer-parser/tests/anchor-buffer-parser.test.ts b/programs/anchor-buffer-parser/tests/anchor-buffer-parser.test.ts similarity index 97% rename from examples/programs/anchor-buffer-parser/tests/anchor-buffer-parser.test.ts rename to programs/anchor-buffer-parser/tests/anchor-buffer-parser.test.ts index 86160b4..b3096cd 100644 --- a/examples/programs/anchor-buffer-parser/tests/anchor-buffer-parser.test.ts +++ b/programs/anchor-buffer-parser/tests/anchor-buffer-parser.test.ts @@ -1,4 +1,5 @@ import * as anchor from "@project-serum/anchor"; +import { OracleJob } from "@switchboard-xyz/common"; import { promiseWithTimeout, sleep, @@ -8,14 +9,10 @@ import { AnchorWallet, BufferRelayerAccount, JobAccount, - OracleJob, PermissionAccount, } from "@switchboard-xyz/switchboard-v2"; import fetch from "node-fetch"; -import { - AnchorBufferParser, - IDL, -} from "../../../../target/types/anchor_buffer_parser"; +import { AnchorBufferParser, IDL } from "../target/types/anchor_buffer_parser"; import { PROGRAM_ID } from "../client/programId"; describe("anchor-buffer-parser test", () => { diff --git a/programs/anchor-buffer-parser/tsconfig.json b/programs/anchor-buffer-parser/tsconfig.json new file mode 100644 index 0000000..5a46adf --- /dev/null +++ b/programs/anchor-buffer-parser/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "target": "ES2019", + "lib": ["es2019", "dom"], + "moduleResolution": "node", + "types": ["node", "mocha", "chai"], + "typeRoots": ["./node_modules/@types"], + "module": "CommonJS", + "noEmit": true, + "esModuleInterop": true, + "paths": { + "@switchboard-xyz/switchboard-v2": ["../../javascript/solana.js"], + "@switchboard-xyz/sbv2-utils": ["../../javascript/sbv2-utils"] + } + }, + "include": ["tests/**/*", "client/**/*", "./target/types/anchor_feed_parser"], + "references": [ + { "path": "../../javascript/solana.js" }, + { "path": "../../javascript/sbv2-utils" } + ] +} diff --git a/programs/anchor-buffer-parser/yarn.lock b/programs/anchor-buffer-parser/yarn.lock new file mode 100644 index 0000000..6b05382 --- /dev/null +++ b/programs/anchor-buffer-parser/yarn.lock @@ -0,0 +1,3579 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/helper-validator-identifier@^7.18.6": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/highlight@^7.10.4": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/runtime@^7.10.5", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2", "@babel/runtime@^7.3.1": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259" + integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== + dependencies: + regenerator-runtime "^0.13.4" + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + 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" + +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + version "1.2.1" + resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.0" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@noble/ed25519@^1.7.0": + version "1.7.1" + resolved "https://registry.npmjs.org/@noble/ed25519/-/ed25519-1.7.1.tgz#6899660f6fbb97798a6fbd227227c4589a454724" + integrity sha512-Rk4SkJFaXZiznFyC/t77Q0NKS4FL7TLJJsVG2V2oiEq3kJVeTdxysEe/yRWSpnWMe808XRDJ+VFh5pt/FN5plw== + +"@noble/hashes@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183" + integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA== + +"@noble/secp256k1@^1.6.3": + version "1.7.0" + resolved "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.0.tgz#d15357f7c227e751d90aa06b05a0e5cf993ba8c1" + integrity sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw== + +"@orca-so/aquafarm@^0.0.12": + version "0.0.12" + resolved "https://registry.npmjs.org/@orca-so/aquafarm/-/aquafarm-0.0.12.tgz#255df50e9d8a408cebf600ee3507ff650484e94c" + integrity sha512-4vEkxeI5A5NHR9wre7Dtp9MYPCnke4v2PkaIv7933S490PErCYeqrlDPIEBTAKYWJpHFz5jR+h0bPFbmdMs3kw== + dependencies: + "@solana/spl-token" "^0.1.6" + "@solana/web3.js" "^1.20.0" + "@types/bn.js" "^5.1.0" + bn.js "^5.2.0" + buffer-layout "^1.2.1" + decimal.js "^10.3.0" + dotenv "^10.0.0" + eslint "^7.28.0" + mz "^2.7.0" + prompts "^2.4.1" + typescript "^4.3.2" + yargs "^17.0.1" + +"@orca-so/sdk@^1.2.24": + version "1.2.25" + resolved "https://registry.npmjs.org/@orca-so/sdk/-/sdk-1.2.25.tgz#3c00acb032567067a6d79528bb587b7057e183e8" + integrity sha512-9m4F9GgqNpK69IJ9SBg1//L471AO2X3cvG54jtM24sMIvMNiLiebdIrODLKIHyHcMouspK1qPTN20L64ymu8Bw== + dependencies: + "@orca-so/aquafarm" "^0.0.12" + "@orca-so/stablecurve" "^1.0.5" + "@solana/spl-token" "^0.1.5" + "@solana/spl-token-swap" "^0.1.2" + "@solana/web3.js" "^1.24.1" + decimal.js "^10.3.1" + +"@orca-so/stablecurve@^1.0.5": + version "1.0.6" + resolved "https://registry.npmjs.org/@orca-so/stablecurve/-/stablecurve-1.0.6.tgz#bff0d4c701e4361196ffb0fc641904e6d17df295" + integrity sha512-uZD1jVvOBxyuij4a5C2QT7Mv4m9lMABY/MvAz1xHnK+iJ5pkmSFdYEWzQZUrf8ElCRTYSN9yk7Kb18UmGZnT5g== + dependencies: + "@solana/spl-token" "^0.0.13" + bn.js "^5.1.3" + decimal.js "^10.2.1" + +"@project-serum/anchor@^0.24.2": + version "0.24.2" + resolved "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.24.2.tgz#a3c52a99605c80735f446ca9b3a4885034731004" + integrity sha512-0/718g8/DnEuwAidUwh5wLYphUYXhUbiClkuRNhvNoa+1Y8a4g2tJyxoae+emV+PG/Gikd/QUBNMkIcimiIRTA== + dependencies: + "@project-serum/borsh" "^0.2.5" + "@solana/web3.js" "^1.36.0" + base64-js "^1.5.1" + bn.js "^5.1.2" + bs58 "^4.0.1" + buffer-layout "^1.2.2" + camelcase "^5.3.1" + cross-fetch "^3.1.5" + crypto-hash "^1.3.0" + eventemitter3 "^4.0.7" + js-sha256 "^0.9.0" + pako "^2.0.3" + snake-case "^3.0.4" + toml "^3.0.0" + +"@project-serum/borsh@^0.2.5": + version "0.2.5" + resolved "https://registry.npmjs.org/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663" + integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q== + dependencies: + bn.js "^5.1.2" + buffer-layout "^1.2.0" + +"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" + integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== + +"@protobufjs/base64@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" + integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== + +"@protobufjs/codegen@^2.0.4": + version "2.0.4" + resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" + integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== + +"@protobufjs/eventemitter@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" + integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== + +"@protobufjs/fetch@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" + integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== + dependencies: + "@protobufjs/aspromise" "^1.1.1" + "@protobufjs/inquire" "^1.1.0" + +"@protobufjs/float@^1.0.2": + version "1.0.2" + resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" + integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== + +"@protobufjs/inquire@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" + integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== + +"@protobufjs/path@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" + integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== + +"@protobufjs/pool@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" + integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== + +"@protobufjs/utf8@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" + integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== + +"@saberhq/option-utils@^1.14.6": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/option-utils/-/option-utils-1.14.6.tgz#c48e4afb9d9a030e2b676beeeb2481c6529d3eb9" + integrity sha512-85IMZiYzSf3H7/ZYty+I5JW6EYGJQ8lmRri+wVuhmLtDX+E/iqEBeoS+ns56ZcyfRGl7nsuUriWnJamNz9ekBQ== + dependencies: + tslib "^2.4.0" + +"@saberhq/solana-contrib@^1.14.6": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/solana-contrib/-/solana-contrib-1.14.6.tgz#3fe36ace42b94f5c3f75a60b6b32d010d8b21f93" + integrity sha512-lPnzWgAk+xAYtssvLUTc6e6r0czJaMAqCZ2p7I7DsEFBpWgEzj6Tw7rYMXk1pmwgxg48vGWzBZK/aw+m7ccn1A== + dependencies: + "@saberhq/option-utils" "^1.14.6" + "@solana/buffer-layout" "^4.0.0" + "@types/promise-retry" "^1.1.3" + "@types/retry" "^0.12.2" + promise-retry "^2.0.1" + retry "^0.13.1" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@saberhq/token-utils@^1.13.32": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/token-utils/-/token-utils-1.14.6.tgz#6d36c053f61834405ccf395b958a258eba9ea45b" + integrity sha512-jfGUS+tb+WVJUMAOfXdYICzTWhaKRcaZN5km9os7cRHAAXTYNZTgFFRThuiuobBAe30SpnJB052rAQE0x0c2iA== + dependencies: + "@saberhq/solana-contrib" "^1.14.6" + "@solana/buffer-layout" "^4.0.0" + "@solana/spl-token" "^0.1.8" + "@ubeswap/token-math" "^5.2.0" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.0": + version "3.0.0" + resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" + integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@solana/buffer-layout-utils@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz#b45a6cab3293a2eb7597cceb474f229889d875ca" + integrity sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.32.0" + bigint-buffer "^1.1.5" + bignumber.js "^9.0.1" + +"@solana/buffer-layout@^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.0.tgz#75b1b11adc487234821c81dfae3119b73a5fd734" + integrity sha512-lR0EMP2HC3+Mxwd4YcnZb0smnaDw7Bl2IQWZiTevRH5ZZBZn6VRWn3/92E3qdU4SSImJkA6IDHawOHAnx/qUvQ== + dependencies: + buffer "~6.0.3" + +"@solana/spl-governance@^0.0.34": + version "0.0.34" + resolved "https://registry.npmjs.org/@solana/spl-governance/-/spl-governance-0.0.34.tgz#c61d81d356dbcee961bbc85e5d3538846fea57ad" + integrity sha512-tZppBiiVkUa5v+B/Ds+TqZ4yxR/vaIYLRxBk7x6R22dwk4/9SU87bVE60kRdDqTdMzqScFxIMdhaGl/fCX533A== + dependencies: + "@solana/web3.js" "^1.22.0" + bignumber.js "^9.0.1" + bn.js "^5.1.3" + borsh "^0.3.1" + bs58 "^4.0.1" + superstruct "^0.15.2" + +"@solana/spl-token-swap@^0.1.2": + version "0.1.4" + resolved "https://registry.npmjs.org/@solana/spl-token-swap/-/spl-token-swap-0.1.4.tgz#f776d97c37987c85ad9374afe5c91be2069fb7b4" + integrity sha512-q0vHo1m6UwqXTpKM4sk/gnPk8BopPJ+qx+qXkx0pMGiBep/66MAj7Drx186xStyqEXVuXtvgPEPIEREVJDKt/w== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.42.0" + bn.js "^5.1.3" + +"@solana/spl-token-v2@npm:@solana/spl-token@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.2.0.tgz#329bb6babb5de0f9c40035ddb1657f01a8347acd" + integrity sha512-RWcn31OXtdqIxmkzQfB2R+WpsJOVS6rKuvpxJFjvik2LyODd+WN58ZP3Rpjpro03fscGAkzlFuP3r42doRJgyQ== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/buffer-layout-utils" "^0.2.0" + "@solana/web3.js" "^1.32.0" + start-server-and-test "^1.14.0" + +"@solana/spl-token@^0.0.13": + version "0.0.13" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.0.13.tgz#5e0b235b1f8b34643280401dbfddeb34d13d1acd" + integrity sha512-WT8M9V/hxURR5jLbhr3zgwVsgcY6m8UhHtK045w7o+jx8FJ9MKARkj387WBFU7mKiFq0k8jw/8YL7XmnIUuH8Q== + dependencies: + "@babel/runtime" "^7.10.5" + "@solana/web3.js" "^0.86.1" + bn.js "^5.0.0" + buffer-layout "^1.2.0" + dotenv "8.2.0" + mkdirp "1.0.4" + +"@solana/spl-token@^0.1.5", "@solana/spl-token@^0.1.6", "@solana/spl-token@^0.1.8": + version "0.1.8" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.1.8.tgz#f06e746341ef8d04165e21fc7f555492a2a0faa6" + integrity sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ== + dependencies: + "@babel/runtime" "^7.10.5" + "@solana/web3.js" "^1.21.0" + bn.js "^5.1.0" + buffer "6.0.3" + buffer-layout "^1.2.0" + dotenv "10.0.0" + +"@solana/web3.js@^0.86.1": + version "0.86.4" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-0.86.4.tgz#69216d3928ca4727c25a1ea96c405e897156ac3b" + integrity sha512-FpabDmdyxBN5aHIVUWc9Q6pXJFWiLRm/xeyxFg9O9ICHjiUkd38omds7G0CAmykIccG7zaMziwtkXp+0KvQOhA== + dependencies: + "@babel/runtime" "^7.3.1" + bn.js "^5.0.0" + bs58 "^4.0.1" + buffer "^5.4.3" + buffer-layout "^1.2.0" + crypto-hash "^1.2.2" + esdoc-inject-style-plugin "^1.0.0" + jayson "^3.0.1" + keccak "^3.0.1" + mz "^2.7.0" + node-fetch "^2.2.0" + npm-run-all "^4.1.5" + rpc-websockets "^7.4.2" + secp256k1 "^4.0.2" + superstruct "^0.8.3" + tweetnacl "^1.0.0" + ws "^7.0.0" + +"@solana/web3.js@^1.20.0", "@solana/web3.js@^1.21.0", "@solana/web3.js@^1.22.0", "@solana/web3.js@^1.24.1", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.42.0", "@solana/web3.js@^1.43.5", "@solana/web3.js@^1.44.3": + version "1.62.0" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz#8fef9fd443217161ddc25e701f603222047bc520" + integrity sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA== + dependencies: + "@babel/runtime" "^7.12.5" + "@noble/ed25519" "^1.7.0" + "@noble/hashes" "^1.1.2" + "@noble/secp256k1" "^1.6.3" + "@solana/buffer-layout" "^4.0.0" + bigint-buffer "^1.1.5" + bn.js "^5.0.0" + borsh "^0.7.0" + bs58 "^4.0.1" + buffer "6.0.1" + fast-stable-stringify "^1.0.0" + jayson "^3.4.4" + node-fetch "2" + rpc-websockets "^7.5.0" + superstruct "^0.14.2" + +"@switchboard-xyz/common@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@switchboard-xyz/common/-/common-2.0.0.tgz#8c3551b3611c4a2348c46879c0ab2ea188a1f753" + integrity sha512-hC7J7NShGQHjWaCU7+w6tEtZ3KljxMIKJe5IaxPxD+cgdxhx58UMjngyevaCcle33aPyFZ/tbpm0tU2ZqzqZtQ== + dependencies: + big.js "^6.2.1" + bn.js "^5.2.1" + protobufjs "^6.11.3" + +"@switchboard-xyz/sbv2-utils@^0.1.43": + version "0.1.48" + resolved "https://registry.npmjs.org/@switchboard-xyz/sbv2-utils/-/sbv2-utils-0.1.48.tgz#576880ed617e5976189d4b6d308e36b896968119" + integrity sha512-Q/CoE5u+iBrLwlaD7Z7/DdRwCjgLa+RHaALqClvGkfvHVOOugEVjV+wjOEBDCX3dv+J+Hm/QfQGJ3WVAfnw4tw== + dependencies: + "@orca-so/sdk" "^1.2.24" + "@project-serum/anchor" "^0.24.2" + "@saberhq/token-utils" "^1.13.32" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.43.5" + "@switchboard-xyz/common" "^2.0.0" + "@switchboard-xyz/switchboard-v2" "^0.0.135" + big.js "^6.2.1" + bn.js "^5.2.1" + chalk "4" + decimal.js "^10.3.1" + dotenv "^16.0.1" + mocha "^9.1.1" + toml "^3.0.0" + +"@switchboard-xyz/switchboard-v2@^0.0.135": + version "0.0.135" + resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.135.tgz#51f33c69e7b3ed8180680d475d8e53c67426dd7e" + integrity sha512-ugaC6xYq5Xojok/g62HnealdrvF5v2YmJ6mxkYLL2zrAHQwVDSnFg052OLjthYusifum9kBvUFMPEwnU44UIbQ== + dependencies: + "@project-serum/anchor" "^0.24.2" + "@solana/spl-governance" "^0.0.34" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.44.3" + "@switchboard-xyz/common" "^2.0.0" + assert "^2.0.0" + big.js "^6.2.0" + bs58 "^5.0.0" + chan "^0.6.1" + crypto-js "^4.0.0" + glob "^8.0.3" + lodash "^4.17.21" + long "^4.0.0" + mocha "^9.1.1" + node-fetch "^3.2.6" + +"@tsconfig/node10@^1.0.7": + version "1.0.9" + resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" + integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" + integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== + +"@types/big.js@^6.1.6": + version "6.1.6" + resolved "https://registry.npmjs.org/@types/big.js/-/big.js-6.1.6.tgz#3d417e758483d55345a03a087f7e0c87137ca444" + integrity sha512-0r9J+Zz9rYm2hOTwiMAVkm3XFQ4u5uTK37xrQMhc9bysn/sf/okzovWMYYIBMFTn/yrEZ11pusgLEaoarTlQbA== + +"@types/bn.js@^4.11.5": + version "4.11.6" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c" + integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== + dependencies: + "@types/node" "*" + +"@types/bn.js@^5.1.0": + version "5.1.1" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz#b51e1b55920a4ca26e9285ff79936bbdec910682" + integrity sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g== + dependencies: + "@types/node" "*" + +"@types/chai@^4.3.0": + version "4.3.3" + resolved "https://registry.npmjs.org/@types/chai/-/chai-4.3.3.tgz#3c90752792660c4b562ad73b3fbd68bf3bc7ae07" + integrity sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g== + +"@types/connect@^3.4.33": + version "3.4.35" + resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/long@^4.0.1": + version "4.0.2" + resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" + integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== + +"@types/mocha@^9.0.0": + version "9.1.1" + resolved "https://registry.npmjs.org/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4" + integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw== + +"@types/node-fetch@^2.6.2": + version "2.6.2" + resolved "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.2.tgz#d1a9c5fd049d9415dce61571557104dec3ec81da" + integrity sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A== + dependencies: + "@types/node" "*" + form-data "^3.0.0" + +"@types/node@*", "@types/node@>=13.7.0": + version "18.7.18" + resolved "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz#633184f55c322e4fb08612307c274ee6d5ed3154" + integrity sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg== + +"@types/node@^12.12.54": + version "12.20.55" + resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + +"@types/node@^17.0.45": + version "17.0.45" + resolved "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" + integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== + +"@types/promise-retry@^1.1.3": + version "1.1.3" + resolved "https://registry.npmjs.org/@types/promise-retry/-/promise-retry-1.1.3.tgz#baab427419da9088a1d2f21bf56249c21b3dd43c" + integrity sha512-LxIlEpEX6frE3co3vCO2EUJfHIta1IOmhDlcAsR4GMMv9hev1iTI9VwberVGkePJAuLZs5rMucrV8CziCfuJMw== + dependencies: + "@types/retry" "*" + +"@types/retry@*", "@types/retry@^0.12.2": + version "0.12.2" + resolved "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz#ed279a64fa438bb69f2480eda44937912bb7480a" + integrity sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow== + +"@types/ws@^7.4.4": + version "7.4.7" + resolved "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" + integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== + dependencies: + "@types/node" "*" + +"@ubeswap/token-math@^5.2.0": + version "5.2.1" + resolved "https://registry.npmjs.org/@ubeswap/token-math/-/token-math-5.2.1.tgz#66e70ba8d65b5fdb1b7459332fbdad4ddec32a64" + integrity sha512-wkIKDKIl6rml4CVK3fvjjLVk55Z8qEYTgjxZx7MnrTwECazyhiDuekb9WAaDPXcW5QNffCu8uv4Ba8wE96CJsg== + dependencies: + "@types/big.js" "^6.1.6" + big.js "^6.2.1" + decimal.js-light "^2.5.1" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@ungap/promise-all-settled@1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" + integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== + +JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +acorn-jsx@^5.3.1: + version "5.3.2" + resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^8.1.1: + version "8.2.0" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^7.4.0: + version "7.4.1" + resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +acorn@^8.4.1: + version "8.8.0" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" + integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== + +ajv@^6.10.0, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + 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" + +ajv@^8.0.1: + version "8.11.0" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" + integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ansi-colors@4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-colors@^4.1.1: + version "4.1.3" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +arrify@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + +assert@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== + dependencies: + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" + +assertion-error@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" + integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-x@^3.0.2: + version "3.0.9" + resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" + integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== + dependencies: + safe-buffer "^5.0.1" + +base-x@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz#d0e3b7753450c73f8ad2389b5c018a4af7b2224a" + integrity sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw== + +base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +big.js@^6.2.0, big.js@^6.2.1: + version "6.2.1" + resolved "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz#7205ce763efb17c2e41f26f121c420c6a7c2744f" + integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== + +bigint-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442" + integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA== + dependencies: + bindings "^1.3.0" + +bignumber.js@^9.0.1: + version "9.1.0" + resolved "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62" + integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.3.0: + version "1.5.0" + resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bluebird@3.7.2: + version "3.7.2" + resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.0.0, bn.js@^5.1.0, bn.js@^5.1.2, bn.js@^5.1.3, bn.js@^5.2.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +borsh@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.3.1.tgz#c31c3a149610e37913deada80e89073fb15cf55b" + integrity sha512-gJoSTnhwLxN/i2+15Y7uprU8h3CKI+Co4YKZKvrGYUy0FwHWM20x5Sx7eU8Xv4HQqV+7rb4r3P7K1cBIQe3q8A== + dependencies: + "@types/bn.js" "^4.11.5" + bn.js "^5.0.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +borsh@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a" + integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA== + dependencies: + bn.js "^5.2.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +bs58@^4.0.0, bs58@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" + integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== + dependencies: + base-x "^3.0.2" + +bs58@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz#865575b4d13c09ea2a84622df6c8cbeb54ffc279" + integrity sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ== + dependencies: + base-x "^4.0.0" + +buffer-from@^1.0.0, buffer-from@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer-layout@^1.2.0, buffer-layout@^1.2.1, buffer-layout@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/buffer-layout/-/buffer-layout-1.2.2.tgz#b9814e7c7235783085f9ca4966a0cfff112259d5" + integrity sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA== + +buffer@6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2" + integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@6.0.3, buffer@~6.0.3: + version "6.0.3" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@^5.4.3: + version "5.7.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +bufferutil@^4.0.1: + version "4.0.6" + resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" + integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== + dependencies: + node-gyp-build "^4.3.0" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +chai@^4.3.6: + version "4.3.6" + resolved "https://registry.npmjs.org/chai/-/chai-4.3.6.tgz#ffe4ba2d9fa9d6680cc0b370adae709ec9011e9c" + integrity sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q== + dependencies: + assertion-error "^1.1.0" + check-error "^1.0.2" + deep-eql "^3.0.1" + get-func-name "^2.0.0" + loupe "^2.3.1" + pathval "^1.1.1" + type-detect "^4.0.5" + +chalk@4, chalk@^4.0.0, chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^2.0.0, chalk@^2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + 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" + +chan@^0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/chan/-/chan-0.6.1.tgz#ec0ad132e5bc62c27ef10ccbfc4d8dcd8ca00640" + integrity sha512-/TdBP2UhbBmw7qnqkzo9Mk4rzvwRv4dlNPXFerqWy90T8oBspKagJNZxrDbExKHhx9uXXHjo3f9mHgs9iKO3nQ== + +check-error@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" + integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== + +check-more-types@2.24.0: + version "2.24.0" + resolved "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== + +cheerio@0.22.0: + version "0.22.0" + resolved "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" + integrity sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA== + dependencies: + css-select "~1.2.0" + dom-serializer "~0.1.0" + entities "~1.1.1" + htmlparser2 "^3.9.1" + lodash.assignin "^4.0.9" + lodash.bind "^4.1.4" + lodash.defaults "^4.0.1" + lodash.filter "^4.4.0" + lodash.flatten "^4.2.0" + lodash.foreach "^4.3.0" + lodash.map "^4.4.0" + lodash.merge "^4.4.0" + lodash.pick "^4.2.1" + lodash.reduce "^4.4.0" + lodash.reject "^4.4.0" + lodash.some "^4.4.0" + +chokidar@3.5.3: + version "3.5.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + 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" + optionalDependencies: + fsevents "~2.3.2" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^2.20.3: + version "2.20.3" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-fetch@^3.1.5: + version "3.1.5" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" + integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== + dependencies: + node-fetch "2.6.7" + +cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-hash@^1.2.2, crypto-hash@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247" + integrity sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg== + +crypto-js@^4.0.0: + version "4.1.1" + resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" + integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== + +css-select@~1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + integrity sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA== + dependencies: + boolbase "~1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "~1.0.1" + +css-what@2.1: + version "2.1.3" + resolved "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" + integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== + +data-uri-to-buffer@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" + integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== + +debug@4.3.2: + version "4.3.2" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + +debug@4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + +debug@^4.0.1, debug@^4.1.1: + version "4.3.4" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +decamelize@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" + integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== + +decimal.js-light@^2.5.1: + version "2.5.1" + resolved "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz#134fd32508f19e208f4fb2f8dac0d2626a867934" + integrity sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg== + +decimal.js@^10.2.1, decimal.js@^10.3.0, decimal.js@^10.3.1: + version "10.4.0" + resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.0.tgz#97a7448873b01e92e5ff9117d89a7bca8e63e0fe" + integrity sha512-Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg== + +deep-eql@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" + integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== + dependencies: + type-detect "^4.0.0" + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +diff@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" + integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== + +diff@^3.1.0: + version "3.5.0" + resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-serializer@0: + version "0.2.2" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@~0.1.0: + version "0.1.1" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" + integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== + dependencies: + domelementtype "^1.3.0" + entities "^1.1.1" + +domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domelementtype@^2.0.1: + version "2.3.0" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^2.3.0: + version "2.4.2" + resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" + integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== + dependencies: + domelementtype "1" + +domutils@1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + integrity sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw== + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^1.5.1: + version "1.7.0" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dotenv@10.0.0, dotenv@^10.0.0: + version "10.0.0" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== + +dotenv@8.2.0: + version "8.2.0" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" + integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== + +dotenv@^16.0.1: + version "16.0.2" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz#0b0f8652c016a3858ef795024508cddc4bffc5bf" + integrity sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA== + +duplexer@~0.1.1: + version "0.1.2" + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +elliptic@^6.5.4: + version "6.5.4" + resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +enquirer@^2.3.5: + version "2.3.6" + resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + dependencies: + ansi-colors "^4.1.1" + +entities@^1.1.1, entities@~1.1.1: + version "1.1.2" + resolved "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" + integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +err-code@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.5, es-abstract@^1.20.0: + version "1.20.2" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3" + integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.2" + get-symbol-description "^1.0.0" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + is-callable "^1.2.4" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + string.prototype.trimend "^1.0.5" + string.prototype.trimstart "^1.0.5" + unbox-primitive "^1.0.2" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ== + dependencies: + es6-promise "^4.0.3" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +esdoc-inject-style-plugin@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/esdoc-inject-style-plugin/-/esdoc-inject-style-plugin-1.0.0.tgz#a13597368bb9fb89c365e066495caf97a4decbb1" + integrity sha512-LqSGr3YKe+vY2u6TCp9K+EEt97S78KjdJUz5PXyitHkp4nGXRSZq2ftEQJioF/WtTeGYWeQLzNAM9LihIlisqg== + dependencies: + cheerio "0.22.0" + fs-extra "1.0.0" + +eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint@^7.28.0: + version "7.32.0" + resolved "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + 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" + +espree@^7.3.0, espree@^7.3.1: + version "7.3.1" + resolved "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" + integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== + dependencies: + acorn "^7.4.0" + acorn-jsx "^5.3.1" + eslint-visitor-keys "^1.3.0" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +event-stream@=3.3.4: + version "3.3.4" + resolved "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +eventemitter3@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +execa@5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + 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" + +eyes@^0.1.8: + version "0.1.8" + resolved "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + integrity sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fast-stable-stringify@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" + integrity sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag== + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +flatted@^3.1.0: + version "3.2.7" + resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== + +follow-redirects@^1.14.0: + version "1.15.2" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +form-data@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +from@~0: + version "0.1.7" + resolved "https://registry.npmjs.org/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" + integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== + +fs-extra@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" + integrity sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== + +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-func-name@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" + integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@7.2.0: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^8.0.3: + version "8.0.3" + resolved "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" + integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +globals@^13.6.0, globals@^13.9.0: + version "13.17.0" + resolved "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" + integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== + dependencies: + type-fest "^0.20.2" + +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: + version "4.2.10" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +growl@1.10.5: + version "1.10.5" + resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +htmlparser2@^3.9.1: + version "3.10.1" + resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" + integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== + dependencies: + domelementtype "^1.3.1" + domhandler "^2.3.0" + domutils "^1.5.1" + entities "^1.1.1" + inherits "^2.0.1" + readable-stream "^3.1.1" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +ieee754@^1.1.13, ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: + version "1.2.6" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz#fd6170b0b8c7e2cc73de342ef8284a2202023c44" + integrity sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q== + +is-core-module@^2.9.0: + version "2.10.0" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" + integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-nan@^1.2.1: + version "1.3.2" + resolved "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.3, is-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67" + integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isomorphic-ws@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" + integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== + +jayson@^3.0.1, jayson@^3.4.4: + version "3.7.0" + resolved "https://registry.npmjs.org/jayson/-/jayson-3.7.0.tgz#b735b12d06d348639ae8230d7a1e2916cb078f25" + integrity sha512-tfy39KJMrrXJ+mFcMpxwBvFDetS8LAID93+rycFglIQM4kl3uNR3W4lBLE/FFhsoUCEox5Dt2adVpDm/XtebbQ== + dependencies: + "@types/connect" "^3.4.33" + "@types/node" "^12.12.54" + "@types/ws" "^7.4.4" + JSONStream "^1.3.5" + commander "^2.20.3" + delay "^5.0.0" + es6-promisify "^5.0.0" + eyes "^0.1.8" + isomorphic-ws "^4.0.1" + json-stringify-safe "^5.0.1" + lodash "^4.17.20" + uuid "^8.3.2" + ws "^7.4.5" + +joi@^17.4.0: + version "17.6.0" + resolved "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2" + integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.0" + "@sideway/pinpoint" "^2.0.0" + +js-sha256@^0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" + integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA== + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json-stringify-safe@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + integrity sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +keccak@^3.0.1: + version "3.0.2" + resolved "https://registry.npmjs.org/keccak/-/keccak-3.0.2.tgz#4c2c6e8c54e04f2670ee49fa734eb9da152206e0" + integrity sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ== + dependencies: + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + readable-stream "^3.6.0" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + integrity sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw== + optionalDependencies: + graceful-fs "^4.1.9" + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +lazy-ass@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.assignin@^4.0.9: + version "4.2.0" + resolved "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" + integrity sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg== + +lodash.bind@^4.1.4: + version "4.2.1" + resolved "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" + integrity sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA== + +lodash.defaults@^4.0.1: + version "4.2.0" + resolved "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" + integrity sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ== + +lodash.filter@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" + integrity sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ== + +lodash.flatten@^4.2.0: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" + integrity sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g== + +lodash.foreach@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" + integrity sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ== + +lodash.map@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" + integrity sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q== + +lodash.merge@^4.4.0, lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.pick@^4.2.1: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" + integrity sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q== + +lodash.reduce@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" + integrity sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw== + +lodash.reject@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" + integrity sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ== + +lodash.some@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" + integrity sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ== + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== + +lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +long@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" + integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== + +loupe@^2.3.1: + version "2.3.4" + resolved "https://registry.npmjs.org/loupe/-/loupe-2.3.4.tgz#7e0b9bffc76f148f9be769cb1321d3dcf3cb25f3" + integrity sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ== + dependencies: + get-func-name "^2.0.0" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== + +memorystream@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" + integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12: + version "2.1.35" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + +minimatch@4.2.1: + version "4.2.1" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz#40d9d511a46bdc4e563c22c3080cde9c0d8299b4" + integrity sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1: + version "5.1.0" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: + version "1.2.6" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +mkdirp@1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mkdirp@^0.5.1: + version "0.5.6" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +mocha@^9.0.3, mocha@^9.1.1: + version "9.2.2" + resolved "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz#d70db46bdb93ca57402c809333e5a84977a88fb9" + integrity sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g== + dependencies: + "@ungap/promise-all-settled" "1.1.2" + ansi-colors "4.1.1" + browser-stdout "1.3.1" + chokidar "3.5.3" + debug "4.3.3" + diff "5.0.0" + escape-string-regexp "4.0.0" + find-up "5.0.0" + glob "7.2.0" + growl "1.10.5" + he "1.2.0" + js-yaml "4.1.0" + log-symbols "4.1.0" + minimatch "4.2.1" + ms "2.1.3" + nanoid "3.3.1" + serialize-javascript "6.0.0" + strip-json-comments "3.1.1" + supports-color "8.1.1" + which "2.0.2" + workerpool "6.2.0" + yargs "16.2.0" + yargs-parser "20.2.4" + yargs-unparser "2.0.0" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@3.3.1: + version "3.3.1" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" + integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-addon-api@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32" + integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA== + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@2, node-fetch@2.6.7, node-fetch@^2.2.0, node-fetch@^2.6: + version "2.6.7" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^3.2.6: + version "3.2.10" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8" + integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-gyp-build@^4.2.0, node-gyp-build@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" + integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + +normalize-package-data@^2.3.2: + version "2.5.0" + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-all@^4.1.5: + version "4.1.5" + resolved "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" + integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== + dependencies: + ansi-styles "^3.2.1" + chalk "^2.4.1" + cross-spawn "^6.0.5" + memorystream "^0.3.1" + minimatch "^3.0.4" + pidtree "^0.3.0" + read-pkg "^3.0.0" + shell-quote "^1.6.1" + string.prototype.padend "^3.0.0" + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +nth-check@~1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + dependencies: + boolbase "~1.0.0" + +object-assign@^4.0.1: + version "4.1.1" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + 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.3" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +pako@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d" + integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +pathval@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" + integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== + +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" + integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== + dependencies: + through "~2.3" + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.3.1" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pidtree@^0.3.0: + version "0.3.1" + resolved "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" + integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise-retry@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" + integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== + dependencies: + err-code "^2.0.2" + retry "^0.12.0" + +prompts@^2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +protobufjs@^6.11.3: + version "6.11.3" + resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" + integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== + dependencies: + "@protobufjs/aspromise" "^1.1.2" + "@protobufjs/base64" "^1.1.2" + "@protobufjs/codegen" "^2.0.4" + "@protobufjs/eventemitter" "^1.1.0" + "@protobufjs/fetch" "^1.1.0" + "@protobufjs/float" "^1.0.2" + "@protobufjs/inquire" "^1.1.0" + "@protobufjs/path" "^1.1.2" + "@protobufjs/pool" "^1.1.0" + "@protobufjs/utf8" "^1.1.0" + "@types/long" "^4.0.1" + "@types/node" ">=13.7.0" + long "^4.0.0" + +ps-tree@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" + integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== + dependencies: + event-stream "=3.3.4" + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +readable-stream@^3.1.1, readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + +regexpp@^3.1.0: + version "3.2.0" + resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve@^1.10.0: + version "1.22.1" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rpc-websockets@^7.4.2, rpc-websockets@^7.5.0: + version "7.5.0" + resolved "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.5.0.tgz#bbeb87572e66703ff151e50af1658f98098e2748" + integrity sha512-9tIRi1uZGy7YmDjErf1Ax3wtqdSSLIlnmL5OtOzgd5eqPKbsPpwDP5whUDO2LQay3Xp0CcHlcNSGzacNRluBaQ== + dependencies: + "@babel/runtime" "^7.17.2" + eventemitter3 "^4.0.7" + uuid "^8.3.2" + ws "^8.5.0" + optionalDependencies: + bufferutil "^4.0.1" + utf-8-validate "^5.0.2" + +rxjs@^7.1.0: + version "7.5.6" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc" + integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw== + dependencies: + tslib "^2.1.0" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +secp256k1@^4.0.2: + version "4.0.3" + resolved "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz#c4559ecd1b8d3c1827ed2d1b94190d69ce267303" + integrity sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA== + dependencies: + elliptic "^6.5.4" + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + +"semver@2 || 3 || 4 || 5", semver@^5.5.0: + version "5.7.1" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^7.2.1: + version "7.3.7" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" + integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== + dependencies: + lru-cache "^6.0.0" + +serialize-javascript@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + dependencies: + randombytes "^2.1.0" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@^1.6.1: + version "1.7.3" + resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" + integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +source-map-support@^0.5.6: + version "0.5.21" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.12" + resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" + integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + +split@0.3: + version "0.3.3" + resolved "https://registry.npmjs.org/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== + dependencies: + through "2" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +start-server-and-test@^1.14.0: + version "1.14.0" + resolved "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-1.14.0.tgz#c57f04f73eac15dd51733b551d775b40837fdde3" + integrity sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw== + dependencies: + bluebird "3.7.2" + check-more-types "2.24.0" + debug "4.3.2" + execa "5.1.1" + lazy-ass "1.6.0" + ps-tree "1.2.0" + wait-on "6.0.0" + +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== + dependencies: + duplexer "~0.1.1" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + 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" + +string.prototype.padend@^3.0.0: + version "3.1.3" + resolved "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz#997a6de12c92c7cb34dc8a201a6c53d9bd88a5f1" + integrity sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + +string.prototype.trimend@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string.prototype.trimstart@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +superstruct@^0.14.2: + version "0.14.2" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" + integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ== + +superstruct@^0.15.2: + version "0.15.5" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.15.5.tgz#0f0a8d3ce31313f0d84c6096cd4fa1bfdedc9dab" + integrity sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ== + +superstruct@^0.8.3: + version "0.8.4" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.8.4.tgz#478a19649f6b02c6319c02044db6a1f5863c391f" + integrity sha512-48Ors8IVWZm/tMr8r0Si6+mJiB7mkD7jqvIzktjJ4+EnP5tBp0qOpiM1J8sCUorKx+TXWrfb3i1UcjdD1YK/wA== + dependencies: + kind-of "^6.0.2" + tiny-invariant "^1.0.6" + +supports-color@8.1.1: + version "8.1.1" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +table@^6.0.9: + version "6.8.0" + resolved "https://registry.npmjs.org/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca" + integrity sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA== + 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" + +text-encoding-utf-8@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13" + integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg== + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +through@2, "through@>=2.2.7 <3", through@~2.3, through@~2.3.1: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +tiny-invariant@^1.0.6, tiny-invariant@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.2.0.tgz#a1141f86b672a9148c72e978a19a73b9b94a15a9" + integrity sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toml@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" + integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +ts-mocha@^9.0.2: + version "9.0.2" + resolved "https://registry.npmjs.org/ts-mocha/-/ts-mocha-9.0.2.tgz#c1ef0248874d04a0f26dd9bd8d88e617a8d82ab1" + integrity sha512-WyQjvnzwrrubl0JT7EC1yWmNpcsU3fOuBFfdps30zbmFBgKniSaSOyZMZx+Wq7kytUs5CY+pEbSYEbGfIKnXTw== + dependencies: + ts-node "7.0.1" + optionalDependencies: + tsconfig-paths "^3.5.0" + +ts-node@7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-7.0.1.tgz#9562dc2d1e6d248d24bc55f773e3f614337d9baf" + integrity sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw== + dependencies: + arrify "^1.0.0" + buffer-from "^1.1.0" + diff "^3.1.0" + make-error "^1.1.1" + minimist "^1.2.0" + mkdirp "^0.5.1" + source-map-support "^0.5.6" + yn "^2.0.0" + +ts-node@^10.4.0: + version "10.9.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" + integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +tsconfig-paths@^3.5.0: + version "3.14.1" + resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" + integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + +tweetnacl@^1.0.0: + version "1.0.3" + resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596" + integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-detect@^4.0.0, type-detect@^4.0.5: + version "4.0.8" + resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +typescript@^4.3.2, typescript@^4.7: + version "4.8.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88" + integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + 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" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +utf-8-validate@^5.0.2: + version "5.0.9" + resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz#ba16a822fbeedff1a58918f2a6a6b36387493ea3" + integrity sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q== + dependencies: + node-gyp-build "^4.3.0" + +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +util@^0.12.0: + version "0.12.4" + resolved "https://registry.npmjs.org/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + safe-buffer "^5.1.2" + which-typed-array "^1.1.2" + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +wait-on@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/wait-on/-/wait-on-6.0.0.tgz#7e9bf8e3d7fe2daecbb7a570ac8ca41e9311c7e7" + integrity sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw== + dependencies: + axios "^0.21.1" + joi "^17.4.0" + lodash "^4.17.21" + minimist "^1.2.5" + rxjs "^7.1.0" + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + 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" + +which-typed-array@^1.1.2: + version "1.1.8" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f" + integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.9" + +which@2.0.2, which@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +which@^1.2.9: + version "1.3.1" + resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +word-wrap@^1.2.3: + version "1.2.3" + resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +workerpool@6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" + integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@^7.0.0, ws@^7.4.5: + version "7.5.9" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +ws@^8.5.0: + version "8.8.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" + integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yargs-parser@20.2.4: + version "20.2.4" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" + integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-parser@^21.0.0: + version "21.1.1" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs-unparser@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" + integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== + dependencies: + camelcase "^6.0.0" + decamelize "^4.0.0" + flat "^5.0.2" + is-plain-obj "^2.1.0" + +yargs@16.2.0: + version "16.2.0" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yargs@^17.0.1: + version "17.5.1" + resolved "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" + integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.0.0" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yn@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a" + integrity sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/programs/anchor-feed-parser/Anchor.toml b/programs/anchor-feed-parser/Anchor.toml new file mode 100644 index 0000000..2622310 --- /dev/null +++ b/programs/anchor-feed-parser/Anchor.toml @@ -0,0 +1,26 @@ +[workspace] +members = [ + "." +] + +[provider] +# cluster = "devnet" +cluster = "localnet" +wallet = "../../../payer-keypair.json" +# wallet = "~/.config/solana/id.json" + +[programs.localnet] +anchor_buffer_parser = "FnsPs665aBSwJRu2A8wGv6ZT76ipR41kHm4hoA3B1QGh" + +[registry] +url = "https://anchor.projectserum.com" + +[scripts] +test = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 ./tests/*.test.ts" + + +[test.validator] +url="https://api.devnet.solana.com" + +[[testnet.validator.clone]] +address="GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR" # sbv2 SOL/USD Feed \ No newline at end of file diff --git a/examples/programs/anchor-feed-parser/Cargo.toml b/programs/anchor-feed-parser/Cargo.toml similarity index 80% rename from examples/programs/anchor-feed-parser/Cargo.toml rename to programs/anchor-feed-parser/Cargo.toml index 2806fb2..55012c1 100644 --- a/examples/programs/anchor-feed-parser/Cargo.toml +++ b/programs/anchor-feed-parser/Cargo.toml @@ -16,7 +16,7 @@ cpi = ["no-entrypoint"] default = [] [dependencies] -# switchboard-v2 = { path = "../../../libraries/rs", features = ["devnet"] } +# switchboard-v2 = { path = "../../rust/switchboard-v2", features = ["devnet"] } switchboard-v2 = { version = "^0.1.14", features = ["devnet"] } anchor-lang = "^0.25.0" solana-program = "~1.10.29" diff --git a/examples/programs/anchor-feed-parser/Xargo.toml b/programs/anchor-feed-parser/Xargo.toml similarity index 100% rename from examples/programs/anchor-feed-parser/Xargo.toml rename to programs/anchor-feed-parser/Xargo.toml diff --git a/examples/programs/anchor-feed-parser/client/accounts/FeedClient.ts b/programs/anchor-feed-parser/client/accounts/FeedClient.ts similarity index 100% rename from examples/programs/anchor-feed-parser/client/accounts/FeedClient.ts rename to programs/anchor-feed-parser/client/accounts/FeedClient.ts diff --git a/examples/programs/anchor-feed-parser/client/accounts/index.ts b/programs/anchor-feed-parser/client/accounts/index.ts similarity index 100% rename from examples/programs/anchor-feed-parser/client/accounts/index.ts rename to programs/anchor-feed-parser/client/accounts/index.ts diff --git a/examples/programs/anchor-feed-parser/client/errors/anchor.ts b/programs/anchor-feed-parser/client/errors/anchor.ts similarity index 100% rename from examples/programs/anchor-feed-parser/client/errors/anchor.ts rename to programs/anchor-feed-parser/client/errors/anchor.ts diff --git a/examples/programs/anchor-feed-parser/client/errors/custom.ts b/programs/anchor-feed-parser/client/errors/custom.ts similarity index 100% rename from examples/programs/anchor-feed-parser/client/errors/custom.ts rename to programs/anchor-feed-parser/client/errors/custom.ts diff --git a/examples/programs/anchor-feed-parser/client/errors/index.ts b/programs/anchor-feed-parser/client/errors/index.ts similarity index 100% rename from examples/programs/anchor-feed-parser/client/errors/index.ts rename to programs/anchor-feed-parser/client/errors/index.ts diff --git a/examples/programs/anchor-feed-parser/client/index.ts b/programs/anchor-feed-parser/client/index.ts similarity index 100% rename from examples/programs/anchor-feed-parser/client/index.ts rename to programs/anchor-feed-parser/client/index.ts diff --git a/examples/programs/anchor-feed-parser/client/instructions/index.ts b/programs/anchor-feed-parser/client/instructions/index.ts similarity index 100% rename from examples/programs/anchor-feed-parser/client/instructions/index.ts rename to programs/anchor-feed-parser/client/instructions/index.ts diff --git a/examples/programs/anchor-feed-parser/client/instructions/readResult.ts b/programs/anchor-feed-parser/client/instructions/readResult.ts similarity index 100% rename from examples/programs/anchor-feed-parser/client/instructions/readResult.ts rename to programs/anchor-feed-parser/client/instructions/readResult.ts diff --git a/examples/programs/anchor-feed-parser/client/programId.ts b/programs/anchor-feed-parser/client/programId.ts similarity index 100% rename from examples/programs/anchor-feed-parser/client/programId.ts rename to programs/anchor-feed-parser/client/programId.ts diff --git a/examples/programs/anchor-feed-parser/client/types/ReadResultParams.ts b/programs/anchor-feed-parser/client/types/ReadResultParams.ts similarity index 100% rename from examples/programs/anchor-feed-parser/client/types/ReadResultParams.ts rename to programs/anchor-feed-parser/client/types/ReadResultParams.ts diff --git a/examples/programs/anchor-feed-parser/client/types/index.ts b/programs/anchor-feed-parser/client/types/index.ts similarity index 100% rename from examples/programs/anchor-feed-parser/client/types/index.ts rename to programs/anchor-feed-parser/client/types/index.ts diff --git a/examples/programs/anchor-feed-parser/package.json b/programs/anchor-feed-parser/package.json similarity index 100% rename from examples/programs/anchor-feed-parser/package.json rename to programs/anchor-feed-parser/package.json diff --git a/examples/programs/anchor-feed-parser/src/lib.rs b/programs/anchor-feed-parser/src/lib.rs similarity index 100% rename from examples/programs/anchor-feed-parser/src/lib.rs rename to programs/anchor-feed-parser/src/lib.rs diff --git a/examples/programs/anchor-feed-parser/tests/devnet.test.ts b/programs/anchor-feed-parser/tests/devnet.test.ts similarity index 96% rename from examples/programs/anchor-feed-parser/tests/devnet.test.ts rename to programs/anchor-feed-parser/tests/devnet.test.ts index 87f548f..c16d310 100644 --- a/examples/programs/anchor-feed-parser/tests/devnet.test.ts +++ b/programs/anchor-feed-parser/tests/devnet.test.ts @@ -3,10 +3,7 @@ import { PublicKey } from "@solana/web3.js"; import { sleep, SwitchboardTestContext } from "@switchboard-xyz/sbv2-utils"; import type { AnchorWallet } from "@switchboard-xyz/switchboard-v2"; import chai from "chai"; -import { - AnchorFeedParser, - IDL, -} from "../../../../target/types/anchor_feed_parser"; +import { AnchorFeedParser, IDL } from "../target/types/anchor_feed_parser"; import { PROGRAM_ID } from "../client/programId"; const expect = chai.expect; diff --git a/examples/programs/anchor-feed-parser/tests/localnet.test.ts b/programs/anchor-feed-parser/tests/localnet.test.ts similarity index 97% rename from examples/programs/anchor-feed-parser/tests/localnet.test.ts rename to programs/anchor-feed-parser/tests/localnet.test.ts index 193e370..7b3ca94 100644 --- a/examples/programs/anchor-feed-parser/tests/localnet.test.ts +++ b/programs/anchor-feed-parser/tests/localnet.test.ts @@ -6,10 +6,7 @@ import type { AnchorWallet, } from "@switchboard-xyz/switchboard-v2"; import chai from "chai"; -import { - AnchorFeedParser, - IDL, -} from "../../../../target/types/anchor_feed_parser"; +import { AnchorFeedParser, IDL } from "../target/types/anchor_feed_parser"; import { PROGRAM_ID } from "../client/programId"; const expect = chai.expect; diff --git a/programs/anchor-feed-parser/tsconfig.json b/programs/anchor-feed-parser/tsconfig.json new file mode 100644 index 0000000..f999cf7 --- /dev/null +++ b/programs/anchor-feed-parser/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "types": ["mocha", "chai"], + "typeRoots": ["./node_modules/@types"], + "module": "CommonJS", + "noEmit": true, + "esModuleInterop": true, + "paths": { + "@switchboard-xyz/switchboard-v2": ["../../javascript/solana.js"], + "@switchboard-xyz/sbv2-utils": ["../../javascript/sbv2-utils"] + } + }, + "include": ["tests/**/*", "client/**/*", "./target/types/anchor_feed_parser"], + "references": [ + { "path": "../../javascript/solana.js" }, + { "path": "../../javascript/sbv2-utils" } + ] +} diff --git a/programs/anchor-feed-parser/yarn.lock b/programs/anchor-feed-parser/yarn.lock new file mode 100644 index 0000000..4b19847 --- /dev/null +++ b/programs/anchor-feed-parser/yarn.lock @@ -0,0 +1,3538 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/helper-validator-identifier@^7.18.6": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/highlight@^7.10.4": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/runtime@^7.10.5", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2", "@babel/runtime@^7.3.1": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259" + integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== + dependencies: + regenerator-runtime "^0.13.4" + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + 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" + +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + version "1.2.1" + resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.0" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@noble/ed25519@^1.7.0": + version "1.7.1" + resolved "https://registry.npmjs.org/@noble/ed25519/-/ed25519-1.7.1.tgz#6899660f6fbb97798a6fbd227227c4589a454724" + integrity sha512-Rk4SkJFaXZiznFyC/t77Q0NKS4FL7TLJJsVG2V2oiEq3kJVeTdxysEe/yRWSpnWMe808XRDJ+VFh5pt/FN5plw== + +"@noble/hashes@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183" + integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA== + +"@noble/secp256k1@^1.6.3": + version "1.7.0" + resolved "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.0.tgz#d15357f7c227e751d90aa06b05a0e5cf993ba8c1" + integrity sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw== + +"@orca-so/aquafarm@^0.0.12": + version "0.0.12" + resolved "https://registry.npmjs.org/@orca-so/aquafarm/-/aquafarm-0.0.12.tgz#255df50e9d8a408cebf600ee3507ff650484e94c" + integrity sha512-4vEkxeI5A5NHR9wre7Dtp9MYPCnke4v2PkaIv7933S490PErCYeqrlDPIEBTAKYWJpHFz5jR+h0bPFbmdMs3kw== + dependencies: + "@solana/spl-token" "^0.1.6" + "@solana/web3.js" "^1.20.0" + "@types/bn.js" "^5.1.0" + bn.js "^5.2.0" + buffer-layout "^1.2.1" + decimal.js "^10.3.0" + dotenv "^10.0.0" + eslint "^7.28.0" + mz "^2.7.0" + prompts "^2.4.1" + typescript "^4.3.2" + yargs "^17.0.1" + +"@orca-so/sdk@^1.2.24": + version "1.2.25" + resolved "https://registry.npmjs.org/@orca-so/sdk/-/sdk-1.2.25.tgz#3c00acb032567067a6d79528bb587b7057e183e8" + integrity sha512-9m4F9GgqNpK69IJ9SBg1//L471AO2X3cvG54jtM24sMIvMNiLiebdIrODLKIHyHcMouspK1qPTN20L64ymu8Bw== + dependencies: + "@orca-so/aquafarm" "^0.0.12" + "@orca-so/stablecurve" "^1.0.5" + "@solana/spl-token" "^0.1.5" + "@solana/spl-token-swap" "^0.1.2" + "@solana/web3.js" "^1.24.1" + decimal.js "^10.3.1" + +"@orca-so/stablecurve@^1.0.5": + version "1.0.6" + resolved "https://registry.npmjs.org/@orca-so/stablecurve/-/stablecurve-1.0.6.tgz#bff0d4c701e4361196ffb0fc641904e6d17df295" + integrity sha512-uZD1jVvOBxyuij4a5C2QT7Mv4m9lMABY/MvAz1xHnK+iJ5pkmSFdYEWzQZUrf8ElCRTYSN9yk7Kb18UmGZnT5g== + dependencies: + "@solana/spl-token" "^0.0.13" + bn.js "^5.1.3" + decimal.js "^10.2.1" + +"@project-serum/anchor@^0.24.2": + version "0.24.2" + resolved "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.24.2.tgz#a3c52a99605c80735f446ca9b3a4885034731004" + integrity sha512-0/718g8/DnEuwAidUwh5wLYphUYXhUbiClkuRNhvNoa+1Y8a4g2tJyxoae+emV+PG/Gikd/QUBNMkIcimiIRTA== + dependencies: + "@project-serum/borsh" "^0.2.5" + "@solana/web3.js" "^1.36.0" + base64-js "^1.5.1" + bn.js "^5.1.2" + bs58 "^4.0.1" + buffer-layout "^1.2.2" + camelcase "^5.3.1" + cross-fetch "^3.1.5" + crypto-hash "^1.3.0" + eventemitter3 "^4.0.7" + js-sha256 "^0.9.0" + pako "^2.0.3" + snake-case "^3.0.4" + toml "^3.0.0" + +"@project-serum/borsh@^0.2.5": + version "0.2.5" + resolved "https://registry.npmjs.org/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663" + integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q== + dependencies: + bn.js "^5.1.2" + buffer-layout "^1.2.0" + +"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" + integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== + +"@protobufjs/base64@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" + integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== + +"@protobufjs/codegen@^2.0.4": + version "2.0.4" + resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" + integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== + +"@protobufjs/eventemitter@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" + integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== + +"@protobufjs/fetch@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" + integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== + dependencies: + "@protobufjs/aspromise" "^1.1.1" + "@protobufjs/inquire" "^1.1.0" + +"@protobufjs/float@^1.0.2": + version "1.0.2" + resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" + integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== + +"@protobufjs/inquire@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" + integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== + +"@protobufjs/path@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" + integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== + +"@protobufjs/pool@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" + integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== + +"@protobufjs/utf8@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" + integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== + +"@saberhq/option-utils@^1.14.6": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/option-utils/-/option-utils-1.14.6.tgz#c48e4afb9d9a030e2b676beeeb2481c6529d3eb9" + integrity sha512-85IMZiYzSf3H7/ZYty+I5JW6EYGJQ8lmRri+wVuhmLtDX+E/iqEBeoS+ns56ZcyfRGl7nsuUriWnJamNz9ekBQ== + dependencies: + tslib "^2.4.0" + +"@saberhq/solana-contrib@^1.14.6": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/solana-contrib/-/solana-contrib-1.14.6.tgz#3fe36ace42b94f5c3f75a60b6b32d010d8b21f93" + integrity sha512-lPnzWgAk+xAYtssvLUTc6e6r0czJaMAqCZ2p7I7DsEFBpWgEzj6Tw7rYMXk1pmwgxg48vGWzBZK/aw+m7ccn1A== + dependencies: + "@saberhq/option-utils" "^1.14.6" + "@solana/buffer-layout" "^4.0.0" + "@types/promise-retry" "^1.1.3" + "@types/retry" "^0.12.2" + promise-retry "^2.0.1" + retry "^0.13.1" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@saberhq/token-utils@^1.13.32": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/token-utils/-/token-utils-1.14.6.tgz#6d36c053f61834405ccf395b958a258eba9ea45b" + integrity sha512-jfGUS+tb+WVJUMAOfXdYICzTWhaKRcaZN5km9os7cRHAAXTYNZTgFFRThuiuobBAe30SpnJB052rAQE0x0c2iA== + dependencies: + "@saberhq/solana-contrib" "^1.14.6" + "@solana/buffer-layout" "^4.0.0" + "@solana/spl-token" "^0.1.8" + "@ubeswap/token-math" "^5.2.0" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.0": + version "3.0.0" + resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" + integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@solana/buffer-layout-utils@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz#b45a6cab3293a2eb7597cceb474f229889d875ca" + integrity sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.32.0" + bigint-buffer "^1.1.5" + bignumber.js "^9.0.1" + +"@solana/buffer-layout@^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.0.tgz#75b1b11adc487234821c81dfae3119b73a5fd734" + integrity sha512-lR0EMP2HC3+Mxwd4YcnZb0smnaDw7Bl2IQWZiTevRH5ZZBZn6VRWn3/92E3qdU4SSImJkA6IDHawOHAnx/qUvQ== + dependencies: + buffer "~6.0.3" + +"@solana/spl-governance@^0.0.34": + version "0.0.34" + resolved "https://registry.npmjs.org/@solana/spl-governance/-/spl-governance-0.0.34.tgz#c61d81d356dbcee961bbc85e5d3538846fea57ad" + integrity sha512-tZppBiiVkUa5v+B/Ds+TqZ4yxR/vaIYLRxBk7x6R22dwk4/9SU87bVE60kRdDqTdMzqScFxIMdhaGl/fCX533A== + dependencies: + "@solana/web3.js" "^1.22.0" + bignumber.js "^9.0.1" + bn.js "^5.1.3" + borsh "^0.3.1" + bs58 "^4.0.1" + superstruct "^0.15.2" + +"@solana/spl-token-swap@^0.1.2": + version "0.1.4" + resolved "https://registry.npmjs.org/@solana/spl-token-swap/-/spl-token-swap-0.1.4.tgz#f776d97c37987c85ad9374afe5c91be2069fb7b4" + integrity sha512-q0vHo1m6UwqXTpKM4sk/gnPk8BopPJ+qx+qXkx0pMGiBep/66MAj7Drx186xStyqEXVuXtvgPEPIEREVJDKt/w== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.42.0" + bn.js "^5.1.3" + +"@solana/spl-token-v2@npm:@solana/spl-token@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.2.0.tgz#329bb6babb5de0f9c40035ddb1657f01a8347acd" + integrity sha512-RWcn31OXtdqIxmkzQfB2R+WpsJOVS6rKuvpxJFjvik2LyODd+WN58ZP3Rpjpro03fscGAkzlFuP3r42doRJgyQ== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/buffer-layout-utils" "^0.2.0" + "@solana/web3.js" "^1.32.0" + start-server-and-test "^1.14.0" + +"@solana/spl-token@^0.0.13": + version "0.0.13" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.0.13.tgz#5e0b235b1f8b34643280401dbfddeb34d13d1acd" + integrity sha512-WT8M9V/hxURR5jLbhr3zgwVsgcY6m8UhHtK045w7o+jx8FJ9MKARkj387WBFU7mKiFq0k8jw/8YL7XmnIUuH8Q== + dependencies: + "@babel/runtime" "^7.10.5" + "@solana/web3.js" "^0.86.1" + bn.js "^5.0.0" + buffer-layout "^1.2.0" + dotenv "8.2.0" + mkdirp "1.0.4" + +"@solana/spl-token@^0.1.5", "@solana/spl-token@^0.1.6", "@solana/spl-token@^0.1.8": + version "0.1.8" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.1.8.tgz#f06e746341ef8d04165e21fc7f555492a2a0faa6" + integrity sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ== + dependencies: + "@babel/runtime" "^7.10.5" + "@solana/web3.js" "^1.21.0" + bn.js "^5.1.0" + buffer "6.0.3" + buffer-layout "^1.2.0" + dotenv "10.0.0" + +"@solana/web3.js@^0.86.1": + version "0.86.4" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-0.86.4.tgz#69216d3928ca4727c25a1ea96c405e897156ac3b" + integrity sha512-FpabDmdyxBN5aHIVUWc9Q6pXJFWiLRm/xeyxFg9O9ICHjiUkd38omds7G0CAmykIccG7zaMziwtkXp+0KvQOhA== + dependencies: + "@babel/runtime" "^7.3.1" + bn.js "^5.0.0" + bs58 "^4.0.1" + buffer "^5.4.3" + buffer-layout "^1.2.0" + crypto-hash "^1.2.2" + esdoc-inject-style-plugin "^1.0.0" + jayson "^3.0.1" + keccak "^3.0.1" + mz "^2.7.0" + node-fetch "^2.2.0" + npm-run-all "^4.1.5" + rpc-websockets "^7.4.2" + secp256k1 "^4.0.2" + superstruct "^0.8.3" + tweetnacl "^1.0.0" + ws "^7.0.0" + +"@solana/web3.js@^1.20.0", "@solana/web3.js@^1.21.0", "@solana/web3.js@^1.22.0", "@solana/web3.js@^1.24.1", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.42.0", "@solana/web3.js@^1.43.5", "@solana/web3.js@^1.44.3", "@solana/web3.js@^1.50.1": + version "1.62.0" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz#8fef9fd443217161ddc25e701f603222047bc520" + integrity sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA== + dependencies: + "@babel/runtime" "^7.12.5" + "@noble/ed25519" "^1.7.0" + "@noble/hashes" "^1.1.2" + "@noble/secp256k1" "^1.6.3" + "@solana/buffer-layout" "^4.0.0" + bigint-buffer "^1.1.5" + bn.js "^5.0.0" + borsh "^0.7.0" + bs58 "^4.0.1" + buffer "6.0.1" + fast-stable-stringify "^1.0.0" + jayson "^3.4.4" + node-fetch "2" + rpc-websockets "^7.5.0" + superstruct "^0.14.2" + +"@switchboard-xyz/common@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@switchboard-xyz/common/-/common-2.0.0.tgz#8c3551b3611c4a2348c46879c0ab2ea188a1f753" + integrity sha512-hC7J7NShGQHjWaCU7+w6tEtZ3KljxMIKJe5IaxPxD+cgdxhx58UMjngyevaCcle33aPyFZ/tbpm0tU2ZqzqZtQ== + dependencies: + big.js "^6.2.1" + bn.js "^5.2.1" + protobufjs "^6.11.3" + +"@switchboard-xyz/sbv2-utils@^0.1.43": + version "0.1.48" + resolved "https://registry.npmjs.org/@switchboard-xyz/sbv2-utils/-/sbv2-utils-0.1.48.tgz#576880ed617e5976189d4b6d308e36b896968119" + integrity sha512-Q/CoE5u+iBrLwlaD7Z7/DdRwCjgLa+RHaALqClvGkfvHVOOugEVjV+wjOEBDCX3dv+J+Hm/QfQGJ3WVAfnw4tw== + dependencies: + "@orca-so/sdk" "^1.2.24" + "@project-serum/anchor" "^0.24.2" + "@saberhq/token-utils" "^1.13.32" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.43.5" + "@switchboard-xyz/common" "^2.0.0" + "@switchboard-xyz/switchboard-v2" "^0.0.135" + big.js "^6.2.1" + bn.js "^5.2.1" + chalk "4" + decimal.js "^10.3.1" + dotenv "^16.0.1" + mocha "^9.1.1" + toml "^3.0.0" + +"@switchboard-xyz/switchboard-v2@^0.0.135": + version "0.0.135" + resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.135.tgz#51f33c69e7b3ed8180680d475d8e53c67426dd7e" + integrity sha512-ugaC6xYq5Xojok/g62HnealdrvF5v2YmJ6mxkYLL2zrAHQwVDSnFg052OLjthYusifum9kBvUFMPEwnU44UIbQ== + dependencies: + "@project-serum/anchor" "^0.24.2" + "@solana/spl-governance" "^0.0.34" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.44.3" + "@switchboard-xyz/common" "^2.0.0" + assert "^2.0.0" + big.js "^6.2.0" + bs58 "^5.0.0" + chan "^0.6.1" + crypto-js "^4.0.0" + glob "^8.0.3" + lodash "^4.17.21" + long "^4.0.0" + mocha "^9.1.1" + node-fetch "^3.2.6" + +"@tsconfig/node10@^1.0.7": + version "1.0.9" + resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" + integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" + integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== + +"@types/big.js@^6.1.6": + version "6.1.6" + resolved "https://registry.npmjs.org/@types/big.js/-/big.js-6.1.6.tgz#3d417e758483d55345a03a087f7e0c87137ca444" + integrity sha512-0r9J+Zz9rYm2hOTwiMAVkm3XFQ4u5uTK37xrQMhc9bysn/sf/okzovWMYYIBMFTn/yrEZ11pusgLEaoarTlQbA== + +"@types/bn.js@^4.11.5": + version "4.11.6" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c" + integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== + dependencies: + "@types/node" "*" + +"@types/bn.js@^5.1.0": + version "5.1.1" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz#b51e1b55920a4ca26e9285ff79936bbdec910682" + integrity sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g== + dependencies: + "@types/node" "*" + +"@types/chai@^4.3.0": + version "4.3.3" + resolved "https://registry.npmjs.org/@types/chai/-/chai-4.3.3.tgz#3c90752792660c4b562ad73b3fbd68bf3bc7ae07" + integrity sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g== + +"@types/connect@^3.4.33": + version "3.4.35" + resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/long@^4.0.1": + version "4.0.2" + resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" + integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== + +"@types/mocha@^9.0.0": + version "9.1.1" + resolved "https://registry.npmjs.org/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4" + integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw== + +"@types/node@*", "@types/node@>=13.7.0": + version "18.7.18" + resolved "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz#633184f55c322e4fb08612307c274ee6d5ed3154" + integrity sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg== + +"@types/node@^12.12.54": + version "12.20.55" + resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + +"@types/node@^17.0.45": + version "17.0.45" + resolved "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" + integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== + +"@types/promise-retry@^1.1.3": + version "1.1.3" + resolved "https://registry.npmjs.org/@types/promise-retry/-/promise-retry-1.1.3.tgz#baab427419da9088a1d2f21bf56249c21b3dd43c" + integrity sha512-LxIlEpEX6frE3co3vCO2EUJfHIta1IOmhDlcAsR4GMMv9hev1iTI9VwberVGkePJAuLZs5rMucrV8CziCfuJMw== + dependencies: + "@types/retry" "*" + +"@types/retry@*", "@types/retry@^0.12.2": + version "0.12.2" + resolved "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz#ed279a64fa438bb69f2480eda44937912bb7480a" + integrity sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow== + +"@types/ws@^7.4.4": + version "7.4.7" + resolved "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" + integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== + dependencies: + "@types/node" "*" + +"@ubeswap/token-math@^5.2.0": + version "5.2.1" + resolved "https://registry.npmjs.org/@ubeswap/token-math/-/token-math-5.2.1.tgz#66e70ba8d65b5fdb1b7459332fbdad4ddec32a64" + integrity sha512-wkIKDKIl6rml4CVK3fvjjLVk55Z8qEYTgjxZx7MnrTwECazyhiDuekb9WAaDPXcW5QNffCu8uv4Ba8wE96CJsg== + dependencies: + "@types/big.js" "^6.1.6" + big.js "^6.2.1" + decimal.js-light "^2.5.1" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@ungap/promise-all-settled@1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" + integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== + +JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +acorn-jsx@^5.3.1: + version "5.3.2" + resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^8.1.1: + version "8.2.0" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^7.4.0: + version "7.4.1" + resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +acorn@^8.4.1: + version "8.8.0" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" + integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== + +ajv@^6.10.0, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + 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" + +ajv@^8.0.1: + version "8.11.0" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" + integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ansi-colors@4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-colors@^4.1.1: + version "4.1.3" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +arrify@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + +assert@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== + dependencies: + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" + +assertion-error@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" + integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-x@^3.0.2: + version "3.0.9" + resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" + integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== + dependencies: + safe-buffer "^5.0.1" + +base-x@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz#d0e3b7753450c73f8ad2389b5c018a4af7b2224a" + integrity sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw== + +base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +big.js@^6.2.0, big.js@^6.2.1: + version "6.2.1" + resolved "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz#7205ce763efb17c2e41f26f121c420c6a7c2744f" + integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== + +bigint-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442" + integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA== + dependencies: + bindings "^1.3.0" + +bignumber.js@^9.0.1: + version "9.1.0" + resolved "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62" + integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.3.0: + version "1.5.0" + resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bluebird@3.7.2: + version "3.7.2" + resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.0.0, bn.js@^5.1.0, bn.js@^5.1.2, bn.js@^5.1.3, bn.js@^5.2.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +borsh@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.3.1.tgz#c31c3a149610e37913deada80e89073fb15cf55b" + integrity sha512-gJoSTnhwLxN/i2+15Y7uprU8h3CKI+Co4YKZKvrGYUy0FwHWM20x5Sx7eU8Xv4HQqV+7rb4r3P7K1cBIQe3q8A== + dependencies: + "@types/bn.js" "^4.11.5" + bn.js "^5.0.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +borsh@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a" + integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA== + dependencies: + bn.js "^5.2.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +bs58@^4.0.0, bs58@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" + integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== + dependencies: + base-x "^3.0.2" + +bs58@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz#865575b4d13c09ea2a84622df6c8cbeb54ffc279" + integrity sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ== + dependencies: + base-x "^4.0.0" + +buffer-from@^1.0.0, buffer-from@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer-layout@^1.2.0, buffer-layout@^1.2.1, buffer-layout@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/buffer-layout/-/buffer-layout-1.2.2.tgz#b9814e7c7235783085f9ca4966a0cfff112259d5" + integrity sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA== + +buffer@6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2" + integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@6.0.3, buffer@~6.0.3: + version "6.0.3" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@^5.4.3: + version "5.7.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +bufferutil@^4.0.1: + version "4.0.6" + resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" + integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== + dependencies: + node-gyp-build "^4.3.0" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +chai@^4.3.6: + version "4.3.6" + resolved "https://registry.npmjs.org/chai/-/chai-4.3.6.tgz#ffe4ba2d9fa9d6680cc0b370adae709ec9011e9c" + integrity sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q== + dependencies: + assertion-error "^1.1.0" + check-error "^1.0.2" + deep-eql "^3.0.1" + get-func-name "^2.0.0" + loupe "^2.3.1" + pathval "^1.1.1" + type-detect "^4.0.5" + +chalk@4, chalk@^4.0.0, chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^2.0.0, chalk@^2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + 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" + +chan@^0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/chan/-/chan-0.6.1.tgz#ec0ad132e5bc62c27ef10ccbfc4d8dcd8ca00640" + integrity sha512-/TdBP2UhbBmw7qnqkzo9Mk4rzvwRv4dlNPXFerqWy90T8oBspKagJNZxrDbExKHhx9uXXHjo3f9mHgs9iKO3nQ== + +check-error@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" + integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== + +check-more-types@2.24.0: + version "2.24.0" + resolved "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== + +cheerio@0.22.0: + version "0.22.0" + resolved "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" + integrity sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA== + dependencies: + css-select "~1.2.0" + dom-serializer "~0.1.0" + entities "~1.1.1" + htmlparser2 "^3.9.1" + lodash.assignin "^4.0.9" + lodash.bind "^4.1.4" + lodash.defaults "^4.0.1" + lodash.filter "^4.4.0" + lodash.flatten "^4.2.0" + lodash.foreach "^4.3.0" + lodash.map "^4.4.0" + lodash.merge "^4.4.0" + lodash.pick "^4.2.1" + lodash.reduce "^4.4.0" + lodash.reject "^4.4.0" + lodash.some "^4.4.0" + +chokidar@3.5.3: + version "3.5.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + 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" + optionalDependencies: + fsevents "~2.3.2" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +commander@^2.20.3: + version "2.20.3" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-fetch@^3.1.5: + version "3.1.5" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" + integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== + dependencies: + node-fetch "2.6.7" + +cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-hash@^1.2.2, crypto-hash@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247" + integrity sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg== + +crypto-js@^4.0.0: + version "4.1.1" + resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" + integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== + +css-select@~1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + integrity sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA== + dependencies: + boolbase "~1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "~1.0.1" + +css-what@2.1: + version "2.1.3" + resolved "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" + integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== + +data-uri-to-buffer@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" + integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== + +debug@4.3.2: + version "4.3.2" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + +debug@4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + +debug@^4.0.1, debug@^4.1.1: + version "4.3.4" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +decamelize@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" + integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== + +decimal.js-light@^2.5.1: + version "2.5.1" + resolved "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz#134fd32508f19e208f4fb2f8dac0d2626a867934" + integrity sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg== + +decimal.js@^10.2.1, decimal.js@^10.3.0, decimal.js@^10.3.1: + version "10.4.0" + resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.0.tgz#97a7448873b01e92e5ff9117d89a7bca8e63e0fe" + integrity sha512-Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg== + +deep-eql@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" + integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== + dependencies: + type-detect "^4.0.0" + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== + +diff@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" + integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== + +diff@^3.1.0: + version "3.5.0" + resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-serializer@0: + version "0.2.2" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@~0.1.0: + version "0.1.1" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" + integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== + dependencies: + domelementtype "^1.3.0" + entities "^1.1.1" + +domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domelementtype@^2.0.1: + version "2.3.0" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^2.3.0: + version "2.4.2" + resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" + integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== + dependencies: + domelementtype "1" + +domutils@1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + integrity sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw== + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^1.5.1: + version "1.7.0" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dotenv@10.0.0, dotenv@^10.0.0: + version "10.0.0" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== + +dotenv@8.2.0: + version "8.2.0" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" + integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== + +dotenv@^16.0.1: + version "16.0.2" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz#0b0f8652c016a3858ef795024508cddc4bffc5bf" + integrity sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA== + +duplexer@~0.1.1: + version "0.1.2" + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +elliptic@^6.5.4: + version "6.5.4" + resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +enquirer@^2.3.5: + version "2.3.6" + resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + dependencies: + ansi-colors "^4.1.1" + +entities@^1.1.1, entities@~1.1.1: + version "1.1.2" + resolved "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" + integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +err-code@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.5, es-abstract@^1.20.0: + version "1.20.2" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3" + integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.2" + get-symbol-description "^1.0.0" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + is-callable "^1.2.4" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + string.prototype.trimend "^1.0.5" + string.prototype.trimstart "^1.0.5" + unbox-primitive "^1.0.2" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ== + dependencies: + es6-promise "^4.0.3" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +esdoc-inject-style-plugin@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/esdoc-inject-style-plugin/-/esdoc-inject-style-plugin-1.0.0.tgz#a13597368bb9fb89c365e066495caf97a4decbb1" + integrity sha512-LqSGr3YKe+vY2u6TCp9K+EEt97S78KjdJUz5PXyitHkp4nGXRSZq2ftEQJioF/WtTeGYWeQLzNAM9LihIlisqg== + dependencies: + cheerio "0.22.0" + fs-extra "1.0.0" + +eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint@^7.28.0: + version "7.32.0" + resolved "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + 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" + +espree@^7.3.0, espree@^7.3.1: + version "7.3.1" + resolved "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" + integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== + dependencies: + acorn "^7.4.0" + acorn-jsx "^5.3.1" + eslint-visitor-keys "^1.3.0" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +event-stream@=3.3.4: + version "3.3.4" + resolved "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +eventemitter3@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +execa@5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + 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" + +eyes@^0.1.8: + version "0.1.8" + resolved "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + integrity sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fast-stable-stringify@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" + integrity sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag== + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +flatted@^3.1.0: + version "3.2.7" + resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== + +follow-redirects@^1.14.0: + version "1.15.2" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +from@~0: + version "0.1.7" + resolved "https://registry.npmjs.org/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" + integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== + +fs-extra@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" + integrity sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fs@^0.0.1-security: + version "0.0.1-security" + resolved "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz#8a7bd37186b6dddf3813f23858b57ecaaf5e41d4" + integrity sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== + +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-func-name@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" + integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@7.2.0: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^8.0.3: + version "8.0.3" + resolved "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" + integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +globals@^13.6.0, globals@^13.9.0: + version "13.17.0" + resolved "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" + integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== + dependencies: + type-fest "^0.20.2" + +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: + version "4.2.10" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +growl@1.10.5: + version "1.10.5" + resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +htmlparser2@^3.9.1: + version "3.10.1" + resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" + integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== + dependencies: + domelementtype "^1.3.1" + domhandler "^2.3.0" + domutils "^1.5.1" + entities "^1.1.1" + inherits "^2.0.1" + readable-stream "^3.1.1" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +ieee754@^1.1.13, ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: + version "1.2.6" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz#fd6170b0b8c7e2cc73de342ef8284a2202023c44" + integrity sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q== + +is-core-module@^2.9.0: + version "2.10.0" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" + integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-nan@^1.2.1: + version "1.3.2" + resolved "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.3, is-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67" + integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isomorphic-ws@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" + integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== + +jayson@^3.0.1, jayson@^3.4.4: + version "3.7.0" + resolved "https://registry.npmjs.org/jayson/-/jayson-3.7.0.tgz#b735b12d06d348639ae8230d7a1e2916cb078f25" + integrity sha512-tfy39KJMrrXJ+mFcMpxwBvFDetS8LAID93+rycFglIQM4kl3uNR3W4lBLE/FFhsoUCEox5Dt2adVpDm/XtebbQ== + dependencies: + "@types/connect" "^3.4.33" + "@types/node" "^12.12.54" + "@types/ws" "^7.4.4" + JSONStream "^1.3.5" + commander "^2.20.3" + delay "^5.0.0" + es6-promisify "^5.0.0" + eyes "^0.1.8" + isomorphic-ws "^4.0.1" + json-stringify-safe "^5.0.1" + lodash "^4.17.20" + uuid "^8.3.2" + ws "^7.4.5" + +joi@^17.4.0: + version "17.6.0" + resolved "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2" + integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.0" + "@sideway/pinpoint" "^2.0.0" + +js-sha256@^0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" + integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA== + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json-stringify-safe@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + integrity sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +keccak@^3.0.1: + version "3.0.2" + resolved "https://registry.npmjs.org/keccak/-/keccak-3.0.2.tgz#4c2c6e8c54e04f2670ee49fa734eb9da152206e0" + integrity sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ== + dependencies: + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + readable-stream "^3.6.0" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + integrity sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw== + optionalDependencies: + graceful-fs "^4.1.9" + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +lazy-ass@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.assignin@^4.0.9: + version "4.2.0" + resolved "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" + integrity sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg== + +lodash.bind@^4.1.4: + version "4.2.1" + resolved "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" + integrity sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA== + +lodash.defaults@^4.0.1: + version "4.2.0" + resolved "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" + integrity sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ== + +lodash.filter@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" + integrity sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ== + +lodash.flatten@^4.2.0: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" + integrity sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g== + +lodash.foreach@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" + integrity sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ== + +lodash.map@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" + integrity sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q== + +lodash.merge@^4.4.0, lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.pick@^4.2.1: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" + integrity sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q== + +lodash.reduce@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" + integrity sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw== + +lodash.reject@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" + integrity sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ== + +lodash.some@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" + integrity sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ== + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== + +lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +long@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" + integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== + +loupe@^2.3.1: + version "2.3.4" + resolved "https://registry.npmjs.org/loupe/-/loupe-2.3.4.tgz#7e0b9bffc76f148f9be769cb1321d3dcf3cb25f3" + integrity sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ== + dependencies: + get-func-name "^2.0.0" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== + +memorystream@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" + integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + +minimatch@4.2.1: + version "4.2.1" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz#40d9d511a46bdc4e563c22c3080cde9c0d8299b4" + integrity sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1: + version "5.1.0" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: + version "1.2.6" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +mkdirp@1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mkdirp@^0.5.1: + version "0.5.6" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +mocha@^9.0.3, mocha@^9.1.1: + version "9.2.2" + resolved "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz#d70db46bdb93ca57402c809333e5a84977a88fb9" + integrity sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g== + dependencies: + "@ungap/promise-all-settled" "1.1.2" + ansi-colors "4.1.1" + browser-stdout "1.3.1" + chokidar "3.5.3" + debug "4.3.3" + diff "5.0.0" + escape-string-regexp "4.0.0" + find-up "5.0.0" + glob "7.2.0" + growl "1.10.5" + he "1.2.0" + js-yaml "4.1.0" + log-symbols "4.1.0" + minimatch "4.2.1" + ms "2.1.3" + nanoid "3.3.1" + serialize-javascript "6.0.0" + strip-json-comments "3.1.1" + supports-color "8.1.1" + which "2.0.2" + workerpool "6.2.0" + yargs "16.2.0" + yargs-parser "20.2.4" + yargs-unparser "2.0.0" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@3.3.1: + version "3.3.1" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" + integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-addon-api@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32" + integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA== + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@2, node-fetch@2.6.7, node-fetch@^2.2.0: + version "2.6.7" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^3.2.6: + version "3.2.10" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8" + integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-gyp-build@^4.2.0, node-gyp-build@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" + integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + +normalize-package-data@^2.3.2: + version "2.5.0" + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-all@^4.1.5: + version "4.1.5" + resolved "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" + integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== + dependencies: + ansi-styles "^3.2.1" + chalk "^2.4.1" + cross-spawn "^6.0.5" + memorystream "^0.3.1" + minimatch "^3.0.4" + pidtree "^0.3.0" + read-pkg "^3.0.0" + shell-quote "^1.6.1" + string.prototype.padend "^3.0.0" + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +nth-check@~1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + dependencies: + boolbase "~1.0.0" + +object-assign@^4.0.1: + version "4.1.1" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + 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.3" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +pako@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d" + integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +pathval@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" + integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== + +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" + integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== + dependencies: + through "~2.3" + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.3.1" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pidtree@^0.3.0: + version "0.3.1" + resolved "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" + integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise-retry@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" + integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== + dependencies: + err-code "^2.0.2" + retry "^0.12.0" + +prompts@^2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +protobufjs@^6.11.3: + version "6.11.3" + resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" + integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== + dependencies: + "@protobufjs/aspromise" "^1.1.2" + "@protobufjs/base64" "^1.1.2" + "@protobufjs/codegen" "^2.0.4" + "@protobufjs/eventemitter" "^1.1.0" + "@protobufjs/fetch" "^1.1.0" + "@protobufjs/float" "^1.0.2" + "@protobufjs/inquire" "^1.1.0" + "@protobufjs/path" "^1.1.2" + "@protobufjs/pool" "^1.1.0" + "@protobufjs/utf8" "^1.1.0" + "@types/long" "^4.0.1" + "@types/node" ">=13.7.0" + long "^4.0.0" + +ps-tree@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" + integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== + dependencies: + event-stream "=3.3.4" + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +readable-stream@^3.1.1, readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + +regexpp@^3.1.0: + version "3.2.0" + resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve@^1.10.0: + version "1.22.1" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rpc-websockets@^7.4.2, rpc-websockets@^7.5.0: + version "7.5.0" + resolved "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.5.0.tgz#bbeb87572e66703ff151e50af1658f98098e2748" + integrity sha512-9tIRi1uZGy7YmDjErf1Ax3wtqdSSLIlnmL5OtOzgd5eqPKbsPpwDP5whUDO2LQay3Xp0CcHlcNSGzacNRluBaQ== + dependencies: + "@babel/runtime" "^7.17.2" + eventemitter3 "^4.0.7" + uuid "^8.3.2" + ws "^8.5.0" + optionalDependencies: + bufferutil "^4.0.1" + utf-8-validate "^5.0.2" + +rxjs@^7.1.0: + version "7.5.6" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc" + integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw== + dependencies: + tslib "^2.1.0" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +secp256k1@^4.0.2: + version "4.0.3" + resolved "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz#c4559ecd1b8d3c1827ed2d1b94190d69ce267303" + integrity sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA== + dependencies: + elliptic "^6.5.4" + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + +"semver@2 || 3 || 4 || 5", semver@^5.5.0: + version "5.7.1" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^7.2.1: + version "7.3.7" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" + integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== + dependencies: + lru-cache "^6.0.0" + +serialize-javascript@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + dependencies: + randombytes "^2.1.0" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@^1.6.1: + version "1.7.3" + resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" + integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +source-map-support@^0.5.6: + version "0.5.21" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.12" + resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" + integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + +split@0.3: + version "0.3.3" + resolved "https://registry.npmjs.org/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== + dependencies: + through "2" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +start-server-and-test@^1.14.0: + version "1.14.0" + resolved "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-1.14.0.tgz#c57f04f73eac15dd51733b551d775b40837fdde3" + integrity sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw== + dependencies: + bluebird "3.7.2" + check-more-types "2.24.0" + debug "4.3.2" + execa "5.1.1" + lazy-ass "1.6.0" + ps-tree "1.2.0" + wait-on "6.0.0" + +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== + dependencies: + duplexer "~0.1.1" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + 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" + +string.prototype.padend@^3.0.0: + version "3.1.3" + resolved "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz#997a6de12c92c7cb34dc8a201a6c53d9bd88a5f1" + integrity sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + +string.prototype.trimend@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string.prototype.trimstart@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +superstruct@^0.14.2: + version "0.14.2" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" + integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ== + +superstruct@^0.15.2: + version "0.15.5" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.15.5.tgz#0f0a8d3ce31313f0d84c6096cd4fa1bfdedc9dab" + integrity sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ== + +superstruct@^0.8.3: + version "0.8.4" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.8.4.tgz#478a19649f6b02c6319c02044db6a1f5863c391f" + integrity sha512-48Ors8IVWZm/tMr8r0Si6+mJiB7mkD7jqvIzktjJ4+EnP5tBp0qOpiM1J8sCUorKx+TXWrfb3i1UcjdD1YK/wA== + dependencies: + kind-of "^6.0.2" + tiny-invariant "^1.0.6" + +supports-color@8.1.1: + version "8.1.1" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +table@^6.0.9: + version "6.8.0" + resolved "https://registry.npmjs.org/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca" + integrity sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA== + 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" + +text-encoding-utf-8@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13" + integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg== + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +through@2, "through@>=2.2.7 <3", through@~2.3, through@~2.3.1: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +tiny-invariant@^1.0.6, tiny-invariant@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.2.0.tgz#a1141f86b672a9148c72e978a19a73b9b94a15a9" + integrity sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toml@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" + integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +ts-mocha@^9.0.2: + version "9.0.2" + resolved "https://registry.npmjs.org/ts-mocha/-/ts-mocha-9.0.2.tgz#c1ef0248874d04a0f26dd9bd8d88e617a8d82ab1" + integrity sha512-WyQjvnzwrrubl0JT7EC1yWmNpcsU3fOuBFfdps30zbmFBgKniSaSOyZMZx+Wq7kytUs5CY+pEbSYEbGfIKnXTw== + dependencies: + ts-node "7.0.1" + optionalDependencies: + tsconfig-paths "^3.5.0" + +ts-node@7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-7.0.1.tgz#9562dc2d1e6d248d24bc55f773e3f614337d9baf" + integrity sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw== + dependencies: + arrify "^1.0.0" + buffer-from "^1.1.0" + diff "^3.1.0" + make-error "^1.1.1" + minimist "^1.2.0" + mkdirp "^0.5.1" + source-map-support "^0.5.6" + yn "^2.0.0" + +ts-node@^10.4.0: + version "10.9.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" + integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +tsconfig-paths@^3.5.0: + version "3.14.1" + resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" + integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + +tweetnacl@^1.0.0: + version "1.0.3" + resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596" + integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-detect@^4.0.0, type-detect@^4.0.5: + version "4.0.8" + resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +typescript@^4.3.2, typescript@^4.7: + version "4.8.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88" + integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + 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" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +utf-8-validate@^5.0.2: + version "5.0.9" + resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz#ba16a822fbeedff1a58918f2a6a6b36387493ea3" + integrity sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q== + dependencies: + node-gyp-build "^4.3.0" + +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +util@^0.12.0: + version "0.12.4" + resolved "https://registry.npmjs.org/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + safe-buffer "^5.1.2" + which-typed-array "^1.1.2" + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +wait-on@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/wait-on/-/wait-on-6.0.0.tgz#7e9bf8e3d7fe2daecbb7a570ac8ca41e9311c7e7" + integrity sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw== + dependencies: + axios "^0.21.1" + joi "^17.4.0" + lodash "^4.17.21" + minimist "^1.2.5" + rxjs "^7.1.0" + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + 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" + +which-typed-array@^1.1.2: + version "1.1.8" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f" + integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.9" + +which@2.0.2, which@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +which@^1.2.9: + version "1.3.1" + resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +word-wrap@^1.2.3: + version "1.2.3" + resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +workerpool@6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" + integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@^7.0.0, ws@^7.4.5: + version "7.5.9" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +ws@^8.5.0: + version "8.8.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" + integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yargs-parser@20.2.4: + version "20.2.4" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" + integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-parser@^21.0.0: + version "21.1.1" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs-unparser@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" + integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== + dependencies: + camelcase "^6.0.0" + decamelize "^4.0.0" + flat "^5.0.2" + is-plain-obj "^2.1.0" + +yargs@16.2.0: + version "16.2.0" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yargs@^17.0.1: + version "17.5.1" + resolved "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" + integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.0.0" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yn@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a" + integrity sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/programs/anchor-vrf-parser/Anchor.toml b/programs/anchor-vrf-parser/Anchor.toml new file mode 100644 index 0000000..22bef2c --- /dev/null +++ b/programs/anchor-vrf-parser/Anchor.toml @@ -0,0 +1,26 @@ +[workspace] +members = [ + "." +] + +[provider] +# cluster = "devnet" +cluster = "localnet" +wallet = "../../../payer-keypair.json" +# wallet = "~/.config/solana/id.json" + +[programs.localnet] +anchor_buffer_parser = "HjjRFjCyQH3ne6Gg8Yn3TQafrrYecRrphwLwnh2A26vM" + +[registry] +url = "https://anchor.projectserum.com" + +[scripts] +test = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 ./tests/*.test.ts" + + +[test.validator] +url="https://api.devnet.solana.com" + +[[testnet.validator.clone]] +address="GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR" # sbv2 SOL/USD Feed \ No newline at end of file diff --git a/examples/programs/anchor-vrf-parser/Cargo.toml b/programs/anchor-vrf-parser/Cargo.toml similarity index 84% rename from examples/programs/anchor-vrf-parser/Cargo.toml rename to programs/anchor-vrf-parser/Cargo.toml index 240d4e5..3f37941 100644 --- a/examples/programs/anchor-vrf-parser/Cargo.toml +++ b/programs/anchor-vrf-parser/Cargo.toml @@ -16,7 +16,7 @@ cpi = ["no-entrypoint"] default = [] [dependencies] -# switchboard-v2 = { path = "../../../libraries/rs", features = ["devnet"] } +# switchboard-v2 = { path = "../../rust/switchboard-v2", features = ["devnet"] } switchboard-v2 = { version = "^0.1.14", features = ["devnet"] } anchor-lang = "^0.25.0" anchor-spl = "^0.25.0" diff --git a/examples/programs/anchor-vrf-parser/README.md b/programs/anchor-vrf-parser/README.md similarity index 100% rename from examples/programs/anchor-vrf-parser/README.md rename to programs/anchor-vrf-parser/README.md diff --git a/examples/programs/anchor-vrf-parser/Xargo.toml b/programs/anchor-vrf-parser/Xargo.toml similarity index 100% rename from examples/programs/anchor-vrf-parser/Xargo.toml rename to programs/anchor-vrf-parser/Xargo.toml diff --git a/examples/programs/anchor-vrf-parser/cli.ts b/programs/anchor-vrf-parser/cli.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/cli.ts rename to programs/anchor-vrf-parser/cli.ts diff --git a/examples/programs/anchor-vrf-parser/client/accounts/VrfClient.ts b/programs/anchor-vrf-parser/client/accounts/VrfClient.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/accounts/VrfClient.ts rename to programs/anchor-vrf-parser/client/accounts/VrfClient.ts diff --git a/examples/programs/anchor-vrf-parser/client/accounts/index.ts b/programs/anchor-vrf-parser/client/accounts/index.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/accounts/index.ts rename to programs/anchor-vrf-parser/client/accounts/index.ts diff --git a/examples/programs/anchor-vrf-parser/client/errors/anchor.ts b/programs/anchor-vrf-parser/client/errors/anchor.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/errors/anchor.ts rename to programs/anchor-vrf-parser/client/errors/anchor.ts diff --git a/examples/programs/anchor-vrf-parser/client/errors/custom.ts b/programs/anchor-vrf-parser/client/errors/custom.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/errors/custom.ts rename to programs/anchor-vrf-parser/client/errors/custom.ts diff --git a/examples/programs/anchor-vrf-parser/client/errors/index.ts b/programs/anchor-vrf-parser/client/errors/index.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/errors/index.ts rename to programs/anchor-vrf-parser/client/errors/index.ts diff --git a/examples/programs/anchor-vrf-parser/client/instructions/index.ts b/programs/anchor-vrf-parser/client/instructions/index.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/instructions/index.ts rename to programs/anchor-vrf-parser/client/instructions/index.ts diff --git a/examples/programs/anchor-vrf-parser/client/instructions/initState.ts b/programs/anchor-vrf-parser/client/instructions/initState.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/instructions/initState.ts rename to programs/anchor-vrf-parser/client/instructions/initState.ts diff --git a/examples/programs/anchor-vrf-parser/client/instructions/requestResult.ts b/programs/anchor-vrf-parser/client/instructions/requestResult.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/instructions/requestResult.ts rename to programs/anchor-vrf-parser/client/instructions/requestResult.ts diff --git a/examples/programs/anchor-vrf-parser/client/instructions/updateResult.ts b/programs/anchor-vrf-parser/client/instructions/updateResult.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/instructions/updateResult.ts rename to programs/anchor-vrf-parser/client/instructions/updateResult.ts diff --git a/examples/programs/anchor-vrf-parser/client/programId.ts b/programs/anchor-vrf-parser/client/programId.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/programId.ts rename to programs/anchor-vrf-parser/client/programId.ts diff --git a/examples/programs/anchor-vrf-parser/client/types/InitStateParams.ts b/programs/anchor-vrf-parser/client/types/InitStateParams.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/types/InitStateParams.ts rename to programs/anchor-vrf-parser/client/types/InitStateParams.ts diff --git a/examples/programs/anchor-vrf-parser/client/types/RequestResultParams.ts b/programs/anchor-vrf-parser/client/types/RequestResultParams.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/types/RequestResultParams.ts rename to programs/anchor-vrf-parser/client/types/RequestResultParams.ts diff --git a/examples/programs/anchor-vrf-parser/client/types/index.ts b/programs/anchor-vrf-parser/client/types/index.ts similarity index 100% rename from examples/programs/anchor-vrf-parser/client/types/index.ts rename to programs/anchor-vrf-parser/client/types/index.ts diff --git a/examples/programs/anchor-vrf-parser/package.json b/programs/anchor-vrf-parser/package.json similarity index 100% rename from examples/programs/anchor-vrf-parser/package.json rename to programs/anchor-vrf-parser/package.json diff --git a/examples/programs/anchor-vrf-parser/sbv2-vrf-example.sh b/programs/anchor-vrf-parser/sbv2-vrf-example.sh similarity index 100% rename from examples/programs/anchor-vrf-parser/sbv2-vrf-example.sh rename to programs/anchor-vrf-parser/sbv2-vrf-example.sh diff --git a/examples/programs/anchor-vrf-parser/src/actions/init_state.rs b/programs/anchor-vrf-parser/src/actions/init_state.rs similarity index 100% rename from examples/programs/anchor-vrf-parser/src/actions/init_state.rs rename to programs/anchor-vrf-parser/src/actions/init_state.rs diff --git a/examples/programs/anchor-vrf-parser/src/actions/mod.rs b/programs/anchor-vrf-parser/src/actions/mod.rs similarity index 100% rename from examples/programs/anchor-vrf-parser/src/actions/mod.rs rename to programs/anchor-vrf-parser/src/actions/mod.rs diff --git a/examples/programs/anchor-vrf-parser/src/actions/request_result.rs b/programs/anchor-vrf-parser/src/actions/request_result.rs similarity index 100% rename from examples/programs/anchor-vrf-parser/src/actions/request_result.rs rename to programs/anchor-vrf-parser/src/actions/request_result.rs diff --git a/examples/programs/anchor-vrf-parser/src/actions/update_result.rs b/programs/anchor-vrf-parser/src/actions/update_result.rs similarity index 100% rename from examples/programs/anchor-vrf-parser/src/actions/update_result.rs rename to programs/anchor-vrf-parser/src/actions/update_result.rs diff --git a/examples/programs/anchor-vrf-parser/src/lib.rs b/programs/anchor-vrf-parser/src/lib.rs similarity index 100% rename from examples/programs/anchor-vrf-parser/src/lib.rs rename to programs/anchor-vrf-parser/src/lib.rs diff --git a/examples/programs/anchor-vrf-parser/tests/anchor-vrf-parser.test.ts b/programs/anchor-vrf-parser/tests/anchor-vrf-parser.test.ts similarity index 98% rename from examples/programs/anchor-vrf-parser/tests/anchor-vrf-parser.test.ts rename to programs/anchor-vrf-parser/tests/anchor-vrf-parser.test.ts index 07bf449..1e49624 100644 --- a/examples/programs/anchor-vrf-parser/tests/anchor-vrf-parser.test.ts +++ b/programs/anchor-vrf-parser/tests/anchor-vrf-parser.test.ts @@ -18,10 +18,7 @@ import { VrfAccount, } from "@switchboard-xyz/switchboard-v2"; import "mocha"; -import { - AnchorVrfParser, - IDL, -} from "../../../../target/types/anchor_vrf_parser"; +import { AnchorVrfParser, IDL } from "../target/types/anchor_vrf_parser"; import { VrfClient } from "../client/accounts"; import { PROGRAM_ID } from "../client/programId"; diff --git a/examples/programs/anchor-vrf-parser/tsconfig.json b/programs/anchor-vrf-parser/tsconfig.json similarity index 53% rename from examples/programs/anchor-vrf-parser/tsconfig.json rename to programs/anchor-vrf-parser/tsconfig.json index 4545a61..c4b7985 100644 --- a/examples/programs/anchor-vrf-parser/tsconfig.json +++ b/programs/anchor-vrf-parser/tsconfig.json @@ -1,5 +1,4 @@ { - "extends": "../../../tsconfig.json", "ts-node": { "compilerOptions": { "module": "commonjs" @@ -14,18 +13,15 @@ "strict": false, "strictNullChecks": false, "paths": { - "@switchboard-xyz/switchboard-v2": ["../../../libraries/ts"], - "@switchboard-xyz/sbv2-utils": ["../../../libraries/sbv2-utils"], - "@solana/spl-token": [ - "../../../node_modules/@solana/spl-token", - "./node_modules/@solana/spl-token" - ] + "@switchboard-xyz/switchboard-v2": ["../../javascript/solana.js"], + "@switchboard-xyz/sbv2-utils": ["../../javascript/sbv2-utils"], + "@solana/spl-token": ["./node_modules/@solana/spl-token"] } }, "include": ["tests/**/*", "./cli.ts", "./client/**/*"], "exclude": ["target", "lib"], "references": [ - { "path": "../../../libraries/ts" }, - { "path": "../../../libraries/sbv2-utils" } + { "path": "../../javascript/solana.js" }, + { "path": "../../javascript/sbv2-utils" } ] } diff --git a/programs/anchor-vrf-parser/yarn.lock b/programs/anchor-vrf-parser/yarn.lock new file mode 100644 index 0000000..bb76b18 --- /dev/null +++ b/programs/anchor-vrf-parser/yarn.lock @@ -0,0 +1,5651 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ampproject/remapping@^2.1.0": + version "2.2.0" + resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" + integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== + dependencies: + "@jridgewell/gen-mapping" "^0.1.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" + integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== + dependencies: + "@babel/highlight" "^7.18.6" + +"@babel/compat-data@^7.19.1": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.1.tgz#72d647b4ff6a4f82878d184613353af1dd0290f9" + integrity sha512-72a9ghR0gnESIa7jBN53U32FOVCEoztyIlKaNoU05zRhEecduGK9L9c3ww7Mp06JiR+0ls0GBPFJQwwtjn9ksg== + +"@babel/core@^7.12.16": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/core/-/core-7.19.1.tgz#c8fa615c5e88e272564ace3d42fbc8b17bfeb22b" + integrity sha512-1H8VgqXme4UXCRv7/Wa1bq7RVymKOzC7znjyFM8KiEzwFqcKUKYNoQef4GhdklgNvoBXyW4gYhuBNCM5o1zImw== + dependencies: + "@ampproject/remapping" "^2.1.0" + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.19.0" + "@babel/helper-compilation-targets" "^7.19.1" + "@babel/helper-module-transforms" "^7.19.0" + "@babel/helpers" "^7.19.0" + "@babel/parser" "^7.19.1" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.19.1" + "@babel/types" "^7.19.0" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.1" + semver "^6.3.0" + +"@babel/eslint-parser@^7.12.16": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz#4f68f6b0825489e00a24b41b6a1ae35414ecd2f4" + integrity sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ== + dependencies: + "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" + eslint-visitor-keys "^2.1.0" + semver "^6.3.0" + +"@babel/generator@^7.19.0": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.19.0.tgz#785596c06425e59334df2ccee63ab166b738419a" + integrity sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg== + dependencies: + "@babel/types" "^7.19.0" + "@jridgewell/gen-mapping" "^0.3.2" + jsesc "^2.5.1" + +"@babel/helper-compilation-targets@^7.19.1": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.1.tgz#7f630911d83b408b76fe584831c98e5395d7a17c" + integrity sha512-LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg== + dependencies: + "@babel/compat-data" "^7.19.1" + "@babel/helper-validator-option" "^7.18.6" + browserslist "^4.21.3" + semver "^6.3.0" + +"@babel/helper-environment-visitor@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" + integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== + +"@babel/helper-function-name@^7.19.0": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c" + integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== + dependencies: + "@babel/template" "^7.18.10" + "@babel/types" "^7.19.0" + +"@babel/helper-hoist-variables@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" + integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-module-imports@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" + integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-module-transforms@^7.19.0": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz#309b230f04e22c58c6a2c0c0c7e50b216d350c30" + integrity sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-simple-access" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/helper-validator-identifier" "^7.18.6" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.19.0" + "@babel/types" "^7.19.0" + +"@babel/helper-simple-access@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea" + integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-split-export-declaration@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" + integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-string-parser@^7.18.10": + version "7.18.10" + resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz#181f22d28ebe1b3857fa575f5c290b1aaf659b56" + integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw== + +"@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.18.6": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/helper-validator-option@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" + integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== + +"@babel/helpers@^7.19.0": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz#f30534657faf246ae96551d88dd31e9d1fa1fc18" + integrity sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg== + dependencies: + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.19.0" + "@babel/types" "^7.19.0" + +"@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@^7.18.10", "@babel/parser@^7.19.1": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.19.1.tgz#6f6d6c2e621aad19a92544cc217ed13f1aac5b4c" + integrity sha512-h7RCSorm1DdTVGJf3P2Mhj3kdnkmF/EiysUkzS2TdgAYqyjFdMQJbVuXOBej2SBJaXan/lIVtT6KkGbyyq753A== + +"@babel/runtime@^7.10.5", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2", "@babel/runtime@^7.3.1": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259" + integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/template@^7.18.10": + version "7.18.10" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" + integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.18.10" + "@babel/types" "^7.18.10" + +"@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.1.tgz#0fafe100a8c2a603b4718b1d9bf2568d1d193347" + integrity sha512-0j/ZfZMxKukDaag2PtOPDbwuELqIar6lLskVPPJDjXMXjfLb1Obo/1yjxIGqqAJrmfaTIY3z2wFLAQ7qSkLsuA== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.19.0" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/parser" "^7.19.1" + "@babel/types" "^7.19.0" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.19.0.tgz#75f21d73d73dc0351f3368d28db73465f4814600" + integrity sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA== + dependencies: + "@babel/helper-string-parser" "^7.18.10" + "@babel/helper-validator-identifier" "^7.18.6" + to-fast-properties "^2.0.0" + +"@colors/colors@1.5.0": + version "1.5.0" + resolved "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" + integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@dabh/diagnostics@^2.0.2": + version "2.0.3" + resolved "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz#7f7e97ee9a725dffc7808d93668cc984e1dc477a" + integrity sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA== + dependencies: + colorspace "1.1.x" + enabled "2.0.x" + kuler "^2.0.0" + +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + 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" + +"@eslint/eslintrc@^1.3.2": + version "1.3.2" + resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.2.tgz#58b69582f3b7271d8fa67fe5251767a5b38ea356" + integrity sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.4.0" + globals "^13.15.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@google-cloud/secret-manager@^3.10.1": + version "3.12.0" + resolved "https://registry.npmjs.org/@google-cloud/secret-manager/-/secret-manager-3.12.0.tgz#ff975190e45da3aaa762905f2b7c679c06a0f4a3" + integrity sha512-nFNm5lYgH2RRAn1x8vPKt1c+MBMJtBXqkYB5Jpi68PjN7Emjcu7/kl+0/+FamFLp3qJUU7RKRCwETFNNZAOkuw== + dependencies: + google-gax "^2.30.0" + +"@grpc/grpc-js@~1.6.0": + version "1.6.12" + resolved "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.12.tgz#20f710d8a8c5c396b2ae9530ba6c06b984614fdf" + integrity sha512-JmvQ03OTSpVd9JTlj/K3IWHSz4Gk/JMLUTtW7Zb0KvO1LcOYGATh5cNuRYzCAeDR3O8wq+q8FZe97eO9MBrkUw== + dependencies: + "@grpc/proto-loader" "^0.7.0" + "@types/node" ">=12.12.47" + +"@grpc/proto-loader@^0.6.12": + version "0.6.13" + resolved "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.13.tgz#008f989b72a40c60c96cd4088522f09b05ac66bc" + integrity sha512-FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g== + dependencies: + "@types/long" "^4.0.1" + lodash.camelcase "^4.3.0" + long "^4.0.0" + protobufjs "^6.11.3" + yargs "^16.2.0" + +"@grpc/proto-loader@^0.7.0": + version "0.7.2" + resolved "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.2.tgz#fa63178853afe1473c50cff89fe572f7c8b20154" + integrity sha512-jCdyLIT/tdQ1zhrbTQnJNK5nbDf0GoBpy5jVNywBzzMDF+Vs6uEaHnfz46dMtDxkvwrF2hzk5Z67goliceH0sA== + dependencies: + "@types/long" "^4.0.1" + lodash.camelcase "^4.3.0" + long "^4.0.0" + protobufjs "^7.0.0" + yargs "^16.2.0" + +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@humanwhocodes/config-array@^0.10.4": + version "0.10.4" + resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.4.tgz#01e7366e57d2ad104feea63e72248f22015c520c" + integrity sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw== + dependencies: + "@humanwhocodes/object-schema" "^1.2.1" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/gitignore-to-minimatch@^1.0.2": + version "1.0.2" + resolved "https://registry.npmjs.org/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz#316b0a63b91c10e53f242efb4ace5c3b34e8728d" + integrity sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA== + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/object-schema@^1.2.0", "@humanwhocodes/object-schema@^1.2.1": + version "1.2.1" + resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@jridgewell/gen-mapping@^0.1.0": + version "0.1.1" + resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" + integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== + dependencies: + "@jridgewell/set-array" "^1.0.0" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jridgewell/gen-mapping@^0.3.2": + version "0.3.2" + resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" + integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.0" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jridgewell/trace-mapping@^0.3.9": + version "0.3.15" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz#aba35c48a38d3fd84b37e66c9c0423f9744f9774" + integrity sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": + 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#dbf733a965ca47b1973177dc0bb6c889edcfb129" + integrity sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg== + dependencies: + eslint-scope "5.1.1" + +"@noble/ed25519@^1.7.0": + version "1.7.1" + resolved "https://registry.npmjs.org/@noble/ed25519/-/ed25519-1.7.1.tgz#6899660f6fbb97798a6fbd227227c4589a454724" + integrity sha512-Rk4SkJFaXZiznFyC/t77Q0NKS4FL7TLJJsVG2V2oiEq3kJVeTdxysEe/yRWSpnWMe808XRDJ+VFh5pt/FN5plw== + +"@noble/hashes@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183" + integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA== + +"@noble/secp256k1@^1.6.3": + version "1.7.0" + resolved "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.0.tgz#d15357f7c227e751d90aa06b05a0e5cf993ba8c1" + integrity sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@oclif/color@^1.0.0", "@oclif/color@^1.0.1": + version "1.0.1" + resolved "https://registry.npmjs.org/@oclif/color/-/color-1.0.1.tgz#20ab9205e0924c6388918a88874e1f4b32df9970" + integrity sha512-qjYr+izgWdIVOroiBKqTzQgc1r5Wd9QB1J7yGM2EeelqhBARiiVLRZL45vhV4zdyTRdDkZS0EBzFwQap+nliLA== + dependencies: + ansi-styles "^4.2.1" + chalk "^4.1.0" + strip-ansi "^6.0.1" + supports-color "^8.1.1" + tslib "^2" + +"@oclif/core@^1", "@oclif/core@^1.0.8", "@oclif/core@^1.14.1", "@oclif/core@^1.2.0", "@oclif/core@^1.3.0", "@oclif/core@^1.3.6": + version "1.16.3" + resolved "https://registry.npmjs.org/@oclif/core/-/core-1.16.3.tgz#03683f685b790a2d37868013f382f57a70ba4110" + integrity sha512-SWrU/eGgN5kLyuZ+TqtKz2z2HTSrgaNEwkawNj4B31VXDrPv7aULS3ntVCboAKRldX/6J+Af+70BV07Rr5c5oA== + dependencies: + "@oclif/linewrap" "^1.0.0" + "@oclif/screen" "^3.0.2" + ansi-escapes "^4.3.2" + ansi-styles "^4.3.0" + cardinal "^2.1.1" + chalk "^4.1.2" + clean-stack "^3.0.1" + cli-progress "^3.10.0" + debug "^4.3.4" + ejs "^3.1.6" + fs-extra "^9.1.0" + get-package-type "^0.1.0" + globby "^11.1.0" + hyperlinker "^1.0.0" + indent-string "^4.0.0" + is-wsl "^2.2.0" + js-yaml "^3.14.1" + natural-orderby "^2.0.3" + object-treeify "^1.1.33" + password-prompt "^1.1.2" + semver "^7.3.7" + string-width "^4.2.3" + strip-ansi "^6.0.1" + supports-color "^8.1.1" + supports-hyperlinks "^2.2.0" + tslib "^2.3.1" + widest-line "^3.1.0" + wrap-ansi "^7.0.0" + +"@oclif/errors@^1.3.5": + version "1.3.5" + resolved "https://registry.npmjs.org/@oclif/errors/-/errors-1.3.5.tgz#a1e9694dbeccab10fe2fe15acb7113991bed636c" + integrity sha512-OivucXPH/eLLlOT7FkCMoZXiaVYf8I/w1eTAM1+gKzfhALwWTusxEx7wBmW0uzvkSg/9ovWLycPaBgJbM3LOCQ== + dependencies: + clean-stack "^3.0.0" + fs-extra "^8.1" + indent-string "^4.0.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +"@oclif/linewrap@^1.0.0": + version "1.0.0" + resolved "https://registry.npmjs.org/@oclif/linewrap/-/linewrap-1.0.0.tgz#aedcb64b479d4db7be24196384897b5000901d91" + integrity sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw== + +"@oclif/parser@^3.8.7": + version "3.8.7" + resolved "https://registry.npmjs.org/@oclif/parser/-/parser-3.8.7.tgz#236d48db05d0b00157d3b42d31f9dac7550d2a7c" + integrity sha512-b11xBmIUK+LuuwVGJpFs4LwQN2xj2cBWj2c4z1FtiXGrJ85h9xV6q+k136Hw0tGg1jQoRXuvuBnqQ7es7vO9/Q== + dependencies: + "@oclif/errors" "^1.3.5" + "@oclif/linewrap" "^1.0.0" + chalk "^4.1.0" + tslib "^2.3.1" + +"@oclif/plugin-help@^5.1.12": + version "5.1.12" + resolved "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.1.12.tgz#24a18631eb9b22cb55e1a3b8e4f6039fd42727e6" + integrity sha512-HvH/RubJxqCinP0vUWQLTOboT+SfjfL8h40s+PymkWaldIcXlpoRaJX50vz+SjZIs7uewZwEk8fzLqpF/BWXlg== + dependencies: + "@oclif/core" "^1.3.6" + +"@oclif/plugin-plugins@^2.0.1": + version "2.1.0" + resolved "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-2.1.0.tgz#af2def7992332e46137eac31c40947d9b077bff1" + integrity sha512-Bgt+QpTlX7+Q0HkVgtbUGYQlo/hyzNBAaXH5l16ou9Ji5wfi5T+niV5AzQ14R7JF8ZDOTbUOU/NRBJ2bzLCaZQ== + dependencies: + "@oclif/color" "^1.0.1" + "@oclif/core" "^1.2.0" + chalk "^4.1.2" + debug "^4.1.0" + fs-extra "^9.0" + http-call "^5.2.2" + load-json-file "^5.3.0" + npm-run-path "^4.0.1" + semver "^7.3.2" + tslib "^2.0.0" + yarn "^1.22.17" + +"@oclif/plugin-update@^3.0.0": + version "3.0.0" + resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-3.0.0.tgz#dc51f1a42d7b80825ebc1ee5f14310a0545c6b8f" + integrity sha512-uWYTPxea4cDoOgDYxPhOisJCcoJHbbXFSM69iB9VkenAMerUjjq1VrlwWAIzLc45ciWk13uef4nBLy2S0ADtOg== + dependencies: + "@oclif/color" "^1.0.0" + "@oclif/core" "^1.3.0" + cross-spawn "^7.0.3" + debug "^4.3.1" + filesize "^6.1.0" + fs-extra "^9.0.1" + http-call "^5.3.0" + inquirer "^8.2.0" + lodash.throttle "^4.1.1" + log-chopper "^1.0.2" + semver "^7.3.5" + tar-fs "^2.1.1" + +"@oclif/plugin-version@^1.0.4": + version "1.1.2" + resolved "https://registry.npmjs.org/@oclif/plugin-version/-/plugin-version-1.1.2.tgz#04338edb932c9f6df1ee46328f191cc0cf900d2d" + integrity sha512-0RnOI702nYRabYhBrXg4WQbhORgO2CPX47gnPWh/VUxbW7c11AasbiXF51RLS0Edwv0ieCTwTInraFJvcvHDUA== + dependencies: + "@oclif/core" "^1.14.1" + +"@oclif/plugin-warn-if-update-available@^2.0.4": + version "2.0.4" + resolved "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.0.4.tgz#3d509ca2394cccf65e6622be812d7be4065a60aa" + integrity sha512-9dprC1CWPjesg0Vf/rDSQH2tzJXhP1ow84cb2My1kj6e6ESulPKpctiCFSZ1WaCQFfq+crKhzlNoP/vRaXNUAg== + dependencies: + "@oclif/core" "^1.0.8" + chalk "^4.1.0" + debug "^4.1.0" + fs-extra "^9.0.1" + http-call "^5.2.2" + lodash "^4.17.21" + semver "^7.3.2" + +"@oclif/screen@^3.0.2": + version "3.0.2" + resolved "https://registry.npmjs.org/@oclif/screen/-/screen-3.0.2.tgz#969054308fe98d130c02844a45cc792199b75670" + integrity sha512-S/SF/XYJeevwIgHFmVDAFRUvM3m+OjhvCAYMk78ZJQCYCQ5wS7j+LTt1ZEv2jpEEGg2tx/F6TYYWxddNAYHrFQ== + +"@orca-so/aquafarm@^0.0.12": + version "0.0.12" + resolved "https://registry.npmjs.org/@orca-so/aquafarm/-/aquafarm-0.0.12.tgz#255df50e9d8a408cebf600ee3507ff650484e94c" + integrity sha512-4vEkxeI5A5NHR9wre7Dtp9MYPCnke4v2PkaIv7933S490PErCYeqrlDPIEBTAKYWJpHFz5jR+h0bPFbmdMs3kw== + dependencies: + "@solana/spl-token" "^0.1.6" + "@solana/web3.js" "^1.20.0" + "@types/bn.js" "^5.1.0" + bn.js "^5.2.0" + buffer-layout "^1.2.1" + decimal.js "^10.3.0" + dotenv "^10.0.0" + eslint "^7.28.0" + mz "^2.7.0" + prompts "^2.4.1" + typescript "^4.3.2" + yargs "^17.0.1" + +"@orca-so/sdk@^1.2.24": + version "1.2.25" + resolved "https://registry.npmjs.org/@orca-so/sdk/-/sdk-1.2.25.tgz#3c00acb032567067a6d79528bb587b7057e183e8" + integrity sha512-9m4F9GgqNpK69IJ9SBg1//L471AO2X3cvG54jtM24sMIvMNiLiebdIrODLKIHyHcMouspK1qPTN20L64ymu8Bw== + dependencies: + "@orca-so/aquafarm" "^0.0.12" + "@orca-so/stablecurve" "^1.0.5" + "@solana/spl-token" "^0.1.5" + "@solana/spl-token-swap" "^0.1.2" + "@solana/web3.js" "^1.24.1" + decimal.js "^10.3.1" + +"@orca-so/stablecurve@^1.0.5": + version "1.0.6" + resolved "https://registry.npmjs.org/@orca-so/stablecurve/-/stablecurve-1.0.6.tgz#bff0d4c701e4361196ffb0fc641904e6d17df295" + integrity sha512-uZD1jVvOBxyuij4a5C2QT7Mv4m9lMABY/MvAz1xHnK+iJ5pkmSFdYEWzQZUrf8ElCRTYSN9yk7Kb18UmGZnT5g== + dependencies: + "@solana/spl-token" "^0.0.13" + bn.js "^5.1.3" + decimal.js "^10.2.1" + +"@project-serum/anchor@^0.24.2": + version "0.24.2" + resolved "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.24.2.tgz#a3c52a99605c80735f446ca9b3a4885034731004" + integrity sha512-0/718g8/DnEuwAidUwh5wLYphUYXhUbiClkuRNhvNoa+1Y8a4g2tJyxoae+emV+PG/Gikd/QUBNMkIcimiIRTA== + dependencies: + "@project-serum/borsh" "^0.2.5" + "@solana/web3.js" "^1.36.0" + base64-js "^1.5.1" + bn.js "^5.1.2" + bs58 "^4.0.1" + buffer-layout "^1.2.2" + camelcase "^5.3.1" + cross-fetch "^3.1.5" + crypto-hash "^1.3.0" + eventemitter3 "^4.0.7" + js-sha256 "^0.9.0" + pako "^2.0.3" + snake-case "^3.0.4" + toml "^3.0.0" + +"@project-serum/borsh@^0.2.5": + version "0.2.5" + resolved "https://registry.npmjs.org/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663" + integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q== + dependencies: + bn.js "^5.1.2" + buffer-layout "^1.2.0" + +"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" + integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== + +"@protobufjs/base64@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" + integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== + +"@protobufjs/codegen@^2.0.4": + version "2.0.4" + resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" + integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== + +"@protobufjs/eventemitter@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" + integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== + +"@protobufjs/fetch@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" + integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== + dependencies: + "@protobufjs/aspromise" "^1.1.1" + "@protobufjs/inquire" "^1.1.0" + +"@protobufjs/float@^1.0.2": + version "1.0.2" + resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" + integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== + +"@protobufjs/inquire@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" + integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== + +"@protobufjs/path@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" + integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== + +"@protobufjs/pool@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" + integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== + +"@protobufjs/utf8@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" + integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== + +"@saberhq/option-utils@^1.14.6": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/option-utils/-/option-utils-1.14.6.tgz#c48e4afb9d9a030e2b676beeeb2481c6529d3eb9" + integrity sha512-85IMZiYzSf3H7/ZYty+I5JW6EYGJQ8lmRri+wVuhmLtDX+E/iqEBeoS+ns56ZcyfRGl7nsuUriWnJamNz9ekBQ== + dependencies: + tslib "^2.4.0" + +"@saberhq/solana-contrib@^1.14.6": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/solana-contrib/-/solana-contrib-1.14.6.tgz#3fe36ace42b94f5c3f75a60b6b32d010d8b21f93" + integrity sha512-lPnzWgAk+xAYtssvLUTc6e6r0czJaMAqCZ2p7I7DsEFBpWgEzj6Tw7rYMXk1pmwgxg48vGWzBZK/aw+m7ccn1A== + dependencies: + "@saberhq/option-utils" "^1.14.6" + "@solana/buffer-layout" "^4.0.0" + "@types/promise-retry" "^1.1.3" + "@types/retry" "^0.12.2" + promise-retry "^2.0.1" + retry "^0.13.1" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@saberhq/token-utils@^1.13.32": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/token-utils/-/token-utils-1.14.6.tgz#6d36c053f61834405ccf395b958a258eba9ea45b" + integrity sha512-jfGUS+tb+WVJUMAOfXdYICzTWhaKRcaZN5km9os7cRHAAXTYNZTgFFRThuiuobBAe30SpnJB052rAQE0x0c2iA== + dependencies: + "@saberhq/solana-contrib" "^1.14.6" + "@solana/buffer-layout" "^4.0.0" + "@solana/spl-token" "^0.1.8" + "@ubeswap/token-math" "^5.2.0" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.0": + version "3.0.0" + resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" + integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@solana/buffer-layout-utils@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz#b45a6cab3293a2eb7597cceb474f229889d875ca" + integrity sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.32.0" + bigint-buffer "^1.1.5" + bignumber.js "^9.0.1" + +"@solana/buffer-layout@^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.0.tgz#75b1b11adc487234821c81dfae3119b73a5fd734" + integrity sha512-lR0EMP2HC3+Mxwd4YcnZb0smnaDw7Bl2IQWZiTevRH5ZZBZn6VRWn3/92E3qdU4SSImJkA6IDHawOHAnx/qUvQ== + dependencies: + buffer "~6.0.3" + +"@solana/spl-governance@^0.0.34": + version "0.0.34" + resolved "https://registry.npmjs.org/@solana/spl-governance/-/spl-governance-0.0.34.tgz#c61d81d356dbcee961bbc85e5d3538846fea57ad" + integrity sha512-tZppBiiVkUa5v+B/Ds+TqZ4yxR/vaIYLRxBk7x6R22dwk4/9SU87bVE60kRdDqTdMzqScFxIMdhaGl/fCX533A== + dependencies: + "@solana/web3.js" "^1.22.0" + bignumber.js "^9.0.1" + bn.js "^5.1.3" + borsh "^0.3.1" + bs58 "^4.0.1" + superstruct "^0.15.2" + +"@solana/spl-token-swap@^0.1.2": + version "0.1.4" + resolved "https://registry.npmjs.org/@solana/spl-token-swap/-/spl-token-swap-0.1.4.tgz#f776d97c37987c85ad9374afe5c91be2069fb7b4" + integrity sha512-q0vHo1m6UwqXTpKM4sk/gnPk8BopPJ+qx+qXkx0pMGiBep/66MAj7Drx186xStyqEXVuXtvgPEPIEREVJDKt/w== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.42.0" + bn.js "^5.1.3" + +"@solana/spl-token-v2@npm:@solana/spl-token@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.2.0.tgz#329bb6babb5de0f9c40035ddb1657f01a8347acd" + integrity sha512-RWcn31OXtdqIxmkzQfB2R+WpsJOVS6rKuvpxJFjvik2LyODd+WN58ZP3Rpjpro03fscGAkzlFuP3r42doRJgyQ== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/buffer-layout-utils" "^0.2.0" + "@solana/web3.js" "^1.32.0" + start-server-and-test "^1.14.0" + +"@solana/spl-token@^0.0.13": + version "0.0.13" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.0.13.tgz#5e0b235b1f8b34643280401dbfddeb34d13d1acd" + integrity sha512-WT8M9V/hxURR5jLbhr3zgwVsgcY6m8UhHtK045w7o+jx8FJ9MKARkj387WBFU7mKiFq0k8jw/8YL7XmnIUuH8Q== + dependencies: + "@babel/runtime" "^7.10.5" + "@solana/web3.js" "^0.86.1" + bn.js "^5.0.0" + buffer-layout "^1.2.0" + dotenv "8.2.0" + mkdirp "1.0.4" + +"@solana/spl-token@^0.1.5", "@solana/spl-token@^0.1.6", "@solana/spl-token@^0.1.8": + version "0.1.8" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.1.8.tgz#f06e746341ef8d04165e21fc7f555492a2a0faa6" + integrity sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ== + dependencies: + "@babel/runtime" "^7.10.5" + "@solana/web3.js" "^1.21.0" + bn.js "^5.1.0" + buffer "6.0.3" + buffer-layout "^1.2.0" + dotenv "10.0.0" + +"@solana/web3.js@^0.86.1": + version "0.86.4" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-0.86.4.tgz#69216d3928ca4727c25a1ea96c405e897156ac3b" + integrity sha512-FpabDmdyxBN5aHIVUWc9Q6pXJFWiLRm/xeyxFg9O9ICHjiUkd38omds7G0CAmykIccG7zaMziwtkXp+0KvQOhA== + dependencies: + "@babel/runtime" "^7.3.1" + bn.js "^5.0.0" + bs58 "^4.0.1" + buffer "^5.4.3" + buffer-layout "^1.2.0" + crypto-hash "^1.2.2" + esdoc-inject-style-plugin "^1.0.0" + jayson "^3.0.1" + keccak "^3.0.1" + mz "^2.7.0" + node-fetch "^2.2.0" + npm-run-all "^4.1.5" + rpc-websockets "^7.4.2" + secp256k1 "^4.0.2" + superstruct "^0.8.3" + tweetnacl "^1.0.0" + ws "^7.0.0" + +"@solana/web3.js@^1.20.0", "@solana/web3.js@^1.21.0", "@solana/web3.js@^1.22.0", "@solana/web3.js@^1.24.1", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.42.0", "@solana/web3.js@^1.43.5", "@solana/web3.js@^1.44.3": + version "1.62.0" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz#8fef9fd443217161ddc25e701f603222047bc520" + integrity sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA== + dependencies: + "@babel/runtime" "^7.12.5" + "@noble/ed25519" "^1.7.0" + "@noble/hashes" "^1.1.2" + "@noble/secp256k1" "^1.6.3" + "@solana/buffer-layout" "^4.0.0" + bigint-buffer "^1.1.5" + bn.js "^5.0.0" + borsh "^0.7.0" + bs58 "^4.0.1" + buffer "6.0.1" + fast-stable-stringify "^1.0.0" + jayson "^3.4.4" + node-fetch "2" + rpc-websockets "^7.5.0" + superstruct "^0.14.2" + +"@switchboard-xyz/common@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@switchboard-xyz/common/-/common-2.0.0.tgz#8c3551b3611c4a2348c46879c0ab2ea188a1f753" + integrity sha512-hC7J7NShGQHjWaCU7+w6tEtZ3KljxMIKJe5IaxPxD+cgdxhx58UMjngyevaCcle33aPyFZ/tbpm0tU2ZqzqZtQ== + dependencies: + big.js "^6.2.1" + bn.js "^5.2.1" + protobufjs "^6.11.3" + +"@switchboard-xyz/sbv2-utils@^0.1.43": + version "0.1.48" + resolved "https://registry.npmjs.org/@switchboard-xyz/sbv2-utils/-/sbv2-utils-0.1.48.tgz#576880ed617e5976189d4b6d308e36b896968119" + integrity sha512-Q/CoE5u+iBrLwlaD7Z7/DdRwCjgLa+RHaALqClvGkfvHVOOugEVjV+wjOEBDCX3dv+J+Hm/QfQGJ3WVAfnw4tw== + dependencies: + "@orca-so/sdk" "^1.2.24" + "@project-serum/anchor" "^0.24.2" + "@saberhq/token-utils" "^1.13.32" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.43.5" + "@switchboard-xyz/common" "^2.0.0" + "@switchboard-xyz/switchboard-v2" "^0.0.135" + big.js "^6.2.1" + bn.js "^5.2.1" + chalk "4" + decimal.js "^10.3.1" + dotenv "^16.0.1" + mocha "^9.1.1" + toml "^3.0.0" + +"@switchboard-xyz/sbv2-utils@^0.1.44": + version "0.1.46" + resolved "https://registry.npmjs.org/@switchboard-xyz/sbv2-utils/-/sbv2-utils-0.1.46.tgz#385f52f38db925213c6f247a5d548196d83a0631" + integrity sha512-QHIiQHaPCOtLwV3To1Y/dpzi2tHXyVYZnEaKhOMcKLngqmNnJamUWDdJDrEk0pP23DOlIdqonYRbS5/UvnGHcA== + dependencies: + "@orca-so/sdk" "^1.2.24" + "@project-serum/anchor" "^0.24.2" + "@saberhq/token-utils" "^1.13.32" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.43.5" + "@switchboard-xyz/common" "^2.0.0" + "@switchboard-xyz/switchboard-v2" "^0.0.133" + big.js "^6.2.1" + bn.js "^5.2.1" + chalk "4" + decimal.js "^10.3.1" + dotenv "^16.0.1" + mocha "^9.1.1" + toml "^3.0.0" + +"@switchboard-xyz/switchboard-v2@^0.0.131": + version "0.0.131" + resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.131.tgz#d9ab8e721bb87387f082e2993b0786871459d593" + integrity sha512-rtLxIyiIqyiP8gtgeHMpMQfIYbzO5b2ogP0E/7E1gGL3zSCjtPc2SSBt6uqmvfpa4YesMZuAN0qT7SRrFK7RvQ== + dependencies: + "@project-serum/anchor" "^0.24.2" + "@solana/spl-governance" "^0.0.34" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.44.3" + assert "^2.0.0" + big.js "^6.2.0" + bs58 "^5.0.0" + chan "^0.6.1" + crypto-js "^4.0.0" + glob "^8.0.3" + long "^4.0.0" + mocha "^9.1.1" + node-fetch "^3.2.6" + protobufjs "^6.11.3" + +"@switchboard-xyz/switchboard-v2@^0.0.133": + version "0.0.133" + resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.133.tgz#2e239188bc9eb2e26d75042edf3031de0d7ea7cd" + integrity sha512-Vr+CFELv6vkGaKTVJSvmm1z+v8TZ+PYZj51+ZeZx7QUo8/iiCkbdWGe4yWYIaBxplFqH3B2Bbmjd9szgCmgyig== + dependencies: + "@project-serum/anchor" "^0.24.2" + "@solana/spl-governance" "^0.0.34" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.44.3" + "@switchboard-xyz/common" "^2.0.0" + assert "^2.0.0" + big.js "^6.2.0" + bs58 "^5.0.0" + chan "^0.6.1" + crypto-js "^4.0.0" + glob "^8.0.3" + long "^4.0.0" + mocha "^9.1.1" + node-fetch "^3.2.6" + +"@switchboard-xyz/switchboard-v2@^0.0.135": + version "0.0.135" + resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.135.tgz#51f33c69e7b3ed8180680d475d8e53c67426dd7e" + integrity sha512-ugaC6xYq5Xojok/g62HnealdrvF5v2YmJ6mxkYLL2zrAHQwVDSnFg052OLjthYusifum9kBvUFMPEwnU44UIbQ== + dependencies: + "@project-serum/anchor" "^0.24.2" + "@solana/spl-governance" "^0.0.34" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.44.3" + "@switchboard-xyz/common" "^2.0.0" + assert "^2.0.0" + big.js "^6.2.0" + bs58 "^5.0.0" + chan "^0.6.1" + crypto-js "^4.0.0" + glob "^8.0.3" + lodash "^4.17.21" + long "^4.0.0" + mocha "^9.1.1" + node-fetch "^3.2.6" + +"@switchboard-xyz/switchboardv2-cli@^0.2.14": + version "0.2.27" + resolved "https://registry.npmjs.org/@switchboard-xyz/switchboardv2-cli/-/switchboardv2-cli-0.2.27.tgz#03d4966b1a0d81651ae8350d153d435cdce17971" + integrity sha512-PVHRes0nDAty4mNc1LDKo5JMOmdsDoMQotRl0A9iMFLrjeQlc1I/8+hRfXfc15saKFF4/GdJ0zhwPhI7wu8VXQ== + dependencies: + "@google-cloud/secret-manager" "^3.10.1" + "@oclif/core" "^1" + "@oclif/parser" "^3.8.7" + "@oclif/plugin-help" "^5.1.12" + "@oclif/plugin-plugins" "^2.0.1" + "@oclif/plugin-update" "^3.0.0" + "@oclif/plugin-version" "^1.0.4" + "@oclif/plugin-warn-if-update-available" "^2.0.4" + "@project-serum/anchor" "^0.24.2" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.43.5" + "@switchboard-xyz/sbv2-utils" "^0.1.44" + "@switchboard-xyz/switchboard-v2" "^0.0.131" + assert "^2.0.0" + big.js "^6.2.0" + bs58 "^5.0.0" + chalk "4" + node-fetch "^2.6.6" + winston "^3.8.1" + +"@tsconfig/node10@^1.0.7": + version "1.0.9" + resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" + integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" + integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== + +"@types/big.js@^6.1.6": + version "6.1.6" + resolved "https://registry.npmjs.org/@types/big.js/-/big.js-6.1.6.tgz#3d417e758483d55345a03a087f7e0c87137ca444" + integrity sha512-0r9J+Zz9rYm2hOTwiMAVkm3XFQ4u5uTK37xrQMhc9bysn/sf/okzovWMYYIBMFTn/yrEZ11pusgLEaoarTlQbA== + +"@types/bn.js@^4.11.5": + version "4.11.6" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c" + integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== + dependencies: + "@types/node" "*" + +"@types/bn.js@^5.1.0": + version "5.1.1" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz#b51e1b55920a4ca26e9285ff79936bbdec910682" + integrity sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g== + dependencies: + "@types/node" "*" + +"@types/chai@^4.3.0": + version "4.3.3" + resolved "https://registry.npmjs.org/@types/chai/-/chai-4.3.3.tgz#3c90752792660c4b562ad73b3fbd68bf3bc7ae07" + integrity sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g== + +"@types/connect@^3.4.33": + version "3.4.35" + resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/json-schema@^7.0.9": + version "7.0.11" + resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/long@^4.0.0", "@types/long@^4.0.1": + version "4.0.2" + resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" + integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== + +"@types/mocha@^9.0.0": + version "9.1.1" + resolved "https://registry.npmjs.org/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4" + integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw== + +"@types/node@*", "@types/node@>=12.12.47", "@types/node@>=13.7.0": + version "18.7.18" + resolved "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz#633184f55c322e4fb08612307c274ee6d5ed3154" + integrity sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg== + +"@types/node@^12.12.54": + version "12.20.55" + resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + +"@types/node@^17.0.45": + version "17.0.45" + resolved "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" + integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== + +"@types/normalize-package-data@^2.4.0": + version "2.4.1" + resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" + integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== + +"@types/promise-retry@^1.1.3": + version "1.1.3" + resolved "https://registry.npmjs.org/@types/promise-retry/-/promise-retry-1.1.3.tgz#baab427419da9088a1d2f21bf56249c21b3dd43c" + integrity sha512-LxIlEpEX6frE3co3vCO2EUJfHIta1IOmhDlcAsR4GMMv9hev1iTI9VwberVGkePJAuLZs5rMucrV8CziCfuJMw== + dependencies: + "@types/retry" "*" + +"@types/retry@*", "@types/retry@^0.12.2": + version "0.12.2" + resolved "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz#ed279a64fa438bb69f2480eda44937912bb7480a" + integrity sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow== + +"@types/ws@^7.4.4": + version "7.4.7" + resolved "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" + integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== + dependencies: + "@types/node" "*" + +"@typescript-eslint/eslint-plugin@^5.27.1": + version "5.37.0" + resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.37.0.tgz#5ccdd5d9004120f28fc6e717fb4b5c9bddcfbc04" + integrity sha512-Fde6W0IafXktz1UlnhGkrrmnnGpAo1kyX7dnyHHVrmwJOn72Oqm3eYtddrpOwwel2W8PAK9F3pIL5S+lfoM0og== + dependencies: + "@typescript-eslint/scope-manager" "5.37.0" + "@typescript-eslint/type-utils" "5.37.0" + "@typescript-eslint/utils" "5.37.0" + debug "^4.3.4" + functional-red-black-tree "^1.0.1" + ignore "^5.2.0" + regexpp "^3.2.0" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/parser@^4.33.0": + version "4.33.0" + resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz#dfe797570d9694e560528d18eecad86c8c744899" + integrity sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA== + 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" + +"@typescript-eslint/scope-manager@4.33.0": + version "4.33.0" + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz#d38e49280d983e8772e29121cf8c6e9221f280a3" + integrity sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ== + dependencies: + "@typescript-eslint/types" "4.33.0" + "@typescript-eslint/visitor-keys" "4.33.0" + +"@typescript-eslint/scope-manager@5.37.0": + version "5.37.0" + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.37.0.tgz#044980e4f1516a774a418dafe701a483a6c9f9ca" + integrity sha512-F67MqrmSXGd/eZnujjtkPgBQzgespu/iCZ+54Ok9X5tALb9L2v3G+QBSoWkXG0p3lcTJsL+iXz5eLUEdSiJU9Q== + dependencies: + "@typescript-eslint/types" "5.37.0" + "@typescript-eslint/visitor-keys" "5.37.0" + +"@typescript-eslint/type-utils@5.37.0": + version "5.37.0" + resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.37.0.tgz#43ed2f567ada49d7e33a6e4b6f9babd060445fe5" + integrity sha512-BSx/O0Z0SXOF5tY0bNTBcDEKz2Ec20GVYvq/H/XNKiUorUFilH7NPbFUuiiyzWaSdN3PA8JV0OvYx0gH/5aFAQ== + dependencies: + "@typescript-eslint/typescript-estree" "5.37.0" + "@typescript-eslint/utils" "5.37.0" + debug "^4.3.4" + tsutils "^3.21.0" + +"@typescript-eslint/types@4.33.0": + version "4.33.0" + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz#a1e59036a3b53ae8430ceebf2a919dc7f9af6d72" + integrity sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ== + +"@typescript-eslint/types@5.37.0": + version "5.37.0" + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.37.0.tgz#09e4870a5f3af7af3f84e08d792644a87d232261" + integrity sha512-3frIJiTa5+tCb2iqR/bf7XwU20lnU05r/sgPJnRpwvfZaqCJBrl8Q/mw9vr3NrNdB/XtVyMA0eppRMMBqdJ1bA== + +"@typescript-eslint/typescript-estree@4.33.0": + version "4.33.0" + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz#0dfb51c2908f68c5c08d82aefeaf166a17c24609" + integrity sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA== + 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" + +"@typescript-eslint/typescript-estree@5.37.0": + version "5.37.0" + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.37.0.tgz#956dcf5c98363bcb97bdd5463a0a86072ff79355" + integrity sha512-JkFoFIt/cx59iqEDSgIGnQpCTRv96MQnXCYvJi7QhBC24uyuzbD8wVbajMB1b9x4I0octYFJ3OwjAwNqk1AjDA== + dependencies: + "@typescript-eslint/types" "5.37.0" + "@typescript-eslint/visitor-keys" "5.37.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/utils@5.37.0": + version "5.37.0" + resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.37.0.tgz#7784cb8e91390c4f90ccaffd24a0cf9874df81b2" + integrity sha512-jUEJoQrWbZhmikbcWSMDuUSxEE7ID2W/QCV/uz10WtQqfOuKZUqFGjqLJ+qhDd17rjgp+QJPqTdPIBWwoob2NQ== + dependencies: + "@types/json-schema" "^7.0.9" + "@typescript-eslint/scope-manager" "5.37.0" + "@typescript-eslint/types" "5.37.0" + "@typescript-eslint/typescript-estree" "5.37.0" + eslint-scope "^5.1.1" + eslint-utils "^3.0.0" + +"@typescript-eslint/visitor-keys@4.33.0": + version "4.33.0" + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz#2a22f77a41604289b7a186586e9ec48ca92ef1dd" + integrity sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg== + dependencies: + "@typescript-eslint/types" "4.33.0" + eslint-visitor-keys "^2.0.0" + +"@typescript-eslint/visitor-keys@5.37.0": + version "5.37.0" + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.37.0.tgz#7b72dd343295ea11e89b624995abc7103c554eee" + integrity sha512-Hp7rT4cENBPIzMwrlehLW/28EVCOcE9U1Z1BQTc8EA8v5qpr7GRGuG+U58V5tTY48zvUOA3KHvw3rA8tY9fbdA== + dependencies: + "@typescript-eslint/types" "5.37.0" + eslint-visitor-keys "^3.3.0" + +"@ubeswap/token-math@^5.2.0": + version "5.2.1" + resolved "https://registry.npmjs.org/@ubeswap/token-math/-/token-math-5.2.1.tgz#66e70ba8d65b5fdb1b7459332fbdad4ddec32a64" + integrity sha512-wkIKDKIl6rml4CVK3fvjjLVk55Z8qEYTgjxZx7MnrTwECazyhiDuekb9WAaDPXcW5QNffCu8uv4Ba8wE96CJsg== + dependencies: + "@types/big.js" "^6.1.6" + big.js "^6.2.1" + decimal.js-light "^2.5.1" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@ungap/promise-all-settled@1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" + integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== + +JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + +acorn-jsx@^5.3.1, acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^8.1.1: + version "8.2.0" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^7.4.0: + version "7.4.1" + resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +acorn@^8.4.1, acorn@^8.8.0: + version "8.8.0" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" + integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== + +agent-base@6: + version "6.0.2" + resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + +ajv@^6.10.0, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + 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" + +ajv@^8.0.1: + version "8.11.0" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" + integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ansi-colors@4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-colors@^4.1.1: + version "4.1.3" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-escapes@^3.1.0: + version "3.2.0" + resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + +ansi-escapes@^4.2.1, ansi-escapes@^4.3.2: + version "4.3.2" + resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0, ansi-styles@^4.2.1, ansi-styles@^4.3.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansicolors@~0.3.2: + version "0.3.2" + resolved "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" + integrity sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg== + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +array-includes@^3.1.4: + version "3.1.5" + resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" + integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + get-intrinsic "^1.1.1" + is-string "^1.0.7" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array.prototype.flat@^1.2.5: + version "1.3.0" + resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b" + integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.2" + es-shim-unscopables "^1.0.0" + +arrify@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + +arrify@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" + integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== + +assert@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== + dependencies: + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" + +assertion-error@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" + integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +async@^3.2.3: + version "3.2.4" + resolved "https://registry.npmjs.org/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" + integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== + +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-x@^3.0.2: + version "3.0.9" + resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" + integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== + dependencies: + safe-buffer "^5.0.1" + +base-x@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz#d0e3b7753450c73f8ad2389b5c018a4af7b2224a" + integrity sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw== + +base64-js@^1.3.0, base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +big.js@^6.2.0, big.js@^6.2.1: + version "6.2.1" + resolved "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz#7205ce763efb17c2e41f26f121c420c6a7c2744f" + integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== + +bigint-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442" + integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA== + dependencies: + bindings "^1.3.0" + +bignumber.js@^9.0.0, bignumber.js@^9.0.1: + version "9.1.0" + resolved "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62" + integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.3.0: + version "1.5.0" + resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bl@^4.0.3, bl@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +bluebird@3.7.2: + version "3.7.2" + resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.0.0, bn.js@^5.1.0, bn.js@^5.1.2, bn.js@^5.1.3, bn.js@^5.2.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +borsh@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.3.1.tgz#c31c3a149610e37913deada80e89073fb15cf55b" + integrity sha512-gJoSTnhwLxN/i2+15Y7uprU8h3CKI+Co4YKZKvrGYUy0FwHWM20x5Sx7eU8Xv4HQqV+7rb4r3P7K1cBIQe3q8A== + dependencies: + "@types/bn.js" "^4.11.5" + bn.js "^5.0.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +borsh@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a" + integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA== + dependencies: + bn.js "^5.2.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +browserslist@^4.21.3: + version "4.21.4" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" + integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== + dependencies: + caniuse-lite "^1.0.30001400" + electron-to-chromium "^1.4.251" + node-releases "^2.0.6" + update-browserslist-db "^1.0.9" + +bs58@^4.0.0, bs58@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" + integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== + dependencies: + base-x "^3.0.2" + +bs58@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz#865575b4d13c09ea2a84622df6c8cbeb54ffc279" + integrity sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ== + dependencies: + base-x "^4.0.0" + +buffer-equal-constant-time@1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" + integrity sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA== + +buffer-from@^1.0.0, buffer-from@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer-layout@^1.2.0, buffer-layout@^1.2.1, buffer-layout@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/buffer-layout/-/buffer-layout-1.2.2.tgz#b9814e7c7235783085f9ca4966a0cfff112259d5" + integrity sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA== + +buffer@6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2" + integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@6.0.3, buffer@~6.0.3: + version "6.0.3" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@^5.4.3, buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +bufferutil@^4.0.1: + version "4.0.6" + resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" + integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== + dependencies: + node-gyp-build "^4.3.0" + +builtin-modules@^3.3.0: + version "3.3.0" + resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" + integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== + +byline@5.x: + version "5.0.0" + resolved "https://registry.npmjs.org/byline/-/byline-5.0.0.tgz#741c5216468eadc457b03410118ad77de8c1ddb1" + integrity sha512-s6webAy+R4SR8XVuJWt2V2rGvhnrhxN+9S15GNuTK3wKPOXFF6RNc+8ug2XhH+2s4f+uudG4kUVYmYOQWL2g0Q== + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +caniuse-lite@^1.0.30001400: + version "1.0.30001402" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001402.tgz#aa29e1f47f5055b0d0c07696a67b8b08023d14c8" + integrity sha512-Mx4MlhXO5NwuvXGgVb+hg65HZ+bhUYsz8QtDGDo2QmaJS2GBX47Xfi2koL86lc8K+l+htXeTEB/Aeqvezoo6Ew== + +cardinal@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz#7cc1055d822d212954d07b085dea251cc7bc5505" + integrity sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw== + dependencies: + ansicolors "~0.3.2" + redeyed "~2.1.0" + +chai@^4.3.6: + version "4.3.6" + resolved "https://registry.npmjs.org/chai/-/chai-4.3.6.tgz#ffe4ba2d9fa9d6680cc0b370adae709ec9011e9c" + integrity sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q== + dependencies: + assertion-error "^1.1.0" + check-error "^1.0.2" + deep-eql "^3.0.1" + get-func-name "^2.0.0" + loupe "^2.3.1" + pathval "^1.1.1" + type-detect "^4.0.5" + +chalk@4, chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^2.0.0, chalk@^2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + 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" + +chan@^0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/chan/-/chan-0.6.1.tgz#ec0ad132e5bc62c27ef10ccbfc4d8dcd8ca00640" + integrity sha512-/TdBP2UhbBmw7qnqkzo9Mk4rzvwRv4dlNPXFerqWy90T8oBspKagJNZxrDbExKHhx9uXXHjo3f9mHgs9iKO3nQ== + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +check-error@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" + integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== + +check-more-types@2.24.0: + version "2.24.0" + resolved "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== + +cheerio@0.22.0: + version "0.22.0" + resolved "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" + integrity sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA== + dependencies: + css-select "~1.2.0" + dom-serializer "~0.1.0" + entities "~1.1.1" + htmlparser2 "^3.9.1" + lodash.assignin "^4.0.9" + lodash.bind "^4.1.4" + lodash.defaults "^4.0.1" + lodash.filter "^4.4.0" + lodash.flatten "^4.2.0" + lodash.foreach "^4.3.0" + lodash.map "^4.4.0" + lodash.merge "^4.4.0" + lodash.pick "^4.2.1" + lodash.reduce "^4.4.0" + lodash.reject "^4.4.0" + lodash.some "^4.4.0" + +child_process@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/child_process/-/child_process-1.0.2.tgz#b1f7e7fc73d25e7fd1d455adc94e143830182b5a" + integrity sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g== + +chokidar@3.5.3: + version "3.5.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + 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" + optionalDependencies: + fsevents "~2.3.2" + +chownr@^1.1.1: + version "1.1.4" + resolved "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + +ci-info@^3.2.0: + version "3.4.0" + resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.4.0.tgz#b28484fd436cbc267900364f096c9dc185efb251" + integrity sha512-t5QdPT5jq3o262DOQ8zA6E1tlH2upmUc4Hlvrbx1pGYJuiiHl7O7rvVNI+l8HTVhd/q3Qc9vqimkNk5yiXsAug== + +clean-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz#8df7c7aae51fd36874e8f8d05b9180bc11a3fed7" + integrity sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw== + dependencies: + escape-string-regexp "^1.0.5" + +clean-stack@^3.0.0, clean-stack@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz#155bf0b2221bf5f4fba89528d24c5953f17fe3a8" + integrity sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg== + dependencies: + escape-string-regexp "4.0.0" + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-progress@^3.10.0: + version "3.11.2" + resolved "https://registry.npmjs.org/cli-progress/-/cli-progress-3.11.2.tgz#f8c89bd157e74f3f2c43bcfb3505670b4d48fc77" + integrity sha512-lCPoS6ncgX4+rJu5bS3F/iCz17kZ9MPZ6dpuTtI0KXKABkhyXIdYB3Inby1OpaGti3YlI3EeEkM9AuWpelJrVA== + dependencies: + string-width "^4.2.3" + +cli-spinners@^2.5.0: + version "2.7.0" + resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz#f815fd30b5f9eaac02db604c7a231ed7cb2f797a" + integrity sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw== + +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +color-convert@^1.9.0, color-convert@^1.9.3: + version "1.9.3" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@^1.0.0, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-string@^1.6.0: + version "1.9.1" + resolved "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" + integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color@^3.1.3: + version "3.2.1" + resolved "https://registry.npmjs.org/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164" + integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== + dependencies: + color-convert "^1.9.3" + color-string "^1.6.0" + +colorspace@1.1.x: + version "1.1.4" + resolved "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz#8d442d1186152f60453bf8070cd66eb364e59243" + integrity sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w== + dependencies: + color "^3.1.3" + text-hex "1.0.x" + +commander@^2.20.3: + version "2.20.3" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +confusing-browser-globals@^1.0.10: + version "1.0.11" + resolved "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz#ae40e9b57cdd3915408a2805ebd3a5585608dc81" + integrity sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA== + +content-type@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + +convert-source-map@^1.7.0: + version "1.8.0" + resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" + integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== + dependencies: + safe-buffer "~5.1.1" + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-fetch@^3.1.5: + version "3.1.5" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" + integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== + dependencies: + node-fetch "2.6.7" + +cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-hash@^1.2.2, crypto-hash@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247" + integrity sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg== + +crypto-js@^4.0.0: + version "4.1.1" + resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" + integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== + +css-select@~1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + integrity sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA== + dependencies: + boolbase "~1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "~1.0.1" + +css-what@2.1: + version "2.1.3" + resolved "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" + integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== + +data-uri-to-buffer@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" + integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== + +debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +debug@4.3.2: + version "4.3.2" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + +debug@4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + +debug@^2.6.9: + version "2.6.9" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +decamelize@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" + integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== + +decimal.js-light@^2.5.1: + version "2.5.1" + resolved "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz#134fd32508f19e208f4fb2f8dac0d2626a867934" + integrity sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg== + +decimal.js@^10.2.1, decimal.js@^10.3.0, decimal.js@^10.3.1: + version "10.4.0" + resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.0.tgz#97a7448873b01e92e5ff9117d89a7bca8e63e0fe" + integrity sha512-Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg== + +deep-eql@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" + integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== + dependencies: + type-detect "^4.0.0" + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +defaults@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + integrity sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA== + dependencies: + clone "^1.0.2" + +define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== + +diff@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" + integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== + +diff@^3.1.0: + version "3.5.0" + resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-serializer@0: + version "0.2.2" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@~0.1.0: + version "0.1.1" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" + integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== + dependencies: + domelementtype "^1.3.0" + entities "^1.1.1" + +domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domelementtype@^2.0.1: + version "2.3.0" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^2.3.0: + version "2.4.2" + resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" + integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== + dependencies: + domelementtype "1" + +domutils@1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + integrity sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw== + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^1.5.1: + version "1.7.0" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dotenv@10.0.0, dotenv@^10.0.0: + version "10.0.0" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== + +dotenv@8.2.0: + version "8.2.0" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" + integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== + +dotenv@^16.0.1: + version "16.0.2" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz#0b0f8652c016a3858ef795024508cddc4bffc5bf" + integrity sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA== + +duplexer@~0.1.1: + version "0.1.2" + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +duplexify@^4.0.0: + version "4.1.2" + resolved "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz#18b4f8d28289132fa0b9573c898d9f903f81c7b0" + integrity sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw== + dependencies: + end-of-stream "^1.4.1" + inherits "^2.0.3" + readable-stream "^3.1.1" + stream-shift "^1.0.0" + +ecdsa-sig-formatter@1.0.11, ecdsa-sig-formatter@^1.0.11: + version "1.0.11" + resolved "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" + integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== + dependencies: + safe-buffer "^5.0.1" + +ejs@^3.1.6: + version "3.1.8" + resolved "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz#758d32910c78047585c7ef1f92f9ee041c1c190b" + integrity sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ== + dependencies: + jake "^10.8.5" + +electron-to-chromium@^1.4.251: + version "1.4.253" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.253.tgz#3402fd2159530fc6d94237f1b9535fa7bebaf399" + integrity sha512-1pezJ2E1UyBTGbA7fUlHdPSXQw1k+82VhTFLG5G0AUqLGvsZqFzleOblceqegZzxYX4kC7hGEEdzIQI9RZ1Cuw== + +elliptic@^6.5.4: + version "6.5.4" + resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +enabled@2.0.x: + version "2.0.0" + resolved "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz#f9dd92ec2d6f4bbc0d5d1e64e21d61cd4665e7c2" + integrity sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ== + +end-of-stream@^1.1.0, end-of-stream@^1.4.1: + version "1.4.4" + resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +enquirer@^2.3.5: + version "2.3.6" + resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + dependencies: + ansi-colors "^4.1.1" + +entities@^1.1.1, entities@~1.1.1: + version "1.1.2" + resolved "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" + integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +err-code@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5, es-abstract@^1.20.0: + version "1.20.2" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3" + integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.2" + get-symbol-description "^1.0.0" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + is-callable "^1.2.4" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + string.prototype.trimend "^1.0.5" + string.prototype.trimstart "^1.0.5" + unbox-primitive "^1.0.2" + +es-shim-unscopables@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" + integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== + dependencies: + has "^1.0.3" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ== + dependencies: + es6-promise "^4.0.3" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +esdoc-inject-style-plugin@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/esdoc-inject-style-plugin/-/esdoc-inject-style-plugin-1.0.0.tgz#a13597368bb9fb89c365e066495caf97a4decbb1" + integrity sha512-LqSGr3YKe+vY2u6TCp9K+EEt97S78KjdJUz5PXyitHkp4nGXRSZq2ftEQJioF/WtTeGYWeQLzNAM9LihIlisqg== + dependencies: + cheerio "0.22.0" + fs-extra "1.0.0" + +eslint-config-airbnb-base@^14.2.1: + version "14.2.1" + resolved "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz#8a2eb38455dc5a312550193b319cdaeef042cd1e" + integrity sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA== + dependencies: + confusing-browser-globals "^1.0.10" + object.assign "^4.1.2" + object.entries "^1.1.2" + +eslint-config-airbnb-typescript@^14.0.1: + version "14.0.2" + resolved "https://registry.npmjs.org/eslint-config-airbnb-typescript/-/eslint-config-airbnb-typescript-14.0.2.tgz#4dc1583b9eab671bb011dea7d4ff1fc0d88e6e09" + integrity sha512-oaVR63DqpRUiOOeSVxIzhD3FXbqJRH+7Lt9GCMsS9SKgrRW3XpZINN2FO4JEsnaHEGkktumd0AHE9K7KQNuXSQ== + dependencies: + eslint-config-airbnb-base "^14.2.1" + +eslint-config-prettier@^8.3.0: + version "8.5.0" + resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1" + integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q== + +eslint-import-resolver-node@^0.3.6: + version "0.3.6" + resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" + integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== + dependencies: + debug "^3.2.7" + resolve "^1.20.0" + +eslint-module-utils@^2.7.3: + version "2.7.4" + resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" + integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== + dependencies: + debug "^3.2.7" + +eslint-plugin-import@^2.24.2: + version "2.26.0" + resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b" + integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA== + dependencies: + array-includes "^3.1.4" + array.prototype.flat "^1.2.5" + debug "^2.6.9" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.6" + eslint-module-utils "^2.7.3" + has "^1.0.3" + is-core-module "^2.8.1" + is-glob "^4.0.3" + minimatch "^3.1.2" + object.values "^1.1.5" + resolve "^1.22.0" + tsconfig-paths "^3.14.1" + +eslint-plugin-prettier@^4.2.1: + version "4.2.1" + resolved "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b" + integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== + dependencies: + prettier-linter-helpers "^1.0.0" + +eslint-plugin-unicorn@^37.0.1: + version "37.0.1" + resolved "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-37.0.1.tgz#a2292dc302ffc0be1791e6ebbb4ae93242833f11" + integrity sha512-E1jq5u9ojnadisJcPi+hMXTGSiIzkIUMDvWsBudsCGXvKUB2aNSU2TcfyW2/jAS5A4ryBXfzxLykMxX1EdluSQ== + dependencies: + "@babel/helper-validator-identifier" "^7.14.9" + ci-info "^3.2.0" + clean-regexp "^1.0.0" + eslint-template-visitor "^2.3.2" + eslint-utils "^3.0.0" + esquery "^1.4.0" + indent-string "4" + is-builtin-module "^3.1.0" + lodash "^4.17.21" + pluralize "^8.0.0" + read-pkg-up "^7.0.1" + regexp-tree "^0.1.23" + safe-regex "^2.1.1" + semver "^7.3.5" + strip-indent "^3.0.0" + +eslint-scope@5.1.1, eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-scope@^7.1.1: + version "7.1.1" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" + integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-template-visitor@^2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/eslint-template-visitor/-/eslint-template-visitor-2.3.2.tgz#b52f96ff311e773a345d79053ccc78275bbc463d" + integrity sha512-3ydhqFpuV7x1M9EK52BPNj6V0Kwu0KKkcIAfpUhwHbR8ocRln/oUHgfxQupY8O1h4Qv/POHDumb/BwwNfxbtnA== + dependencies: + "@babel/core" "^7.12.16" + "@babel/eslint-parser" "^7.12.16" + eslint-visitor-keys "^2.0.0" + esquery "^1.3.1" + multimap "^1.1.0" + +eslint-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-utils@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" + integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== + dependencies: + eslint-visitor-keys "^2.0.0" + +eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint-visitor-keys@^3.3.0: + version "3.3.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" + integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== + +eslint@^7.28.0: + version "7.32.0" + resolved "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + 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" + +eslint@^8.18.0: + version "8.23.1" + resolved "https://registry.npmjs.org/eslint/-/eslint-8.23.1.tgz#cfd7b3f7fdd07db8d16b4ac0516a29c8d8dca5dc" + integrity sha512-w7C1IXCc6fNqjpuYd0yPlcTKKmHlHHktRkzmBPZ+7cvNBQuiNjx0xaMTjAJGCafJhQkrFJooREv0CtrVzmHwqg== + dependencies: + "@eslint/eslintrc" "^1.3.2" + "@humanwhocodes/config-array" "^0.10.4" + "@humanwhocodes/gitignore-to-minimatch" "^1.0.2" + "@humanwhocodes/module-importer" "^1.0.1" + ajv "^6.10.0" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.1.1" + eslint-utils "^3.0.0" + eslint-visitor-keys "^3.3.0" + espree "^9.4.0" + esquery "^1.4.0" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.1" + globals "^13.15.0" + globby "^11.1.0" + grapheme-splitter "^1.0.4" + ignore "^5.2.0" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + js-sdsl "^4.1.4" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.1" + regexpp "^3.2.0" + strip-ansi "^6.0.1" + strip-json-comments "^3.1.0" + text-table "^0.2.0" + +espree@^7.3.0, espree@^7.3.1: + version "7.3.1" + resolved "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" + integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== + dependencies: + acorn "^7.4.0" + acorn-jsx "^5.3.1" + eslint-visitor-keys "^1.3.0" + +espree@^9.4.0: + version "9.4.0" + resolved "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a" + integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw== + dependencies: + acorn "^8.8.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.3.0" + +esprima@^4.0.0, esprima@~4.0.0: + version "4.0.1" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.3.1, esquery@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +event-stream@=3.3.4: + version "3.3.4" + resolved "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +event-target-shim@^5.0.0: + version "5.0.1" + resolved "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + +eventemitter3@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +execa@5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + 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" + +extend@^3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +external-editor@^3.0.3: + version "3.1.0" + resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +eyes@^0.1.8: + version "0.1.8" + resolved "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + integrity sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-diff@^1.1.2: + version "1.2.0" + resolved "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== + +fast-glob@^3.2.9: + version "3.2.12" + resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" + integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== + 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" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fast-stable-stringify@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" + integrity sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag== + +fast-text-encoding@^1.0.0, fast-text-encoding@^1.0.3: + version "1.0.6" + resolved "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz#0aa25f7f638222e3396d72bf936afcf1d42d6867" + integrity sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w== + +fastq@^1.6.0: + version "1.13.0" + resolved "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" + integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== + dependencies: + reusify "^1.0.4" + +fecha@^4.2.0: + version "4.2.3" + resolved "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz#4d9ccdbc61e8629b259fdca67e65891448d569fd" + integrity sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw== + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +figures@^3.0.0: + version "3.2.0" + resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +filelist@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" + integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== + dependencies: + minimatch "^5.0.1" + +filesize@^6.1.0: + version "6.4.0" + resolved "https://registry.npmjs.org/filesize/-/filesize-6.4.0.tgz#914f50471dd66fdca3cefe628bd0cde4ef769bcd" + integrity sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@5.0.0, find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +flatted@^3.1.0: + version "3.2.7" + resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== + +fn.name@1.x.x: + version "1.1.0" + resolved "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz#26cad8017967aea8731bc42961d04a3d5988accc" + integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== + +follow-redirects@^1.14.0: + version "1.15.2" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +from@~0: + version "0.1.7" + resolved "https://registry.npmjs.org/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" + integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== + +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + +fs-extra@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" + integrity sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + +fs-extra@^8.1: + version "8.1.0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^9.0, fs-extra@^9.0.1, fs-extra@^9.1.0: + version "9.1.0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + 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" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== + +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +gaxios@^4.0.0: + version "4.3.3" + resolved "https://registry.npmjs.org/gaxios/-/gaxios-4.3.3.tgz#d44bdefe52d34b6435cc41214fdb160b64abfc22" + integrity sha512-gSaYYIO1Y3wUtdfHmjDUZ8LWaxJQpiavzbF5Kq53akSzvmVg0RfyOcFDbO1KJ/KCGRFz2qG+lS81F0nkr7cRJA== + dependencies: + abort-controller "^3.0.0" + extend "^3.0.2" + https-proxy-agent "^5.0.0" + is-stream "^2.0.0" + node-fetch "^2.6.7" + +gcp-metadata@^4.2.0: + version "4.3.1" + resolved "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-4.3.1.tgz#fb205fe6a90fef2fd9c85e6ba06e5559ee1eefa9" + integrity sha512-x850LS5N7V1F3UcV7PoupzGsyD6iVwTVvsh3tbXfkctZnBnjW5yu5z1/3k3SehF7TyoTIe78rJs02GMMy+LF+A== + dependencies: + gaxios "^4.0.0" + json-bigint "^1.0.0" + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-func-name@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" + integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.1: + version "6.0.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob@7.2.0: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.0.0, glob@^7.1.3: + version "7.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^8.0.3: + version "8.0.3" + resolved "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" + integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^13.15.0, globals@^13.6.0, globals@^13.9.0: + version "13.17.0" + resolved "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" + integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== + dependencies: + type-fest "^0.20.2" + +globby@^11.0.3, globby@^11.1.0: + version "11.1.0" + resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + 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" + +google-auth-library@^7.14.0: + version "7.14.1" + resolved "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.14.1.tgz#e3483034162f24cc71b95c8a55a210008826213c" + integrity sha512-5Rk7iLNDFhFeBYc3s8l1CqzbEBcdhwR193RlD4vSNFajIcINKI8W8P0JLmBpwymHqqWbX34pJDQu39cSy/6RsA== + dependencies: + arrify "^2.0.0" + base64-js "^1.3.0" + ecdsa-sig-formatter "^1.0.11" + fast-text-encoding "^1.0.0" + gaxios "^4.0.0" + gcp-metadata "^4.2.0" + gtoken "^5.0.4" + jws "^4.0.0" + lru-cache "^6.0.0" + +google-gax@^2.30.0: + version "2.30.5" + resolved "https://registry.npmjs.org/google-gax/-/google-gax-2.30.5.tgz#e836f984f3228900a8336f608c83d75f9cb73eff" + integrity sha512-Jey13YrAN2hfpozHzbtrwEfEHdStJh1GwaQ2+Akh1k0Tv/EuNVSuBtHZoKSBm5wBMvNsxTsEIZ/152NrYyZgxQ== + dependencies: + "@grpc/grpc-js" "~1.6.0" + "@grpc/proto-loader" "^0.6.12" + "@types/long" "^4.0.0" + abort-controller "^3.0.0" + duplexify "^4.0.0" + fast-text-encoding "^1.0.3" + google-auth-library "^7.14.0" + is-stream-ended "^0.1.4" + node-fetch "^2.6.1" + object-hash "^3.0.0" + proto3-json-serializer "^0.1.8" + protobufjs "6.11.3" + retry-request "^4.0.0" + +google-p12-pem@^3.1.3: + version "3.1.4" + resolved "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-3.1.4.tgz#123f7b40da204de4ed1fbf2fd5be12c047fc8b3b" + integrity sha512-HHuHmkLgwjdmVRngf5+gSmpkyaRI6QmOg77J8tkNBHhNEI62sGHyw4/+UkgyZEI7h84NbWprXDJ+sa3xOYFvTg== + dependencies: + node-forge "^1.3.1" + +graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0: + version "4.2.10" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +grapheme-splitter@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" + integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== + +growl@1.10.5: + version "1.10.5" + resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== + +gtoken@^5.0.4: + version "5.3.2" + resolved "https://registry.npmjs.org/gtoken/-/gtoken-5.3.2.tgz#deb7dc876abe002178e0515e383382ea9446d58f" + integrity sha512-gkvEKREW7dXWF8NV8pVrKfW7WqReAmjjkMBh6lNCCGOM4ucS0r0YyXXl0r/9Yj8wcW/32ISkfc8h5mPTDbtifQ== + dependencies: + gaxios "^4.0.0" + google-p12-pem "^3.1.3" + jws "^4.0.0" + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +htmlparser2@^3.9.1: + version "3.10.1" + resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" + integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== + dependencies: + domelementtype "^1.3.1" + domhandler "^2.3.0" + domutils "^1.5.1" + entities "^1.1.1" + inherits "^2.0.1" + readable-stream "^3.1.1" + +http-call@^5.2.2, http-call@^5.3.0: + version "5.3.0" + resolved "https://registry.npmjs.org/http-call/-/http-call-5.3.0.tgz#4ded815b13f423de176eb0942d69c43b25b148db" + integrity sha512-ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w== + dependencies: + content-type "^1.0.4" + debug "^4.1.1" + is-retry-allowed "^1.1.0" + is-stream "^2.0.0" + parse-json "^4.0.0" + tunnel-agent "^0.6.0" + +https-proxy-agent@^5.0.0: + version "5.0.1" + resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== + dependencies: + agent-base "6" + debug "4" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +hyperlinker@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/hyperlinker/-/hyperlinker-1.0.0.tgz#23dc9e38a206b208ee49bc2d6c8ef47027df0c0e" + integrity sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ== + +iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ieee754@^1.1.13, ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +ignore@^5.2.0: + version "5.2.0" + resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" + integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +indent-string@4, indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inquirer@^8.2.0: + version "8.2.4" + resolved "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz#ddbfe86ca2f67649a67daa6f1051c128f684f0b4" + integrity sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg== + dependencies: + ansi-escapes "^4.2.1" + chalk "^4.1.1" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.21" + mute-stream "0.0.8" + ora "^5.4.1" + run-async "^2.4.0" + rxjs "^7.5.5" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + wrap-ansi "^7.0.0" + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +interpret@^1.0.0: + version "1.4.0" + resolved "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-builtin-module@^3.1.0: + version "3.2.0" + resolved "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.0.tgz#bb0310dfe881f144ca83f30100ceb10cf58835e0" + integrity sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw== + dependencies: + builtin-modules "^3.3.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: + version "1.2.6" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz#fd6170b0b8c7e2cc73de342ef8284a2202023c44" + integrity sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q== + +is-core-module@^2.8.1, is-core-module@^2.9.0: + version "2.10.0" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" + integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-docker@^2.0.0: + version "2.2.1" + resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-interactive@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + +is-nan@^1.2.1: + version "1.3.2" + resolved "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-retry-allowed@^1.1.0: + version "1.2.0" + resolved "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" + integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream-ended@^0.1.4: + version "0.1.4" + resolved "https://registry.npmjs.org/is-stream-ended/-/is-stream-ended-0.1.4.tgz#f50224e95e06bce0e356d440a4827cd35b267eda" + integrity sha512-xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw== + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.3, is-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67" + integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isomorphic-ws@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" + integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== + +jake@^10.8.5: + version "10.8.5" + resolved "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" + integrity sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw== + dependencies: + async "^3.2.3" + chalk "^4.0.2" + filelist "^1.0.1" + minimatch "^3.0.4" + +jayson@^3.0.1, jayson@^3.4.4: + version "3.7.0" + resolved "https://registry.npmjs.org/jayson/-/jayson-3.7.0.tgz#b735b12d06d348639ae8230d7a1e2916cb078f25" + integrity sha512-tfy39KJMrrXJ+mFcMpxwBvFDetS8LAID93+rycFglIQM4kl3uNR3W4lBLE/FFhsoUCEox5Dt2adVpDm/XtebbQ== + dependencies: + "@types/connect" "^3.4.33" + "@types/node" "^12.12.54" + "@types/ws" "^7.4.4" + JSONStream "^1.3.5" + commander "^2.20.3" + delay "^5.0.0" + es6-promisify "^5.0.0" + eyes "^0.1.8" + isomorphic-ws "^4.0.1" + json-stringify-safe "^5.0.1" + lodash "^4.17.20" + uuid "^8.3.2" + ws "^7.4.5" + +joi@^17.4.0: + version "17.6.0" + resolved "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2" + integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.0" + "@sideway/pinpoint" "^2.0.0" + +js-sdsl@^4.1.4: + version "4.1.4" + resolved "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.4.tgz#78793c90f80e8430b7d8dc94515b6c77d98a26a6" + integrity sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw== + +js-sha256@^0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" + integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA== + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@4.1.0, js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +js-yaml@^3.13.1, js-yaml@^3.14.1: + version "3.14.1" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +json-bigint@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz#ae547823ac0cad8398667f8cd9ef4730f5b01ff1" + integrity sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ== + dependencies: + bignumber.js "^9.0.0" + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json-stringify-safe@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +json5@^2.2.1: + version "2.2.1" + resolved "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" + integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== + +jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + integrity sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +jwa@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz#a7e9c3f29dae94027ebcaf49975c9345593410fc" + integrity sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA== + dependencies: + buffer-equal-constant-time "1.0.1" + ecdsa-sig-formatter "1.0.11" + safe-buffer "^5.0.1" + +jws@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz#2d4e8cf6a318ffaa12615e9dec7e86e6c97310f4" + integrity sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg== + dependencies: + jwa "^2.0.0" + safe-buffer "^5.0.1" + +keccak@^3.0.1: + version "3.0.2" + resolved "https://registry.npmjs.org/keccak/-/keccak-3.0.2.tgz#4c2c6e8c54e04f2670ee49fa734eb9da152206e0" + integrity sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ== + dependencies: + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + readable-stream "^3.6.0" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + integrity sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw== + optionalDependencies: + graceful-fs "^4.1.9" + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +kuler@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz#e2c570a3800388fb44407e851531c1d670b061b3" + integrity sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A== + +lazy-ass@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +load-json-file@^5.3.0: + version "5.3.0" + resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz#4d3c1e01fa1c03ea78a60ac7af932c9ce53403f3" + integrity sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw== + dependencies: + graceful-fs "^4.1.15" + parse-json "^4.0.0" + pify "^4.0.1" + strip-bom "^3.0.0" + type-fest "^0.3.0" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.assignin@^4.0.9: + version "4.2.0" + resolved "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" + integrity sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg== + +lodash.bind@^4.1.4: + version "4.2.1" + resolved "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" + integrity sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA== + +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== + +lodash.defaults@^4.0.1: + version "4.2.0" + resolved "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" + integrity sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ== + +lodash.filter@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" + integrity sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ== + +lodash.flatten@^4.2.0: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" + integrity sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g== + +lodash.foreach@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" + integrity sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ== + +lodash.map@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" + integrity sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q== + +lodash.merge@^4.4.0, lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.pick@^4.2.1: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" + integrity sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q== + +lodash.reduce@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" + integrity sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw== + +lodash.reject@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" + integrity sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ== + +lodash.some@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" + integrity sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ== + +lodash.throttle@^4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" + integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== + +lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-chopper@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/log-chopper/-/log-chopper-1.0.2.tgz#a88da7a47a9f0e511eda4d5e1dc840e0eaf4547a" + integrity sha512-tEWS6Fb+Xv0yLChJ6saA1DP3H1yPL0PfiIN7SDJ+U/CyP+fD4G/dhKfow+P5UuJWi6BdE4mUcPkJclGXCWxDrg== + dependencies: + byline "5.x" + +log-symbols@4.1.0, log-symbols@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +logform@^2.3.2, logform@^2.4.0: + version "2.4.2" + resolved "https://registry.npmjs.org/logform/-/logform-2.4.2.tgz#a617983ac0334d0c3b942c34945380062795b47c" + integrity sha512-W4c9himeAwXEdZ05dQNerhFz2XG80P9Oj0loPUMV23VC2it0orMHQhJm4hdnnor3rd1HsGf6a2lPwBM1zeXHGw== + dependencies: + "@colors/colors" "1.5.0" + fecha "^4.2.0" + ms "^2.1.1" + safe-stable-stringify "^2.3.1" + triple-beam "^1.3.0" + +long@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" + integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== + +long@^5.0.0: + version "5.2.0" + resolved "https://registry.npmjs.org/long/-/long-5.2.0.tgz#2696dadf4b4da2ce3f6f6b89186085d94d52fd61" + integrity sha512-9RTUNjK60eJbx3uz+TEGF7fUr29ZDxR5QzXcyDpeSfeH28S9ycINflOgOlppit5U+4kNTe83KQnMEerw7GmE8w== + +loupe@^2.3.1: + version "2.3.4" + resolved "https://registry.npmjs.org/loupe/-/loupe-2.3.4.tgz#7e0b9bffc76f148f9be769cb1321d3dcf3cb25f3" + integrity sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ== + dependencies: + get-func-name "^2.0.0" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== + +memorystream@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" + integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@^4.0.4: + version "4.0.5" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +min-indent@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" + integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + +minimatch@4.2.1: + version "4.2.1" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz#40d9d511a46bdc4e563c22c3080cde9c0d8299b4" + integrity sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1: + version "5.1.0" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6: + version "1.2.6" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +mkdirp-classic@^0.5.2: + version "0.5.3" + resolved "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + +mkdirp@1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mkdirp@^0.5.1: + version "0.5.6" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +mocha@^9.0.3, mocha@^9.1.1: + version "9.2.2" + resolved "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz#d70db46bdb93ca57402c809333e5a84977a88fb9" + integrity sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g== + dependencies: + "@ungap/promise-all-settled" "1.1.2" + ansi-colors "4.1.1" + browser-stdout "1.3.1" + chokidar "3.5.3" + debug "4.3.3" + diff "5.0.0" + escape-string-regexp "4.0.0" + find-up "5.0.0" + glob "7.2.0" + growl "1.10.5" + he "1.2.0" + js-yaml "4.1.0" + log-symbols "4.1.0" + minimatch "4.2.1" + ms "2.1.3" + nanoid "3.3.1" + serialize-javascript "6.0.0" + strip-json-comments "3.1.1" + supports-color "8.1.1" + which "2.0.2" + workerpool "6.2.0" + yargs "16.2.0" + yargs-parser "20.2.4" + yargs-unparser "2.0.0" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3, ms@^2.1.1: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +multimap@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/multimap/-/multimap-1.1.0.tgz#5263febc085a1791c33b59bb3afc6a76a2a10ca8" + integrity sha512-0ZIR9PasPxGXmRsEF8jsDzndzHDj7tIav+JUmvIFB/WHswliFnquxECT/De7GR4yg99ky/NlRKJT82G1y271bw== + +mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@3.3.1: + version "3.3.1" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" + integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +natural-orderby@^2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/natural-orderby/-/natural-orderby-2.0.3.tgz#8623bc518ba162f8ff1cdb8941d74deb0fdcc016" + integrity sha512-p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q== + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-addon-api@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32" + integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA== + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@2, node-fetch@2.6.7, node-fetch@^2.2.0, node-fetch@^2.6.1, node-fetch@^2.6.6, node-fetch@^2.6.7: + version "2.6.7" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^3.2.6: + version "3.2.10" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8" + integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-forge@^1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" + integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== + +node-gyp-build@^4.2.0, node-gyp-build@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" + integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + +node-releases@^2.0.6: + version "2.0.6" + resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" + integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== + +normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: + version "2.5.0" + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-all@^4.1.5: + version "4.1.5" + resolved "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" + integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== + dependencies: + ansi-styles "^3.2.1" + chalk "^2.4.1" + cross-spawn "^6.0.5" + memorystream "^0.3.1" + minimatch "^3.0.4" + pidtree "^0.3.0" + read-pkg "^3.0.0" + shell-quote "^1.6.1" + string.prototype.padend "^3.0.0" + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +nth-check@~1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + dependencies: + boolbase "~1.0.0" + +object-assign@^4.0.1: + version "4.1.1" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-hash@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== + +object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object-treeify@^1.1.33: + version "1.1.33" + resolved "https://registry.npmjs.org/object-treeify/-/object-treeify-1.1.33.tgz#f06fece986830a3cba78ddd32d4c11d1f76cdf40" + integrity sha512-EFVjAYfzWqWsBMRHPMAXLCDIJnpMhdWAqR7xG6M6a2cs6PMFpl/+Z20w9zDW4vkxOFfddegBKq9Rehd0bxWE7A== + +object.assign@^4.1.2, object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +object.entries@^1.1.2: + version "1.1.5" + resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" + integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + +object.values@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" + integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +one-time@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz#e06bc174aed214ed58edede573b433bbf827cb45" + integrity sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g== + dependencies: + fn.name "1.x.x" + +onetime@^5.1.0, onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + 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.3" + +ora@^5.4.1: + version "5.4.1" + resolved "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== + dependencies: + bl "^4.1.0" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-spinners "^2.5.0" + is-interactive "^1.0.0" + is-unicode-supported "^0.1.0" + log-symbols "^4.1.0" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +pako@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d" + integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + 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" + +password-prompt@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz#85b2f93896c5bd9e9f2d6ff0627fa5af3dc00923" + integrity sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA== + dependencies: + ansi-escapes "^3.1.0" + cross-spawn "^6.0.5" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +pathval@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" + integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== + +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" + integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== + dependencies: + through "~2.3" + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pidtree@^0.3.0: + version "0.3.1" + resolved "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" + integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== + +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pluralize@^8.0.0: + version "8.0.0" + resolved "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" + integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prettier-linter-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== + dependencies: + fast-diff "^1.1.2" + +prettier-plugin-organize-imports@^2.3.4: + version "2.3.4" + resolved "https://registry.npmjs.org/prettier-plugin-organize-imports/-/prettier-plugin-organize-imports-2.3.4.tgz#65473861ae5ab7960439fff270a2258558fbe9ba" + integrity sha512-R8o23sf5iVL/U71h9SFUdhdOEPsi3nm42FD/oDYIZ2PQa4TNWWuWecxln6jlIQzpZTDMUeO1NicJP6lLn2TtRw== + +prettier@^2.4.1: + version "2.7.1" + resolved "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" + integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise-retry@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" + integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== + dependencies: + err-code "^2.0.2" + retry "^0.12.0" + +prompts@^2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +proto3-json-serializer@^0.1.8: + version "0.1.9" + resolved "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-0.1.9.tgz#705ddb41b009dd3e6fcd8123edd72926abf65a34" + integrity sha512-A60IisqvnuI45qNRygJjrnNjX2TMdQGMY+57tR3nul3ZgO2zXkR9OGR8AXxJhkqx84g0FTnrfi3D5fWMSdANdQ== + dependencies: + protobufjs "^6.11.2" + +protobufjs@6.11.3, protobufjs@^6.11.2, protobufjs@^6.11.3: + version "6.11.3" + resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" + integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== + dependencies: + "@protobufjs/aspromise" "^1.1.2" + "@protobufjs/base64" "^1.1.2" + "@protobufjs/codegen" "^2.0.4" + "@protobufjs/eventemitter" "^1.1.0" + "@protobufjs/fetch" "^1.1.0" + "@protobufjs/float" "^1.0.2" + "@protobufjs/inquire" "^1.1.0" + "@protobufjs/path" "^1.1.2" + "@protobufjs/pool" "^1.1.0" + "@protobufjs/utf8" "^1.1.0" + "@types/long" "^4.0.1" + "@types/node" ">=13.7.0" + long "^4.0.0" + +protobufjs@^7.0.0: + version "7.1.1" + resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-7.1.1.tgz#0117befb4b0f5a49d028e93f2ca62c3c1f5e7c65" + integrity sha512-d0nMQqS/aT3lfV8bKi9Gbg73vPd2LcDdTDOu6RE/M+h9DY8g1EmDzk3ADPccthEWfTBjkR2oxNdx9Gs8YubT+g== + dependencies: + "@protobufjs/aspromise" "^1.1.2" + "@protobufjs/base64" "^1.1.2" + "@protobufjs/codegen" "^2.0.4" + "@protobufjs/eventemitter" "^1.1.0" + "@protobufjs/fetch" "^1.1.0" + "@protobufjs/float" "^1.0.2" + "@protobufjs/inquire" "^1.1.0" + "@protobufjs/path" "^1.1.2" + "@protobufjs/pool" "^1.1.0" + "@protobufjs/utf8" "^1.1.0" + "@types/node" ">=13.7.0" + long "^5.0.0" + +ps-tree@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" + integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== + dependencies: + event-stream "=3.3.4" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +read-pkg-up@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== + dependencies: + find-up "^4.1.0" + read-pkg "^5.2.0" + type-fest "^0.8.1" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +read-pkg@^5.2.0: + version "5.2.0" + resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== + dependencies: + "@types/normalize-package-data" "^2.4.0" + normalize-package-data "^2.5.0" + parse-json "^5.0.0" + type-fest "^0.6.0" + +readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== + dependencies: + resolve "^1.1.6" + +redeyed@~2.1.0: + version "2.1.1" + resolved "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz#8984b5815d99cb220469c99eeeffe38913e6cc0b" + integrity sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ== + dependencies: + esprima "~4.0.0" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +regexp-tree@^0.1.23, regexp-tree@~0.1.1: + version "0.1.24" + resolved "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.24.tgz#3d6fa238450a4d66e5bc9c4c14bb720e2196829d" + integrity sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw== + +regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + +regexpp@^3.1.0, regexpp@^3.2.0: + version "3.2.0" + resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.20.0, resolve@^1.22.0: + version "1.22.1" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +retry-request@^4.0.0: + version "4.2.2" + resolved "https://registry.npmjs.org/retry-request/-/retry-request-4.2.2.tgz#b7d82210b6d2651ed249ba3497f07ea602f1a903" + integrity sha512-xA93uxUD/rogV7BV59agW/JHPGXeREMWiZc9jhcwY4YdZ7QOtC7qbomYg0n4wyk2lJhggjvKvhNX8wln/Aldhg== + dependencies: + debug "^4.1.1" + extend "^3.0.2" + +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rpc-websockets@^7.4.2, rpc-websockets@^7.5.0: + version "7.5.0" + resolved "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.5.0.tgz#bbeb87572e66703ff151e50af1658f98098e2748" + integrity sha512-9tIRi1uZGy7YmDjErf1Ax3wtqdSSLIlnmL5OtOzgd5eqPKbsPpwDP5whUDO2LQay3Xp0CcHlcNSGzacNRluBaQ== + dependencies: + "@babel/runtime" "^7.17.2" + eventemitter3 "^4.0.7" + uuid "^8.3.2" + ws "^8.5.0" + optionalDependencies: + bufferutil "^4.0.1" + utf-8-validate "^5.0.2" + +run-async@^2.4.0: + version "2.4.1" + resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +rxjs@^7.1.0, rxjs@^7.5.5: + version "7.5.6" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc" + integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw== + dependencies: + tslib "^2.1.0" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-regex@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz#f7128f00d056e2fe5c11e81a1324dd974aadced2" + integrity sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A== + dependencies: + regexp-tree "~0.1.1" + +safe-stable-stringify@^2.3.1: + version "2.3.1" + resolved "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz#ab67cbe1fe7d40603ca641c5e765cb942d04fc73" + integrity sha512-kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg== + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +secp256k1@^4.0.2: + version "4.0.3" + resolved "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz#c4559ecd1b8d3c1827ed2d1b94190d69ce267303" + integrity sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA== + dependencies: + elliptic "^6.5.4" + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + +"semver@2 || 3 || 4 || 5", semver@^5.5.0: + version "5.7.1" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^6.3.0: + version "6.3.0" + resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@^7.2.1, semver@^7.3.2, semver@^7.3.5, semver@^7.3.7: + version "7.3.7" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" + integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== + dependencies: + lru-cache "^6.0.0" + +serialize-javascript@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + dependencies: + randombytes "^2.1.0" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@^1.6.1: + version "1.7.3" + resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" + integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== + +shelljs@^0.8.5: + version "0.8.5" + resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" + integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +shx@^0.3.4: + version "0.3.4" + resolved "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz#74289230b4b663979167f94e1935901406e40f02" + integrity sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g== + dependencies: + minimist "^1.2.3" + shelljs "^0.8.5" + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.2, signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== + dependencies: + is-arrayish "^0.3.1" + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +source-map-support@^0.5.6: + version "0.5.21" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.12" + resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" + integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + +split@0.3: + version "0.3.3" + resolved "https://registry.npmjs.org/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== + dependencies: + through "2" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +stack-trace@0.0.x: + version "0.0.10" + resolved "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" + integrity sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg== + +start-server-and-test@^1.14.0: + version "1.14.0" + resolved "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-1.14.0.tgz#c57f04f73eac15dd51733b551d775b40837fdde3" + integrity sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw== + dependencies: + bluebird "3.7.2" + check-more-types "2.24.0" + debug "4.3.2" + execa "5.1.1" + lazy-ass "1.6.0" + ps-tree "1.2.0" + wait-on "6.0.0" + +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== + dependencies: + duplexer "~0.1.1" + +stream-shift@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" + integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== + +string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + 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" + +string.prototype.padend@^3.0.0: + version "3.1.3" + resolved "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz#997a6de12c92c7cb34dc8a201a6c53d9bd88a5f1" + integrity sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + +string.prototype.trimend@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string.prototype.trimstart@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-indent@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" + integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + dependencies: + min-indent "^1.0.0" + +strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +superstruct@^0.14.2: + version "0.14.2" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" + integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ== + +superstruct@^0.15.2: + version "0.15.5" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.15.5.tgz#0f0a8d3ce31313f0d84c6096cd4fa1bfdedc9dab" + integrity sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ== + +superstruct@^0.8.3: + version "0.8.4" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.8.4.tgz#478a19649f6b02c6319c02044db6a1f5863c391f" + integrity sha512-48Ors8IVWZm/tMr8r0Si6+mJiB7mkD7jqvIzktjJ4+EnP5tBp0qOpiM1J8sCUorKx+TXWrfb3i1UcjdD1YK/wA== + dependencies: + kind-of "^6.0.2" + tiny-invariant "^1.0.6" + +supports-color@8.1.1, supports-color@^8.1.1: + version "8.1.1" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.0.0, supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-hyperlinks@^2.2.0: + version "2.3.0" + resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" + integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== + dependencies: + has-flag "^4.0.0" + supports-color "^7.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +table@^6.0.9: + version "6.8.0" + resolved "https://registry.npmjs.org/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca" + integrity sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA== + 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" + +tar-fs@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" + 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" + +tar-stream@^2.1.4: + version "2.2.0" + resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + 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" + +text-encoding-utf-8@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13" + integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg== + +text-hex@1.0.x: + version "1.0.0" + resolved "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz#69dc9c1b17446ee79a92bf5b884bb4b9127506f5" + integrity sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg== + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +through@2, "through@>=2.2.7 <3", through@^2.3.6, through@~2.3, through@~2.3.1: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +tiny-invariant@^1.0.6, tiny-invariant@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.2.0.tgz#a1141f86b672a9148c72e978a19a73b9b94a15a9" + integrity sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg== + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toml@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" + integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +triple-beam@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" + integrity sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw== + +ts-mocha@^9.0.2: + version "9.0.2" + resolved "https://registry.npmjs.org/ts-mocha/-/ts-mocha-9.0.2.tgz#c1ef0248874d04a0f26dd9bd8d88e617a8d82ab1" + integrity sha512-WyQjvnzwrrubl0JT7EC1yWmNpcsU3fOuBFfdps30zbmFBgKniSaSOyZMZx+Wq7kytUs5CY+pEbSYEbGfIKnXTw== + dependencies: + ts-node "7.0.1" + optionalDependencies: + tsconfig-paths "^3.5.0" + +ts-node@7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-7.0.1.tgz#9562dc2d1e6d248d24bc55f773e3f614337d9baf" + integrity sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw== + dependencies: + arrify "^1.0.0" + buffer-from "^1.1.0" + diff "^3.1.0" + make-error "^1.1.1" + minimist "^1.2.0" + mkdirp "^0.5.1" + source-map-support "^0.5.6" + yn "^2.0.0" + +ts-node@^10.8.0: + version "10.9.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" + integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +tsconfig-paths@^3.14.1, tsconfig-paths@^3.5.0: + version "3.14.1" + resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" + integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^1.8.1: + version "1.14.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1, tslib@^2.4.0: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^1.0.0: + version "1.0.3" + resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596" + integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-detect@^4.0.0, type-detect@^4.0.5: + version "4.0.8" + resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +type-fest@^0.3.0: + version "0.3.1" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" + integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ== + +type-fest@^0.6.0: + version "0.6.0" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + +type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + +typescript@^4.3.2, typescript@^4.7.3: + version "4.8.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88" + integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + 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" + +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + +update-browserslist-db@^1.0.9: + version "1.0.9" + resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz#2924d3927367a38d5c555413a7ce138fc95fcb18" + integrity sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +utf-8-validate@^5.0.2: + version "5.0.9" + resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz#ba16a822fbeedff1a58918f2a6a6b36387493ea3" + integrity sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q== + dependencies: + node-gyp-build "^4.3.0" + +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +util@^0.12.0: + version "0.12.4" + resolved "https://registry.npmjs.org/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + safe-buffer "^5.1.2" + which-typed-array "^1.1.2" + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +wait-on@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/wait-on/-/wait-on-6.0.0.tgz#7e9bf8e3d7fe2daecbb7a570ac8ca41e9311c7e7" + integrity sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw== + dependencies: + axios "^0.21.1" + joi "^17.4.0" + lodash "^4.17.21" + minimist "^1.2.5" + rxjs "^7.1.0" + +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + 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" + +which-typed-array@^1.1.2: + version "1.1.8" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f" + integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.9" + +which@2.0.2, which@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +which@^1.2.9: + version "1.3.1" + resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +widest-line@^3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" + integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== + dependencies: + string-width "^4.0.0" + +winston-transport@^4.5.0: + version "4.5.0" + resolved "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz#6e7b0dd04d393171ed5e4e4905db265f7ab384fa" + integrity sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q== + dependencies: + logform "^2.3.2" + readable-stream "^3.6.0" + triple-beam "^1.3.0" + +winston@^3.8.1: + version "3.8.2" + resolved "https://registry.npmjs.org/winston/-/winston-3.8.2.tgz#56e16b34022eb4cff2638196d9646d7430fdad50" + integrity sha512-MsE1gRx1m5jdTTO9Ld/vND4krP2To+lgDoMEHGGa4HIlAUyXJtfc7CxQcGXVyz2IBpw5hbFkj2b/AtUdQwyRew== + dependencies: + "@colors/colors" "1.5.0" + "@dabh/diagnostics" "^2.0.2" + async "^3.2.3" + is-stream "^2.0.0" + logform "^2.4.0" + one-time "^1.0.0" + readable-stream "^3.4.0" + safe-stable-stringify "^2.3.1" + stack-trace "0.0.x" + triple-beam "^1.3.0" + winston-transport "^4.5.0" + +word-wrap@^1.2.3: + version "1.2.3" + resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +workerpool@6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" + integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@^7.0.0, ws@^7.4.5: + version "7.5.9" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +ws@^8.5.0: + version "8.8.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" + integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yargs-parser@20.2.4: + version "20.2.4" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" + integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-parser@^21.0.0: + version "21.1.1" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs-unparser@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" + integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== + dependencies: + camelcase "^6.0.0" + decamelize "^4.0.0" + flat "^5.0.2" + is-plain-obj "^2.1.0" + +yargs@16.2.0, yargs@^16.2.0: + version "16.2.0" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yargs@^17.0.1, yargs@^17.5.1: + version "17.5.1" + resolved "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" + integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.0.0" + +yarn@^1.22.17: + version "1.22.19" + resolved "https://registry.npmjs.org/yarn/-/yarn-1.22.19.tgz#4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447" + integrity sha512-/0V5q0WbslqnwP91tirOvldvYISzaqhClxzyUKXYxs07yUILIs5jx/k6CFe8bvKSkds5w+eiOqta39Wk3WxdcQ== + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yn@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a" + integrity sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/examples/programs/native-feed-parser/Cargo.toml b/programs/native-feed-parser/Cargo.toml similarity index 78% rename from examples/programs/native-feed-parser/Cargo.toml rename to programs/native-feed-parser/Cargo.toml index 653b67d..63e86ab 100644 --- a/examples/programs/native-feed-parser/Cargo.toml +++ b/programs/native-feed-parser/Cargo.toml @@ -11,7 +11,7 @@ name = "native_feed_parser" no-entrypoint = [] [dependencies] -# switchboard-v2 = { path = "../../../libraries/rs", features = ["devnet"] } +# switchboard-v2 = { path = "../../rust/switchboard-v2", features = ["devnet"] } switchboard-v2 = { version = "^0.1.13", features = ["devnet"] } solana-program = "~1.10.29" anchor-lang = "^0.25.0" diff --git a/examples/programs/native-feed-parser/README.md b/programs/native-feed-parser/README.md similarity index 100% rename from examples/programs/native-feed-parser/README.md rename to programs/native-feed-parser/README.md diff --git a/examples/programs/native-feed-parser/Xargo.toml b/programs/native-feed-parser/Xargo.toml similarity index 100% rename from examples/programs/native-feed-parser/Xargo.toml rename to programs/native-feed-parser/Xargo.toml diff --git a/examples/programs/native-feed-parser/package.json b/programs/native-feed-parser/package.json similarity index 100% rename from examples/programs/native-feed-parser/package.json rename to programs/native-feed-parser/package.json diff --git a/examples/programs/native-feed-parser/src/lib.rs b/programs/native-feed-parser/src/lib.rs similarity index 100% rename from examples/programs/native-feed-parser/src/lib.rs rename to programs/native-feed-parser/src/lib.rs diff --git a/examples/programs/native-feed-parser/tests/spl-feed-parser.test.ts b/programs/native-feed-parser/tests/spl-feed-parser.test.ts similarity index 100% rename from examples/programs/native-feed-parser/tests/spl-feed-parser.test.ts rename to programs/native-feed-parser/tests/spl-feed-parser.test.ts diff --git a/examples/programs/native-feed-parser/tsconfig.json b/programs/native-feed-parser/tsconfig.json similarity index 100% rename from examples/programs/native-feed-parser/tsconfig.json rename to programs/native-feed-parser/tsconfig.json diff --git a/programs/native-feed-parser/yarn.lock b/programs/native-feed-parser/yarn.lock new file mode 100644 index 0000000..de4786b --- /dev/null +++ b/programs/native-feed-parser/yarn.lock @@ -0,0 +1,3552 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/helper-validator-identifier@^7.18.6": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/highlight@^7.10.4": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/runtime@^7.10.5", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2", "@babel/runtime@^7.3.1": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259" + integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== + dependencies: + regenerator-runtime "^0.13.4" + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + 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" + +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + version "1.2.1" + resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.0" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@noble/ed25519@^1.7.0": + version "1.7.1" + resolved "https://registry.npmjs.org/@noble/ed25519/-/ed25519-1.7.1.tgz#6899660f6fbb97798a6fbd227227c4589a454724" + integrity sha512-Rk4SkJFaXZiznFyC/t77Q0NKS4FL7TLJJsVG2V2oiEq3kJVeTdxysEe/yRWSpnWMe808XRDJ+VFh5pt/FN5plw== + +"@noble/hashes@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183" + integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA== + +"@noble/secp256k1@^1.6.3": + version "1.7.0" + resolved "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.0.tgz#d15357f7c227e751d90aa06b05a0e5cf993ba8c1" + integrity sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw== + +"@orca-so/aquafarm@^0.0.12": + version "0.0.12" + resolved "https://registry.npmjs.org/@orca-so/aquafarm/-/aquafarm-0.0.12.tgz#255df50e9d8a408cebf600ee3507ff650484e94c" + integrity sha512-4vEkxeI5A5NHR9wre7Dtp9MYPCnke4v2PkaIv7933S490PErCYeqrlDPIEBTAKYWJpHFz5jR+h0bPFbmdMs3kw== + dependencies: + "@solana/spl-token" "^0.1.6" + "@solana/web3.js" "^1.20.0" + "@types/bn.js" "^5.1.0" + bn.js "^5.2.0" + buffer-layout "^1.2.1" + decimal.js "^10.3.0" + dotenv "^10.0.0" + eslint "^7.28.0" + mz "^2.7.0" + prompts "^2.4.1" + typescript "^4.3.2" + yargs "^17.0.1" + +"@orca-so/sdk@^1.2.24": + version "1.2.25" + resolved "https://registry.npmjs.org/@orca-so/sdk/-/sdk-1.2.25.tgz#3c00acb032567067a6d79528bb587b7057e183e8" + integrity sha512-9m4F9GgqNpK69IJ9SBg1//L471AO2X3cvG54jtM24sMIvMNiLiebdIrODLKIHyHcMouspK1qPTN20L64ymu8Bw== + dependencies: + "@orca-so/aquafarm" "^0.0.12" + "@orca-so/stablecurve" "^1.0.5" + "@solana/spl-token" "^0.1.5" + "@solana/spl-token-swap" "^0.1.2" + "@solana/web3.js" "^1.24.1" + decimal.js "^10.3.1" + +"@orca-so/stablecurve@^1.0.5": + version "1.0.6" + resolved "https://registry.npmjs.org/@orca-so/stablecurve/-/stablecurve-1.0.6.tgz#bff0d4c701e4361196ffb0fc641904e6d17df295" + integrity sha512-uZD1jVvOBxyuij4a5C2QT7Mv4m9lMABY/MvAz1xHnK+iJ5pkmSFdYEWzQZUrf8ElCRTYSN9yk7Kb18UmGZnT5g== + dependencies: + "@solana/spl-token" "^0.0.13" + bn.js "^5.1.3" + decimal.js "^10.2.1" + +"@project-serum/anchor@^0.24.2": + version "0.24.2" + resolved "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.24.2.tgz#a3c52a99605c80735f446ca9b3a4885034731004" + integrity sha512-0/718g8/DnEuwAidUwh5wLYphUYXhUbiClkuRNhvNoa+1Y8a4g2tJyxoae+emV+PG/Gikd/QUBNMkIcimiIRTA== + dependencies: + "@project-serum/borsh" "^0.2.5" + "@solana/web3.js" "^1.36.0" + base64-js "^1.5.1" + bn.js "^5.1.2" + bs58 "^4.0.1" + buffer-layout "^1.2.2" + camelcase "^5.3.1" + cross-fetch "^3.1.5" + crypto-hash "^1.3.0" + eventemitter3 "^4.0.7" + js-sha256 "^0.9.0" + pako "^2.0.3" + snake-case "^3.0.4" + toml "^3.0.0" + +"@project-serum/borsh@^0.2.5": + version "0.2.5" + resolved "https://registry.npmjs.org/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663" + integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q== + dependencies: + bn.js "^5.1.2" + buffer-layout "^1.2.0" + +"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" + integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== + +"@protobufjs/base64@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" + integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== + +"@protobufjs/codegen@^2.0.4": + version "2.0.4" + resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" + integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== + +"@protobufjs/eventemitter@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" + integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== + +"@protobufjs/fetch@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" + integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== + dependencies: + "@protobufjs/aspromise" "^1.1.1" + "@protobufjs/inquire" "^1.1.0" + +"@protobufjs/float@^1.0.2": + version "1.0.2" + resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" + integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== + +"@protobufjs/inquire@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" + integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== + +"@protobufjs/path@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" + integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== + +"@protobufjs/pool@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" + integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== + +"@protobufjs/utf8@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" + integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== + +"@saberhq/option-utils@^1.14.6": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/option-utils/-/option-utils-1.14.6.tgz#c48e4afb9d9a030e2b676beeeb2481c6529d3eb9" + integrity sha512-85IMZiYzSf3H7/ZYty+I5JW6EYGJQ8lmRri+wVuhmLtDX+E/iqEBeoS+ns56ZcyfRGl7nsuUriWnJamNz9ekBQ== + dependencies: + tslib "^2.4.0" + +"@saberhq/solana-contrib@^1.14.6": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/solana-contrib/-/solana-contrib-1.14.6.tgz#3fe36ace42b94f5c3f75a60b6b32d010d8b21f93" + integrity sha512-lPnzWgAk+xAYtssvLUTc6e6r0czJaMAqCZ2p7I7DsEFBpWgEzj6Tw7rYMXk1pmwgxg48vGWzBZK/aw+m7ccn1A== + dependencies: + "@saberhq/option-utils" "^1.14.6" + "@solana/buffer-layout" "^4.0.0" + "@types/promise-retry" "^1.1.3" + "@types/retry" "^0.12.2" + promise-retry "^2.0.1" + retry "^0.13.1" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@saberhq/token-utils@^1.13.32": + version "1.14.6" + resolved "https://registry.npmjs.org/@saberhq/token-utils/-/token-utils-1.14.6.tgz#6d36c053f61834405ccf395b958a258eba9ea45b" + integrity sha512-jfGUS+tb+WVJUMAOfXdYICzTWhaKRcaZN5km9os7cRHAAXTYNZTgFFRThuiuobBAe30SpnJB052rAQE0x0c2iA== + dependencies: + "@saberhq/solana-contrib" "^1.14.6" + "@solana/buffer-layout" "^4.0.0" + "@solana/spl-token" "^0.1.8" + "@ubeswap/token-math" "^5.2.0" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.0": + version "3.0.0" + resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" + integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@solana/buffer-layout-utils@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz#b45a6cab3293a2eb7597cceb474f229889d875ca" + integrity sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.32.0" + bigint-buffer "^1.1.5" + bignumber.js "^9.0.1" + +"@solana/buffer-layout@^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.0.tgz#75b1b11adc487234821c81dfae3119b73a5fd734" + integrity sha512-lR0EMP2HC3+Mxwd4YcnZb0smnaDw7Bl2IQWZiTevRH5ZZBZn6VRWn3/92E3qdU4SSImJkA6IDHawOHAnx/qUvQ== + dependencies: + buffer "~6.0.3" + +"@solana/spl-governance@^0.0.34": + version "0.0.34" + resolved "https://registry.npmjs.org/@solana/spl-governance/-/spl-governance-0.0.34.tgz#c61d81d356dbcee961bbc85e5d3538846fea57ad" + integrity sha512-tZppBiiVkUa5v+B/Ds+TqZ4yxR/vaIYLRxBk7x6R22dwk4/9SU87bVE60kRdDqTdMzqScFxIMdhaGl/fCX533A== + dependencies: + "@solana/web3.js" "^1.22.0" + bignumber.js "^9.0.1" + bn.js "^5.1.3" + borsh "^0.3.1" + bs58 "^4.0.1" + superstruct "^0.15.2" + +"@solana/spl-token-swap@^0.1.2": + version "0.1.4" + resolved "https://registry.npmjs.org/@solana/spl-token-swap/-/spl-token-swap-0.1.4.tgz#f776d97c37987c85ad9374afe5c91be2069fb7b4" + integrity sha512-q0vHo1m6UwqXTpKM4sk/gnPk8BopPJ+qx+qXkx0pMGiBep/66MAj7Drx186xStyqEXVuXtvgPEPIEREVJDKt/w== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/web3.js" "^1.42.0" + bn.js "^5.1.3" + +"@solana/spl-token-v2@npm:@solana/spl-token@^0.2.0": + version "0.2.0" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.2.0.tgz#329bb6babb5de0f9c40035ddb1657f01a8347acd" + integrity sha512-RWcn31OXtdqIxmkzQfB2R+WpsJOVS6rKuvpxJFjvik2LyODd+WN58ZP3Rpjpro03fscGAkzlFuP3r42doRJgyQ== + dependencies: + "@solana/buffer-layout" "^4.0.0" + "@solana/buffer-layout-utils" "^0.2.0" + "@solana/web3.js" "^1.32.0" + start-server-and-test "^1.14.0" + +"@solana/spl-token@^0.0.13": + version "0.0.13" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.0.13.tgz#5e0b235b1f8b34643280401dbfddeb34d13d1acd" + integrity sha512-WT8M9V/hxURR5jLbhr3zgwVsgcY6m8UhHtK045w7o+jx8FJ9MKARkj387WBFU7mKiFq0k8jw/8YL7XmnIUuH8Q== + dependencies: + "@babel/runtime" "^7.10.5" + "@solana/web3.js" "^0.86.1" + bn.js "^5.0.0" + buffer-layout "^1.2.0" + dotenv "8.2.0" + mkdirp "1.0.4" + +"@solana/spl-token@^0.1.5", "@solana/spl-token@^0.1.6", "@solana/spl-token@^0.1.8": + version "0.1.8" + resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.1.8.tgz#f06e746341ef8d04165e21fc7f555492a2a0faa6" + integrity sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ== + dependencies: + "@babel/runtime" "^7.10.5" + "@solana/web3.js" "^1.21.0" + bn.js "^5.1.0" + buffer "6.0.3" + buffer-layout "^1.2.0" + dotenv "10.0.0" + +"@solana/web3.js@^0.86.1": + version "0.86.4" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-0.86.4.tgz#69216d3928ca4727c25a1ea96c405e897156ac3b" + integrity sha512-FpabDmdyxBN5aHIVUWc9Q6pXJFWiLRm/xeyxFg9O9ICHjiUkd38omds7G0CAmykIccG7zaMziwtkXp+0KvQOhA== + dependencies: + "@babel/runtime" "^7.3.1" + bn.js "^5.0.0" + bs58 "^4.0.1" + buffer "^5.4.3" + buffer-layout "^1.2.0" + crypto-hash "^1.2.2" + esdoc-inject-style-plugin "^1.0.0" + jayson "^3.0.1" + keccak "^3.0.1" + mz "^2.7.0" + node-fetch "^2.2.0" + npm-run-all "^4.1.5" + rpc-websockets "^7.4.2" + secp256k1 "^4.0.2" + superstruct "^0.8.3" + tweetnacl "^1.0.0" + ws "^7.0.0" + +"@solana/web3.js@^1.20.0", "@solana/web3.js@^1.21.0", "@solana/web3.js@^1.22.0", "@solana/web3.js@^1.24.1", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.42.0", "@solana/web3.js@^1.43.5", "@solana/web3.js@^1.44.3": + version "1.62.0" + resolved "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz#8fef9fd443217161ddc25e701f603222047bc520" + integrity sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA== + dependencies: + "@babel/runtime" "^7.12.5" + "@noble/ed25519" "^1.7.0" + "@noble/hashes" "^1.1.2" + "@noble/secp256k1" "^1.6.3" + "@solana/buffer-layout" "^4.0.0" + bigint-buffer "^1.1.5" + bn.js "^5.0.0" + borsh "^0.7.0" + bs58 "^4.0.1" + buffer "6.0.1" + fast-stable-stringify "^1.0.0" + jayson "^3.4.4" + node-fetch "2" + rpc-websockets "^7.5.0" + superstruct "^0.14.2" + +"@switchboard-xyz/common@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@switchboard-xyz/common/-/common-2.0.0.tgz#8c3551b3611c4a2348c46879c0ab2ea188a1f753" + integrity sha512-hC7J7NShGQHjWaCU7+w6tEtZ3KljxMIKJe5IaxPxD+cgdxhx58UMjngyevaCcle33aPyFZ/tbpm0tU2ZqzqZtQ== + dependencies: + big.js "^6.2.1" + bn.js "^5.2.1" + protobufjs "^6.11.3" + +"@switchboard-xyz/sbv2-utils@^0.1.43": + version "0.1.46" + resolved "https://registry.npmjs.org/@switchboard-xyz/sbv2-utils/-/sbv2-utils-0.1.46.tgz#385f52f38db925213c6f247a5d548196d83a0631" + integrity sha512-QHIiQHaPCOtLwV3To1Y/dpzi2tHXyVYZnEaKhOMcKLngqmNnJamUWDdJDrEk0pP23DOlIdqonYRbS5/UvnGHcA== + dependencies: + "@orca-so/sdk" "^1.2.24" + "@project-serum/anchor" "^0.24.2" + "@saberhq/token-utils" "^1.13.32" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.43.5" + "@switchboard-xyz/common" "^2.0.0" + "@switchboard-xyz/switchboard-v2" "^0.0.133" + big.js "^6.2.1" + bn.js "^5.2.1" + chalk "4" + decimal.js "^10.3.1" + dotenv "^16.0.1" + mocha "^9.1.1" + toml "^3.0.0" + +"@switchboard-xyz/switchboard-v2@^0.0.130": + version "0.0.130" + resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.130.tgz#f7ff912dde01d8d5201270c397a11db7ce0e5c50" + integrity sha512-eXcxJ6ll/xXbTgxcLgC7oQ28Vfx08hOHypcdREwGUf48Ass944gIb0HdFXR2nogNST4JzYoul/R+wlk5M4KL0w== + dependencies: + "@project-serum/anchor" "^0.24.2" + "@solana/spl-governance" "^0.0.34" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.44.3" + assert "^2.0.0" + big.js "^6.2.0" + bs58 "^5.0.0" + chan "^0.6.1" + crypto-js "^4.0.0" + glob "^8.0.3" + long "^4.0.0" + mocha "^9.1.1" + node-fetch "^3.2.6" + protobufjs "^6.11.3" + +"@switchboard-xyz/switchboard-v2@^0.0.133": + version "0.0.133" + resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.133.tgz#2e239188bc9eb2e26d75042edf3031de0d7ea7cd" + integrity sha512-Vr+CFELv6vkGaKTVJSvmm1z+v8TZ+PYZj51+ZeZx7QUo8/iiCkbdWGe4yWYIaBxplFqH3B2Bbmjd9szgCmgyig== + dependencies: + "@project-serum/anchor" "^0.24.2" + "@solana/spl-governance" "^0.0.34" + "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" + "@solana/web3.js" "^1.44.3" + "@switchboard-xyz/common" "^2.0.0" + assert "^2.0.0" + big.js "^6.2.0" + bs58 "^5.0.0" + chan "^0.6.1" + crypto-js "^4.0.0" + glob "^8.0.3" + long "^4.0.0" + mocha "^9.1.1" + node-fetch "^3.2.6" + +"@tsconfig/node10@^1.0.7": + version "1.0.9" + resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" + integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" + integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== + +"@types/big.js@^6.1.6": + version "6.1.6" + resolved "https://registry.npmjs.org/@types/big.js/-/big.js-6.1.6.tgz#3d417e758483d55345a03a087f7e0c87137ca444" + integrity sha512-0r9J+Zz9rYm2hOTwiMAVkm3XFQ4u5uTK37xrQMhc9bysn/sf/okzovWMYYIBMFTn/yrEZ11pusgLEaoarTlQbA== + +"@types/bn.js@^4.11.5": + version "4.11.6" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c" + integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== + dependencies: + "@types/node" "*" + +"@types/bn.js@^5.1.0": + version "5.1.1" + resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz#b51e1b55920a4ca26e9285ff79936bbdec910682" + integrity sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g== + dependencies: + "@types/node" "*" + +"@types/chai@^4.3.0": + version "4.3.3" + resolved "https://registry.npmjs.org/@types/chai/-/chai-4.3.3.tgz#3c90752792660c4b562ad73b3fbd68bf3bc7ae07" + integrity sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g== + +"@types/connect@^3.4.33": + version "3.4.35" + resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/long@^4.0.1": + version "4.0.2" + resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" + integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== + +"@types/mocha@^9.0.0": + version "9.1.1" + resolved "https://registry.npmjs.org/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4" + integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw== + +"@types/node@*", "@types/node@>=13.7.0": + version "18.7.18" + resolved "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz#633184f55c322e4fb08612307c274ee6d5ed3154" + integrity sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg== + +"@types/node@^12.12.54": + version "12.20.55" + resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + +"@types/node@^17.0.45": + version "17.0.45" + resolved "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" + integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== + +"@types/promise-retry@^1.1.3": + version "1.1.3" + resolved "https://registry.npmjs.org/@types/promise-retry/-/promise-retry-1.1.3.tgz#baab427419da9088a1d2f21bf56249c21b3dd43c" + integrity sha512-LxIlEpEX6frE3co3vCO2EUJfHIta1IOmhDlcAsR4GMMv9hev1iTI9VwberVGkePJAuLZs5rMucrV8CziCfuJMw== + dependencies: + "@types/retry" "*" + +"@types/retry@*", "@types/retry@^0.12.2": + version "0.12.2" + resolved "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz#ed279a64fa438bb69f2480eda44937912bb7480a" + integrity sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow== + +"@types/ws@^7.4.4": + version "7.4.7" + resolved "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" + integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== + dependencies: + "@types/node" "*" + +"@ubeswap/token-math@^5.2.0": + version "5.2.1" + resolved "https://registry.npmjs.org/@ubeswap/token-math/-/token-math-5.2.1.tgz#66e70ba8d65b5fdb1b7459332fbdad4ddec32a64" + integrity sha512-wkIKDKIl6rml4CVK3fvjjLVk55Z8qEYTgjxZx7MnrTwECazyhiDuekb9WAaDPXcW5QNffCu8uv4Ba8wE96CJsg== + dependencies: + "@types/big.js" "^6.1.6" + big.js "^6.2.1" + decimal.js-light "^2.5.1" + tiny-invariant "^1.2.0" + tslib "^2.4.0" + +"@ungap/promise-all-settled@1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" + integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== + +JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +acorn-jsx@^5.3.1: + version "5.3.2" + resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^8.1.1: + version "8.2.0" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^7.4.0: + version "7.4.1" + resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +acorn@^8.4.1: + version "8.8.0" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" + integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== + +ajv@^6.10.0, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + 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" + +ajv@^8.0.1: + version "8.11.0" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" + integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ansi-colors@4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-colors@^4.1.1: + version "4.1.3" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +arrify@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + +assert@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== + dependencies: + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" + +assertion-error@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" + integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-x@^3.0.2: + version "3.0.9" + resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" + integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== + dependencies: + safe-buffer "^5.0.1" + +base-x@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz#d0e3b7753450c73f8ad2389b5c018a4af7b2224a" + integrity sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw== + +base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +big.js@^6.2.0, big.js@^6.2.1: + version "6.2.1" + resolved "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz#7205ce763efb17c2e41f26f121c420c6a7c2744f" + integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== + +bigint-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442" + integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA== + dependencies: + bindings "^1.3.0" + +bignumber.js@^9.0.1: + version "9.1.0" + resolved "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62" + integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.3.0: + version "1.5.0" + resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bluebird@3.7.2: + version "3.7.2" + resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.0.0, bn.js@^5.1.0, bn.js@^5.1.2, bn.js@^5.1.3, bn.js@^5.2.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +borsh@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.3.1.tgz#c31c3a149610e37913deada80e89073fb15cf55b" + integrity sha512-gJoSTnhwLxN/i2+15Y7uprU8h3CKI+Co4YKZKvrGYUy0FwHWM20x5Sx7eU8Xv4HQqV+7rb4r3P7K1cBIQe3q8A== + dependencies: + "@types/bn.js" "^4.11.5" + bn.js "^5.0.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +borsh@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a" + integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA== + dependencies: + bn.js "^5.2.0" + bs58 "^4.0.0" + text-encoding-utf-8 "^1.0.2" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +bs58@^4.0.0, bs58@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" + integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== + dependencies: + base-x "^3.0.2" + +bs58@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz#865575b4d13c09ea2a84622df6c8cbeb54ffc279" + integrity sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ== + dependencies: + base-x "^4.0.0" + +buffer-from@^1.0.0, buffer-from@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer-layout@^1.2.0, buffer-layout@^1.2.1, buffer-layout@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/buffer-layout/-/buffer-layout-1.2.2.tgz#b9814e7c7235783085f9ca4966a0cfff112259d5" + integrity sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA== + +buffer@6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2" + integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@6.0.3, buffer@~6.0.3: + version "6.0.3" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@^5.4.3: + version "5.7.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +bufferutil@^4.0.1: + version "4.0.6" + resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" + integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== + dependencies: + node-gyp-build "^4.3.0" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +chai@^4.3.6: + version "4.3.6" + resolved "https://registry.npmjs.org/chai/-/chai-4.3.6.tgz#ffe4ba2d9fa9d6680cc0b370adae709ec9011e9c" + integrity sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q== + dependencies: + assertion-error "^1.1.0" + check-error "^1.0.2" + deep-eql "^3.0.1" + get-func-name "^2.0.0" + loupe "^2.3.1" + pathval "^1.1.1" + type-detect "^4.0.5" + +chalk@4, chalk@^4.0.0, chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^2.0.0, chalk@^2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + 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" + +chan@^0.6.1: + version "0.6.1" + resolved "https://registry.npmjs.org/chan/-/chan-0.6.1.tgz#ec0ad132e5bc62c27ef10ccbfc4d8dcd8ca00640" + integrity sha512-/TdBP2UhbBmw7qnqkzo9Mk4rzvwRv4dlNPXFerqWy90T8oBspKagJNZxrDbExKHhx9uXXHjo3f9mHgs9iKO3nQ== + +check-error@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" + integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== + +check-more-types@2.24.0: + version "2.24.0" + resolved "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== + +cheerio@0.22.0: + version "0.22.0" + resolved "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" + integrity sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA== + dependencies: + css-select "~1.2.0" + dom-serializer "~0.1.0" + entities "~1.1.1" + htmlparser2 "^3.9.1" + lodash.assignin "^4.0.9" + lodash.bind "^4.1.4" + lodash.defaults "^4.0.1" + lodash.filter "^4.4.0" + lodash.flatten "^4.2.0" + lodash.foreach "^4.3.0" + lodash.map "^4.4.0" + lodash.merge "^4.4.0" + lodash.pick "^4.2.1" + lodash.reduce "^4.4.0" + lodash.reject "^4.4.0" + lodash.some "^4.4.0" + +chokidar@3.5.3: + version "3.5.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + 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" + optionalDependencies: + fsevents "~2.3.2" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +commander@^2.20.3: + version "2.20.3" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-fetch@^3.1.5: + version "3.1.5" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" + integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== + dependencies: + node-fetch "2.6.7" + +cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-hash@^1.2.2, crypto-hash@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247" + integrity sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg== + +crypto-js@^4.0.0: + version "4.1.1" + resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" + integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== + +css-select@~1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + integrity sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA== + dependencies: + boolbase "~1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "~1.0.1" + +css-what@2.1: + version "2.1.3" + resolved "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" + integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== + +data-uri-to-buffer@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" + integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== + +debug@4.3.2: + version "4.3.2" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + +debug@4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + +debug@^4.0.1, debug@^4.1.1: + version "4.3.4" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +decamelize@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" + integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== + +decimal.js-light@^2.5.1: + version "2.5.1" + resolved "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz#134fd32508f19e208f4fb2f8dac0d2626a867934" + integrity sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg== + +decimal.js@^10.2.1, decimal.js@^10.3.0, decimal.js@^10.3.1: + version "10.4.0" + resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.0.tgz#97a7448873b01e92e5ff9117d89a7bca8e63e0fe" + integrity sha512-Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg== + +deep-eql@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" + integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== + dependencies: + type-detect "^4.0.0" + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== + +diff@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" + integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== + +diff@^3.1.0: + version "3.5.0" + resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-serializer@0: + version "0.2.2" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@~0.1.0: + version "0.1.1" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" + integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== + dependencies: + domelementtype "^1.3.0" + entities "^1.1.1" + +domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domelementtype@^2.0.1: + version "2.3.0" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^2.3.0: + version "2.4.2" + resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" + integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== + dependencies: + domelementtype "1" + +domutils@1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + integrity sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw== + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^1.5.1: + version "1.7.0" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dotenv@10.0.0, dotenv@^10.0.0: + version "10.0.0" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== + +dotenv@8.2.0: + version "8.2.0" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" + integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== + +dotenv@^16.0.1: + version "16.0.2" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz#0b0f8652c016a3858ef795024508cddc4bffc5bf" + integrity sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA== + +duplexer@~0.1.1: + version "0.1.2" + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +elliptic@^6.5.4: + version "6.5.4" + resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +enquirer@^2.3.5: + version "2.3.6" + resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + dependencies: + ansi-colors "^4.1.1" + +entities@^1.1.1, entities@~1.1.1: + version "1.1.2" + resolved "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" + integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +err-code@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.5, es-abstract@^1.20.0: + version "1.20.2" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3" + integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.2" + get-symbol-description "^1.0.0" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + is-callable "^1.2.4" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + string.prototype.trimend "^1.0.5" + string.prototype.trimstart "^1.0.5" + unbox-primitive "^1.0.2" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ== + dependencies: + es6-promise "^4.0.3" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +esdoc-inject-style-plugin@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/esdoc-inject-style-plugin/-/esdoc-inject-style-plugin-1.0.0.tgz#a13597368bb9fb89c365e066495caf97a4decbb1" + integrity sha512-LqSGr3YKe+vY2u6TCp9K+EEt97S78KjdJUz5PXyitHkp4nGXRSZq2ftEQJioF/WtTeGYWeQLzNAM9LihIlisqg== + dependencies: + cheerio "0.22.0" + fs-extra "1.0.0" + +eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint@^7.28.0: + version "7.32.0" + resolved "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + 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" + +espree@^7.3.0, espree@^7.3.1: + version "7.3.1" + resolved "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" + integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== + dependencies: + acorn "^7.4.0" + acorn-jsx "^5.3.1" + eslint-visitor-keys "^1.3.0" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +event-stream@=3.3.4: + version "3.3.4" + resolved "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +eventemitter3@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +execa@5.1.1: + version "5.1.1" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + 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" + +eyes@^0.1.8: + version "0.1.8" + resolved "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + integrity sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fast-stable-stringify@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" + integrity sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag== + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +flatted@^3.1.0: + version "3.2.7" + resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== + +follow-redirects@^1.14.0: + version "1.15.2" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +from@~0: + version "0.1.7" + resolved "https://registry.npmjs.org/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" + integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== + +fs-extra@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" + integrity sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== + +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-func-name@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" + integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@7.2.0: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^8.0.3: + version "8.0.3" + resolved "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" + integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +globals@^13.6.0, globals@^13.9.0: + version "13.17.0" + resolved "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" + integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== + dependencies: + type-fest "^0.20.2" + +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: + version "4.2.10" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +growl@1.10.5: + version "1.10.5" + resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +htmlparser2@^3.9.1: + version "3.10.1" + resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" + integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== + dependencies: + domelementtype "^1.3.1" + domhandler "^2.3.0" + domutils "^1.5.1" + entities "^1.1.1" + inherits "^2.0.1" + readable-stream "^3.1.1" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +ieee754@^1.1.13, ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: + version "1.2.6" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz#fd6170b0b8c7e2cc73de342ef8284a2202023c44" + integrity sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q== + +is-core-module@^2.9.0: + version "2.10.0" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" + integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-nan@^1.2.1: + version "1.3.2" + resolved "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.3, is-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67" + integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isomorphic-ws@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" + integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== + +jayson@^3.0.1, jayson@^3.4.4: + version "3.7.0" + resolved "https://registry.npmjs.org/jayson/-/jayson-3.7.0.tgz#b735b12d06d348639ae8230d7a1e2916cb078f25" + integrity sha512-tfy39KJMrrXJ+mFcMpxwBvFDetS8LAID93+rycFglIQM4kl3uNR3W4lBLE/FFhsoUCEox5Dt2adVpDm/XtebbQ== + dependencies: + "@types/connect" "^3.4.33" + "@types/node" "^12.12.54" + "@types/ws" "^7.4.4" + JSONStream "^1.3.5" + commander "^2.20.3" + delay "^5.0.0" + es6-promisify "^5.0.0" + eyes "^0.1.8" + isomorphic-ws "^4.0.1" + json-stringify-safe "^5.0.1" + lodash "^4.17.20" + uuid "^8.3.2" + ws "^7.4.5" + +joi@^17.4.0: + version "17.6.0" + resolved "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2" + integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.0" + "@sideway/pinpoint" "^2.0.0" + +js-sha256@^0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" + integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA== + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json-stringify-safe@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + integrity sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +keccak@^3.0.1: + version "3.0.2" + resolved "https://registry.npmjs.org/keccak/-/keccak-3.0.2.tgz#4c2c6e8c54e04f2670ee49fa734eb9da152206e0" + integrity sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ== + dependencies: + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + readable-stream "^3.6.0" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + integrity sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw== + optionalDependencies: + graceful-fs "^4.1.9" + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +lazy-ass@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.assignin@^4.0.9: + version "4.2.0" + resolved "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" + integrity sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg== + +lodash.bind@^4.1.4: + version "4.2.1" + resolved "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" + integrity sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA== + +lodash.defaults@^4.0.1: + version "4.2.0" + resolved "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" + integrity sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ== + +lodash.filter@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" + integrity sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ== + +lodash.flatten@^4.2.0: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" + integrity sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g== + +lodash.foreach@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" + integrity sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ== + +lodash.map@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" + integrity sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q== + +lodash.merge@^4.4.0, lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.pick@^4.2.1: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" + integrity sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q== + +lodash.reduce@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" + integrity sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw== + +lodash.reject@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" + integrity sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ== + +lodash.some@^4.4.0: + version "4.6.0" + resolved "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" + integrity sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ== + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== + +lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +long@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" + integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== + +loupe@^2.3.1: + version "2.3.4" + resolved "https://registry.npmjs.org/loupe/-/loupe-2.3.4.tgz#7e0b9bffc76f148f9be769cb1321d3dcf3cb25f3" + integrity sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ== + dependencies: + get-func-name "^2.0.0" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== + +memorystream@^0.3.1: + version "0.3.1" + resolved "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" + integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + +minimatch@4.2.1: + version "4.2.1" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz#40d9d511a46bdc4e563c22c3080cde9c0d8299b4" + integrity sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1: + version "5.1.0" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: + version "1.2.6" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +mkdirp@1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mkdirp@^0.5.1: + version "0.5.6" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +mocha@^9.0.3, mocha@^9.1.1: + version "9.2.2" + resolved "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz#d70db46bdb93ca57402c809333e5a84977a88fb9" + integrity sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g== + dependencies: + "@ungap/promise-all-settled" "1.1.2" + ansi-colors "4.1.1" + browser-stdout "1.3.1" + chokidar "3.5.3" + debug "4.3.3" + diff "5.0.0" + escape-string-regexp "4.0.0" + find-up "5.0.0" + glob "7.2.0" + growl "1.10.5" + he "1.2.0" + js-yaml "4.1.0" + log-symbols "4.1.0" + minimatch "4.2.1" + ms "2.1.3" + nanoid "3.3.1" + serialize-javascript "6.0.0" + strip-json-comments "3.1.1" + supports-color "8.1.1" + which "2.0.2" + workerpool "6.2.0" + yargs "16.2.0" + yargs-parser "20.2.4" + yargs-unparser "2.0.0" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@3.3.1: + version "3.3.1" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" + integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-addon-api@^2.0.0: + version "2.0.2" + resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32" + integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA== + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@2, node-fetch@2.6.7, node-fetch@^2.2.0: + version "2.6.7" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^3.2.6: + version "3.2.10" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8" + integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-gyp-build@^4.2.0, node-gyp-build@^4.3.0: + version "4.5.0" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" + integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + +normalize-package-data@^2.3.2: + version "2.5.0" + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-all@^4.1.5: + version "4.1.5" + resolved "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" + integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== + dependencies: + ansi-styles "^3.2.1" + chalk "^2.4.1" + cross-spawn "^6.0.5" + memorystream "^0.3.1" + minimatch "^3.0.4" + pidtree "^0.3.0" + read-pkg "^3.0.0" + shell-quote "^1.6.1" + string.prototype.padend "^3.0.0" + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +nth-check@~1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + dependencies: + boolbase "~1.0.0" + +object-assign@^4.0.1: + version "4.1.1" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + 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.3" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +pako@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d" + integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +pathval@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" + integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== + +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" + integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== + dependencies: + through "~2.3" + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.3.1" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pidtree@^0.3.0: + version "0.3.1" + resolved "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" + integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise-retry@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" + integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== + dependencies: + err-code "^2.0.2" + retry "^0.12.0" + +prompts@^2.4.1: + version "2.4.2" + resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +protobufjs@^6.11.3: + version "6.11.3" + resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" + integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== + dependencies: + "@protobufjs/aspromise" "^1.1.2" + "@protobufjs/base64" "^1.1.2" + "@protobufjs/codegen" "^2.0.4" + "@protobufjs/eventemitter" "^1.1.0" + "@protobufjs/fetch" "^1.1.0" + "@protobufjs/float" "^1.0.2" + "@protobufjs/inquire" "^1.1.0" + "@protobufjs/path" "^1.1.2" + "@protobufjs/pool" "^1.1.0" + "@protobufjs/utf8" "^1.1.0" + "@types/long" "^4.0.1" + "@types/node" ">=13.7.0" + long "^4.0.0" + +ps-tree@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" + integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== + dependencies: + event-stream "=3.3.4" + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +readable-stream@^3.1.1, readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + +regexpp@^3.1.0: + version "3.2.0" + resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve@^1.10.0: + version "1.22.1" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rpc-websockets@^7.4.2, rpc-websockets@^7.5.0: + version "7.5.0" + resolved "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.5.0.tgz#bbeb87572e66703ff151e50af1658f98098e2748" + integrity sha512-9tIRi1uZGy7YmDjErf1Ax3wtqdSSLIlnmL5OtOzgd5eqPKbsPpwDP5whUDO2LQay3Xp0CcHlcNSGzacNRluBaQ== + dependencies: + "@babel/runtime" "^7.17.2" + eventemitter3 "^4.0.7" + uuid "^8.3.2" + ws "^8.5.0" + optionalDependencies: + bufferutil "^4.0.1" + utf-8-validate "^5.0.2" + +rxjs@^7.1.0: + version "7.5.6" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc" + integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw== + dependencies: + tslib "^2.1.0" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +secp256k1@^4.0.2: + version "4.0.3" + resolved "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz#c4559ecd1b8d3c1827ed2d1b94190d69ce267303" + integrity sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA== + dependencies: + elliptic "^6.5.4" + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + +"semver@2 || 3 || 4 || 5", semver@^5.5.0: + version "5.7.1" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^7.2.1: + version "7.3.7" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" + integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== + dependencies: + lru-cache "^6.0.0" + +serialize-javascript@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + dependencies: + randombytes "^2.1.0" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@^1.6.1: + version "1.7.3" + resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" + integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +source-map-support@^0.5.6: + version "0.5.21" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0: + version "0.6.1" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.12" + resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" + integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + +split@0.3: + version "0.3.3" + resolved "https://registry.npmjs.org/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== + dependencies: + through "2" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +start-server-and-test@^1.14.0: + version "1.14.0" + resolved "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-1.14.0.tgz#c57f04f73eac15dd51733b551d775b40837fdde3" + integrity sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw== + dependencies: + bluebird "3.7.2" + check-more-types "2.24.0" + debug "4.3.2" + execa "5.1.1" + lazy-ass "1.6.0" + ps-tree "1.2.0" + wait-on "6.0.0" + +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== + dependencies: + duplexer "~0.1.1" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + 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" + +string.prototype.padend@^3.0.0: + version "3.1.3" + resolved "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz#997a6de12c92c7cb34dc8a201a6c53d9bd88a5f1" + integrity sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + +string.prototype.trimend@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string.prototype.trimstart@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +superstruct@^0.14.2: + version "0.14.2" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" + integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ== + +superstruct@^0.15.2: + version "0.15.5" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.15.5.tgz#0f0a8d3ce31313f0d84c6096cd4fa1bfdedc9dab" + integrity sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ== + +superstruct@^0.8.3: + version "0.8.4" + resolved "https://registry.npmjs.org/superstruct/-/superstruct-0.8.4.tgz#478a19649f6b02c6319c02044db6a1f5863c391f" + integrity sha512-48Ors8IVWZm/tMr8r0Si6+mJiB7mkD7jqvIzktjJ4+EnP5tBp0qOpiM1J8sCUorKx+TXWrfb3i1UcjdD1YK/wA== + dependencies: + kind-of "^6.0.2" + tiny-invariant "^1.0.6" + +supports-color@8.1.1: + version "8.1.1" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +table@^6.0.9: + version "6.8.0" + resolved "https://registry.npmjs.org/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca" + integrity sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA== + 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" + +text-encoding-utf-8@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13" + integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg== + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +through@2, "through@>=2.2.7 <3", through@~2.3, through@~2.3.1: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +tiny-invariant@^1.0.6, tiny-invariant@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.2.0.tgz#a1141f86b672a9148c72e978a19a73b9b94a15a9" + integrity sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toml@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" + integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +ts-mocha@^9.0.2: + version "9.0.2" + resolved "https://registry.npmjs.org/ts-mocha/-/ts-mocha-9.0.2.tgz#c1ef0248874d04a0f26dd9bd8d88e617a8d82ab1" + integrity sha512-WyQjvnzwrrubl0JT7EC1yWmNpcsU3fOuBFfdps30zbmFBgKniSaSOyZMZx+Wq7kytUs5CY+pEbSYEbGfIKnXTw== + dependencies: + ts-node "7.0.1" + optionalDependencies: + tsconfig-paths "^3.5.0" + +ts-node@7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-7.0.1.tgz#9562dc2d1e6d248d24bc55f773e3f614337d9baf" + integrity sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw== + dependencies: + arrify "^1.0.0" + buffer-from "^1.1.0" + diff "^3.1.0" + make-error "^1.1.1" + minimist "^1.2.0" + mkdirp "^0.5.1" + source-map-support "^0.5.6" + yn "^2.0.0" + +ts-node@^10.4.0: + version "10.9.1" + resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" + integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +tsconfig-paths@^3.5.0: + version "3.14.1" + resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" + integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + +tweetnacl@^1.0.0: + version "1.0.3" + resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596" + integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-detect@^4.0.0, type-detect@^4.0.5: + version "4.0.8" + resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +typescript@^4.3.2, typescript@^4.7: + version "4.8.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88" + integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + 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" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +utf-8-validate@^5.0.2: + version "5.0.9" + resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz#ba16a822fbeedff1a58918f2a6a6b36387493ea3" + integrity sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q== + dependencies: + node-gyp-build "^4.3.0" + +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +util@^0.12.0: + version "0.12.4" + resolved "https://registry.npmjs.org/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + safe-buffer "^5.1.2" + which-typed-array "^1.1.2" + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +wait-on@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/wait-on/-/wait-on-6.0.0.tgz#7e9bf8e3d7fe2daecbb7a570ac8ca41e9311c7e7" + integrity sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw== + dependencies: + axios "^0.21.1" + joi "^17.4.0" + lodash "^4.17.21" + minimist "^1.2.5" + rxjs "^7.1.0" + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + 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" + +which-typed-array@^1.1.2: + version "1.1.8" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f" + integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.9" + +which@2.0.2, which@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +which@^1.2.9: + version "1.3.1" + resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +word-wrap@^1.2.3: + version "1.2.3" + resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +workerpool@6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" + integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@^7.0.0, ws@^7.4.5: + version "7.5.9" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +ws@^8.5.0: + version "8.8.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" + integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yargs-parser@20.2.4: + version "20.2.4" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" + integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-parser@^21.0.0: + version "21.1.1" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs-unparser@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" + integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== + dependencies: + camelcase "^6.0.0" + decamelize "^4.0.0" + flat "^5.0.2" + is-plain-obj "^2.1.0" + +yargs@16.2.0: + version "16.2.0" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yargs@^17.0.1: + version "17.5.1" + resolved "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" + integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.0.0" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yn@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a" + integrity sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/libraries/sbv2-utils/LICENSE b/python/switchboardpy/LICENSE similarity index 100% rename from libraries/sbv2-utils/LICENSE rename to python/switchboardpy/LICENSE diff --git a/libraries/py/README.md b/python/switchboardpy/README.md similarity index 100% rename from libraries/py/README.md rename to python/switchboardpy/README.md diff --git a/libraries/py/example.py b/python/switchboardpy/example.py similarity index 100% rename from libraries/py/example.py rename to python/switchboardpy/example.py diff --git a/libraries/py/poetry.lock b/python/switchboardpy/poetry.lock similarity index 100% rename from libraries/py/poetry.lock rename to python/switchboardpy/poetry.lock diff --git a/libraries/py/pyproject.toml b/python/switchboardpy/pyproject.toml similarity index 100% rename from libraries/py/pyproject.toml rename to python/switchboardpy/pyproject.toml diff --git a/libraries/py/switchboard_v2.devnet.parsed.json b/python/switchboardpy/switchboard_v2.devnet.parsed.json similarity index 100% rename from libraries/py/switchboard_v2.devnet.parsed.json rename to python/switchboardpy/switchboard_v2.devnet.parsed.json diff --git a/libraries/py/switchboard_v2.mainnet.parsed.json b/python/switchboardpy/switchboard_v2.mainnet.parsed.json similarity index 100% rename from libraries/py/switchboard_v2.mainnet.parsed.json rename to python/switchboardpy/switchboard_v2.mainnet.parsed.json diff --git a/libraries/py/switchboardpy/__init__.py b/python/switchboardpy/switchboardpy/__init__.py similarity index 100% rename from libraries/py/switchboardpy/__init__.py rename to python/switchboardpy/switchboardpy/__init__.py diff --git a/libraries/py/switchboardpy/aggregator.py b/python/switchboardpy/switchboardpy/aggregator.py similarity index 100% rename from libraries/py/switchboardpy/aggregator.py rename to python/switchboardpy/switchboardpy/aggregator.py diff --git a/libraries/py/switchboardpy/common.py b/python/switchboardpy/switchboardpy/common.py similarity index 100% rename from libraries/py/switchboardpy/common.py rename to python/switchboardpy/switchboardpy/common.py diff --git a/libraries/py/switchboardpy/compiled.py b/python/switchboardpy/switchboardpy/compiled.py similarity index 100% rename from libraries/py/switchboardpy/compiled.py rename to python/switchboardpy/switchboardpy/compiled.py diff --git a/libraries/py/switchboardpy/crank.py b/python/switchboardpy/switchboardpy/crank.py similarity index 100% rename from libraries/py/switchboardpy/crank.py rename to python/switchboardpy/switchboardpy/crank.py diff --git a/libraries/py/switchboardpy/generated/__init__.py b/python/switchboardpy/switchboardpy/generated/__init__.py similarity index 100% rename from libraries/py/switchboardpy/generated/__init__.py rename to python/switchboardpy/switchboardpy/generated/__init__.py diff --git a/libraries/py/switchboardpy/generated/accounts/__init__.py b/python/switchboardpy/switchboardpy/generated/accounts/__init__.py similarity index 100% rename from libraries/py/switchboardpy/generated/accounts/__init__.py rename to python/switchboardpy/switchboardpy/generated/accounts/__init__.py diff --git a/libraries/py/switchboardpy/generated/accounts/aggregator_account_data.py b/python/switchboardpy/switchboardpy/generated/accounts/aggregator_account_data.py similarity index 100% rename from libraries/py/switchboardpy/generated/accounts/aggregator_account_data.py rename to python/switchboardpy/switchboardpy/generated/accounts/aggregator_account_data.py diff --git a/libraries/py/switchboardpy/generated/accounts/crank_account_data.py b/python/switchboardpy/switchboardpy/generated/accounts/crank_account_data.py similarity index 100% rename from libraries/py/switchboardpy/generated/accounts/crank_account_data.py rename to python/switchboardpy/switchboardpy/generated/accounts/crank_account_data.py diff --git a/libraries/py/switchboardpy/generated/accounts/job_account_data.py b/python/switchboardpy/switchboardpy/generated/accounts/job_account_data.py similarity index 100% rename from libraries/py/switchboardpy/generated/accounts/job_account_data.py rename to python/switchboardpy/switchboardpy/generated/accounts/job_account_data.py diff --git a/libraries/py/switchboardpy/generated/accounts/lease_account_data.py b/python/switchboardpy/switchboardpy/generated/accounts/lease_account_data.py similarity index 100% rename from libraries/py/switchboardpy/generated/accounts/lease_account_data.py rename to python/switchboardpy/switchboardpy/generated/accounts/lease_account_data.py diff --git a/libraries/py/switchboardpy/generated/accounts/oracle_account_data.py b/python/switchboardpy/switchboardpy/generated/accounts/oracle_account_data.py similarity index 100% rename from libraries/py/switchboardpy/generated/accounts/oracle_account_data.py rename to python/switchboardpy/switchboardpy/generated/accounts/oracle_account_data.py diff --git a/libraries/py/switchboardpy/generated/accounts/oracle_queue_account_data.py b/python/switchboardpy/switchboardpy/generated/accounts/oracle_queue_account_data.py similarity index 100% rename from libraries/py/switchboardpy/generated/accounts/oracle_queue_account_data.py rename to python/switchboardpy/switchboardpy/generated/accounts/oracle_queue_account_data.py diff --git a/libraries/py/switchboardpy/generated/accounts/permission_account_data.py b/python/switchboardpy/switchboardpy/generated/accounts/permission_account_data.py similarity index 100% rename from libraries/py/switchboardpy/generated/accounts/permission_account_data.py rename to python/switchboardpy/switchboardpy/generated/accounts/permission_account_data.py diff --git a/libraries/py/switchboardpy/generated/accounts/sb_state.py b/python/switchboardpy/switchboardpy/generated/accounts/sb_state.py similarity index 100% rename from libraries/py/switchboardpy/generated/accounts/sb_state.py rename to python/switchboardpy/switchboardpy/generated/accounts/sb_state.py diff --git a/libraries/py/switchboardpy/generated/accounts/vrf_account_data.py b/python/switchboardpy/switchboardpy/generated/accounts/vrf_account_data.py similarity index 100% rename from libraries/py/switchboardpy/generated/accounts/vrf_account_data.py rename to python/switchboardpy/switchboardpy/generated/accounts/vrf_account_data.py diff --git a/libraries/py/switchboardpy/generated/errors/__init__.py b/python/switchboardpy/switchboardpy/generated/errors/__init__.py similarity index 100% rename from libraries/py/switchboardpy/generated/errors/__init__.py rename to python/switchboardpy/switchboardpy/generated/errors/__init__.py diff --git a/libraries/py/switchboardpy/generated/errors/anchor.py b/python/switchboardpy/switchboardpy/generated/errors/anchor.py similarity index 100% rename from libraries/py/switchboardpy/generated/errors/anchor.py rename to python/switchboardpy/switchboardpy/generated/errors/anchor.py diff --git a/libraries/py/switchboardpy/generated/errors/custom.py b/python/switchboardpy/switchboardpy/generated/errors/custom.py similarity index 100% rename from libraries/py/switchboardpy/generated/errors/custom.py rename to python/switchboardpy/switchboardpy/generated/errors/custom.py diff --git a/libraries/py/switchboardpy/generated/instructions/__init__.py b/python/switchboardpy/switchboardpy/generated/instructions/__init__.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/__init__.py rename to python/switchboardpy/switchboardpy/generated/instructions/__init__.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_add_job.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_add_job.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_add_job.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_add_job.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_init.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_init.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_init.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_init.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_lock.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_lock.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_lock.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_lock.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_open_round.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_open_round.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_open_round.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_open_round.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_remove_job.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_remove_job.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_remove_job.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_remove_job.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_save_result.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_save_result.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_save_result.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_save_result.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_set_authority.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_authority.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_set_authority.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_authority.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_set_batch_size.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_batch_size.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_set_batch_size.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_batch_size.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_set_history_buffer.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_history_buffer.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_set_history_buffer.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_history_buffer.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_set_min_jobs.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_min_jobs.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_set_min_jobs.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_min_jobs.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_set_min_oracles.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_min_oracles.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_set_min_oracles.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_min_oracles.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_set_queue.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_queue.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_set_queue.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_queue.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_set_update_interval.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_update_interval.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_set_update_interval.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_update_interval.py diff --git a/libraries/py/switchboardpy/generated/instructions/aggregator_set_variance_threshold.py b/python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_variance_threshold.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/aggregator_set_variance_threshold.py rename to python/switchboardpy/switchboardpy/generated/instructions/aggregator_set_variance_threshold.py diff --git a/libraries/py/switchboardpy/generated/instructions/crank_init.py b/python/switchboardpy/switchboardpy/generated/instructions/crank_init.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/crank_init.py rename to python/switchboardpy/switchboardpy/generated/instructions/crank_init.py diff --git a/libraries/py/switchboardpy/generated/instructions/crank_pop.py b/python/switchboardpy/switchboardpy/generated/instructions/crank_pop.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/crank_pop.py rename to python/switchboardpy/switchboardpy/generated/instructions/crank_pop.py diff --git a/libraries/py/switchboardpy/generated/instructions/crank_push.py b/python/switchboardpy/switchboardpy/generated/instructions/crank_push.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/crank_push.py rename to python/switchboardpy/switchboardpy/generated/instructions/crank_push.py diff --git a/libraries/py/switchboardpy/generated/instructions/job_init.py b/python/switchboardpy/switchboardpy/generated/instructions/job_init.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/job_init.py rename to python/switchboardpy/switchboardpy/generated/instructions/job_init.py diff --git a/libraries/py/switchboardpy/generated/instructions/lease_extend.py b/python/switchboardpy/switchboardpy/generated/instructions/lease_extend.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/lease_extend.py rename to python/switchboardpy/switchboardpy/generated/instructions/lease_extend.py diff --git a/libraries/py/switchboardpy/generated/instructions/lease_init.py b/python/switchboardpy/switchboardpy/generated/instructions/lease_init.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/lease_init.py rename to python/switchboardpy/switchboardpy/generated/instructions/lease_init.py diff --git a/libraries/py/switchboardpy/generated/instructions/lease_set_authority.py b/python/switchboardpy/switchboardpy/generated/instructions/lease_set_authority.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/lease_set_authority.py rename to python/switchboardpy/switchboardpy/generated/instructions/lease_set_authority.py diff --git a/libraries/py/switchboardpy/generated/instructions/lease_withdraw.py b/python/switchboardpy/switchboardpy/generated/instructions/lease_withdraw.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/lease_withdraw.py rename to python/switchboardpy/switchboardpy/generated/instructions/lease_withdraw.py diff --git a/libraries/py/switchboardpy/generated/instructions/oracle_heartbeat.py b/python/switchboardpy/switchboardpy/generated/instructions/oracle_heartbeat.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/oracle_heartbeat.py rename to python/switchboardpy/switchboardpy/generated/instructions/oracle_heartbeat.py diff --git a/libraries/py/switchboardpy/generated/instructions/oracle_init.py b/python/switchboardpy/switchboardpy/generated/instructions/oracle_init.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/oracle_init.py rename to python/switchboardpy/switchboardpy/generated/instructions/oracle_init.py diff --git a/libraries/py/switchboardpy/generated/instructions/oracle_queue_init.py b/python/switchboardpy/switchboardpy/generated/instructions/oracle_queue_init.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/oracle_queue_init.py rename to python/switchboardpy/switchboardpy/generated/instructions/oracle_queue_init.py diff --git a/libraries/py/switchboardpy/generated/instructions/oracle_queue_set_rewards.py b/python/switchboardpy/switchboardpy/generated/instructions/oracle_queue_set_rewards.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/oracle_queue_set_rewards.py rename to python/switchboardpy/switchboardpy/generated/instructions/oracle_queue_set_rewards.py diff --git a/libraries/py/switchboardpy/generated/instructions/oracle_queue_vrf_config.py b/python/switchboardpy/switchboardpy/generated/instructions/oracle_queue_vrf_config.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/oracle_queue_vrf_config.py rename to python/switchboardpy/switchboardpy/generated/instructions/oracle_queue_vrf_config.py diff --git a/libraries/py/switchboardpy/generated/instructions/oracle_withdraw.py b/python/switchboardpy/switchboardpy/generated/instructions/oracle_withdraw.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/oracle_withdraw.py rename to python/switchboardpy/switchboardpy/generated/instructions/oracle_withdraw.py diff --git a/libraries/py/switchboardpy/generated/instructions/permission_init.py b/python/switchboardpy/switchboardpy/generated/instructions/permission_init.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/permission_init.py rename to python/switchboardpy/switchboardpy/generated/instructions/permission_init.py diff --git a/libraries/py/switchboardpy/generated/instructions/permission_set.py b/python/switchboardpy/switchboardpy/generated/instructions/permission_set.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/permission_set.py rename to python/switchboardpy/switchboardpy/generated/instructions/permission_set.py diff --git a/libraries/py/switchboardpy/generated/instructions/program_config.py b/python/switchboardpy/switchboardpy/generated/instructions/program_config.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/program_config.py rename to python/switchboardpy/switchboardpy/generated/instructions/program_config.py diff --git a/libraries/py/switchboardpy/generated/instructions/program_init.py b/python/switchboardpy/switchboardpy/generated/instructions/program_init.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/program_init.py rename to python/switchboardpy/switchboardpy/generated/instructions/program_init.py diff --git a/libraries/py/switchboardpy/generated/instructions/vault_transfer.py b/python/switchboardpy/switchboardpy/generated/instructions/vault_transfer.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/vault_transfer.py rename to python/switchboardpy/switchboardpy/generated/instructions/vault_transfer.py diff --git a/libraries/py/switchboardpy/generated/instructions/vrf_init.py b/python/switchboardpy/switchboardpy/generated/instructions/vrf_init.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/vrf_init.py rename to python/switchboardpy/switchboardpy/generated/instructions/vrf_init.py diff --git a/libraries/py/switchboardpy/generated/instructions/vrf_prove.py b/python/switchboardpy/switchboardpy/generated/instructions/vrf_prove.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/vrf_prove.py rename to python/switchboardpy/switchboardpy/generated/instructions/vrf_prove.py diff --git a/libraries/py/switchboardpy/generated/instructions/vrf_prove_and_verify.py b/python/switchboardpy/switchboardpy/generated/instructions/vrf_prove_and_verify.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/vrf_prove_and_verify.py rename to python/switchboardpy/switchboardpy/generated/instructions/vrf_prove_and_verify.py diff --git a/libraries/py/switchboardpy/generated/instructions/vrf_request_randomness.py b/python/switchboardpy/switchboardpy/generated/instructions/vrf_request_randomness.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/vrf_request_randomness.py rename to python/switchboardpy/switchboardpy/generated/instructions/vrf_request_randomness.py diff --git a/libraries/py/switchboardpy/generated/instructions/vrf_verify.py b/python/switchboardpy/switchboardpy/generated/instructions/vrf_verify.py similarity index 100% rename from libraries/py/switchboardpy/generated/instructions/vrf_verify.py rename to python/switchboardpy/switchboardpy/generated/instructions/vrf_verify.py diff --git a/libraries/py/switchboardpy/generated/program_id.py b/python/switchboardpy/switchboardpy/generated/program_id.py similarity index 100% rename from libraries/py/switchboardpy/generated/program_id.py rename to python/switchboardpy/switchboardpy/generated/program_id.py diff --git a/libraries/py/switchboardpy/generated/types/__init__.py b/python/switchboardpy/switchboardpy/generated/types/__init__.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/__init__.py rename to python/switchboardpy/switchboardpy/generated/types/__init__.py diff --git a/libraries/py/switchboardpy/generated/types/account_meta_borsh.py b/python/switchboardpy/switchboardpy/generated/types/account_meta_borsh.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/account_meta_borsh.py rename to python/switchboardpy/switchboardpy/generated/types/account_meta_borsh.py diff --git a/libraries/py/switchboardpy/generated/types/account_meta_zc.py b/python/switchboardpy/switchboardpy/generated/types/account_meta_zc.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/account_meta_zc.py rename to python/switchboardpy/switchboardpy/generated/types/account_meta_zc.py diff --git a/libraries/py/switchboardpy/generated/types/aggregator_history_row.py b/python/switchboardpy/switchboardpy/generated/types/aggregator_history_row.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/aggregator_history_row.py rename to python/switchboardpy/switchboardpy/generated/types/aggregator_history_row.py diff --git a/libraries/py/switchboardpy/generated/types/aggregator_init_params.py b/python/switchboardpy/switchboardpy/generated/types/aggregator_init_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/aggregator_init_params.py rename to python/switchboardpy/switchboardpy/generated/types/aggregator_init_params.py diff --git a/libraries/py/switchboardpy/generated/types/aggregator_open_round_params.py b/python/switchboardpy/switchboardpy/generated/types/aggregator_open_round_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/aggregator_open_round_params.py rename to python/switchboardpy/switchboardpy/generated/types/aggregator_open_round_params.py diff --git a/libraries/py/switchboardpy/generated/types/aggregator_remove_job_params.py b/python/switchboardpy/switchboardpy/generated/types/aggregator_remove_job_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/aggregator_remove_job_params.py rename to python/switchboardpy/switchboardpy/generated/types/aggregator_remove_job_params.py diff --git a/libraries/py/switchboardpy/generated/types/aggregator_round.py b/python/switchboardpy/switchboardpy/generated/types/aggregator_round.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/aggregator_round.py rename to python/switchboardpy/switchboardpy/generated/types/aggregator_round.py diff --git a/libraries/py/switchboardpy/generated/types/aggregator_save_result_params.py b/python/switchboardpy/switchboardpy/generated/types/aggregator_save_result_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/aggregator_save_result_params.py rename to python/switchboardpy/switchboardpy/generated/types/aggregator_save_result_params.py diff --git a/libraries/py/switchboardpy/generated/types/aggregator_set_batch_size_params.py b/python/switchboardpy/switchboardpy/generated/types/aggregator_set_batch_size_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/aggregator_set_batch_size_params.py rename to python/switchboardpy/switchboardpy/generated/types/aggregator_set_batch_size_params.py diff --git a/libraries/py/switchboardpy/generated/types/aggregator_set_min_jobs_params.py b/python/switchboardpy/switchboardpy/generated/types/aggregator_set_min_jobs_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/aggregator_set_min_jobs_params.py rename to python/switchboardpy/switchboardpy/generated/types/aggregator_set_min_jobs_params.py diff --git a/libraries/py/switchboardpy/generated/types/aggregator_set_min_oracles_params.py b/python/switchboardpy/switchboardpy/generated/types/aggregator_set_min_oracles_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/aggregator_set_min_oracles_params.py rename to python/switchboardpy/switchboardpy/generated/types/aggregator_set_min_oracles_params.py diff --git a/libraries/py/switchboardpy/generated/types/aggregator_set_update_interval_params.py b/python/switchboardpy/switchboardpy/generated/types/aggregator_set_update_interval_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/aggregator_set_update_interval_params.py rename to python/switchboardpy/switchboardpy/generated/types/aggregator_set_update_interval_params.py diff --git a/libraries/py/switchboardpy/generated/types/aggregator_set_variance_threshold_params.py b/python/switchboardpy/switchboardpy/generated/types/aggregator_set_variance_threshold_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/aggregator_set_variance_threshold_params.py rename to python/switchboardpy/switchboardpy/generated/types/aggregator_set_variance_threshold_params.py diff --git a/libraries/py/switchboardpy/generated/types/borsh_decimal.py b/python/switchboardpy/switchboardpy/generated/types/borsh_decimal.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/borsh_decimal.py rename to python/switchboardpy/switchboardpy/generated/types/borsh_decimal.py diff --git a/libraries/py/switchboardpy/generated/types/callback.py b/python/switchboardpy/switchboardpy/generated/types/callback.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/callback.py rename to python/switchboardpy/switchboardpy/generated/types/callback.py diff --git a/libraries/py/switchboardpy/generated/types/callback_zc.py b/python/switchboardpy/switchboardpy/generated/types/callback_zc.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/callback_zc.py rename to python/switchboardpy/switchboardpy/generated/types/callback_zc.py diff --git a/libraries/py/switchboardpy/generated/types/completed_point_zc.py b/python/switchboardpy/switchboardpy/generated/types/completed_point_zc.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/completed_point_zc.py rename to python/switchboardpy/switchboardpy/generated/types/completed_point_zc.py diff --git a/libraries/py/switchboardpy/generated/types/crank_init_params.py b/python/switchboardpy/switchboardpy/generated/types/crank_init_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/crank_init_params.py rename to python/switchboardpy/switchboardpy/generated/types/crank_init_params.py diff --git a/libraries/py/switchboardpy/generated/types/crank_pop_params.py b/python/switchboardpy/switchboardpy/generated/types/crank_pop_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/crank_pop_params.py rename to python/switchboardpy/switchboardpy/generated/types/crank_pop_params.py diff --git a/libraries/py/switchboardpy/generated/types/crank_push_params.py b/python/switchboardpy/switchboardpy/generated/types/crank_push_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/crank_push_params.py rename to python/switchboardpy/switchboardpy/generated/types/crank_push_params.py diff --git a/libraries/py/switchboardpy/generated/types/crank_row.py b/python/switchboardpy/switchboardpy/generated/types/crank_row.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/crank_row.py rename to python/switchboardpy/switchboardpy/generated/types/crank_row.py diff --git a/libraries/py/switchboardpy/generated/types/ecvrf_intermediate.py b/python/switchboardpy/switchboardpy/generated/types/ecvrf_intermediate.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/ecvrf_intermediate.py rename to python/switchboardpy/switchboardpy/generated/types/ecvrf_intermediate.py diff --git a/libraries/py/switchboardpy/generated/types/ecvrf_proof_zc.py b/python/switchboardpy/switchboardpy/generated/types/ecvrf_proof_zc.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/ecvrf_proof_zc.py rename to python/switchboardpy/switchboardpy/generated/types/ecvrf_proof_zc.py diff --git a/libraries/py/switchboardpy/generated/types/edwards_point_zc.py b/python/switchboardpy/switchboardpy/generated/types/edwards_point_zc.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/edwards_point_zc.py rename to python/switchboardpy/switchboardpy/generated/types/edwards_point_zc.py diff --git a/libraries/py/switchboardpy/generated/types/field_element_zc.py b/python/switchboardpy/switchboardpy/generated/types/field_element_zc.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/field_element_zc.py rename to python/switchboardpy/switchboardpy/generated/types/field_element_zc.py diff --git a/libraries/py/switchboardpy/generated/types/hash.py b/python/switchboardpy/switchboardpy/generated/types/hash.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/hash.py rename to python/switchboardpy/switchboardpy/generated/types/hash.py diff --git a/libraries/py/switchboardpy/generated/types/job_init_params.py b/python/switchboardpy/switchboardpy/generated/types/job_init_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/job_init_params.py rename to python/switchboardpy/switchboardpy/generated/types/job_init_params.py diff --git a/libraries/py/switchboardpy/generated/types/lanes.py b/python/switchboardpy/switchboardpy/generated/types/lanes.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/lanes.py rename to python/switchboardpy/switchboardpy/generated/types/lanes.py diff --git a/libraries/py/switchboardpy/generated/types/lease_extend_params.py b/python/switchboardpy/switchboardpy/generated/types/lease_extend_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/lease_extend_params.py rename to python/switchboardpy/switchboardpy/generated/types/lease_extend_params.py diff --git a/libraries/py/switchboardpy/generated/types/lease_init_params.py b/python/switchboardpy/switchboardpy/generated/types/lease_init_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/lease_init_params.py rename to python/switchboardpy/switchboardpy/generated/types/lease_init_params.py diff --git a/libraries/py/switchboardpy/generated/types/lease_withdraw_params.py b/python/switchboardpy/switchboardpy/generated/types/lease_withdraw_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/lease_withdraw_params.py rename to python/switchboardpy/switchboardpy/generated/types/lease_withdraw_params.py diff --git a/libraries/py/switchboardpy/generated/types/oracle_heartbeat_params.py b/python/switchboardpy/switchboardpy/generated/types/oracle_heartbeat_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/oracle_heartbeat_params.py rename to python/switchboardpy/switchboardpy/generated/types/oracle_heartbeat_params.py diff --git a/libraries/py/switchboardpy/generated/types/oracle_init_params.py b/python/switchboardpy/switchboardpy/generated/types/oracle_init_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/oracle_init_params.py rename to python/switchboardpy/switchboardpy/generated/types/oracle_init_params.py diff --git a/libraries/py/switchboardpy/generated/types/oracle_metrics.py b/python/switchboardpy/switchboardpy/generated/types/oracle_metrics.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/oracle_metrics.py rename to python/switchboardpy/switchboardpy/generated/types/oracle_metrics.py diff --git a/libraries/py/switchboardpy/generated/types/oracle_queue_init_params.py b/python/switchboardpy/switchboardpy/generated/types/oracle_queue_init_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/oracle_queue_init_params.py rename to python/switchboardpy/switchboardpy/generated/types/oracle_queue_init_params.py diff --git a/libraries/py/switchboardpy/generated/types/oracle_queue_set_rewards_params.py b/python/switchboardpy/switchboardpy/generated/types/oracle_queue_set_rewards_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/oracle_queue_set_rewards_params.py rename to python/switchboardpy/switchboardpy/generated/types/oracle_queue_set_rewards_params.py diff --git a/libraries/py/switchboardpy/generated/types/oracle_queue_vrf_config_params.py b/python/switchboardpy/switchboardpy/generated/types/oracle_queue_vrf_config_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/oracle_queue_vrf_config_params.py rename to python/switchboardpy/switchboardpy/generated/types/oracle_queue_vrf_config_params.py diff --git a/libraries/py/switchboardpy/generated/types/oracle_response_type.py b/python/switchboardpy/switchboardpy/generated/types/oracle_response_type.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/oracle_response_type.py rename to python/switchboardpy/switchboardpy/generated/types/oracle_response_type.py diff --git a/libraries/py/switchboardpy/generated/types/oracle_withdraw_params.py b/python/switchboardpy/switchboardpy/generated/types/oracle_withdraw_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/oracle_withdraw_params.py rename to python/switchboardpy/switchboardpy/generated/types/oracle_withdraw_params.py diff --git a/libraries/py/switchboardpy/generated/types/permission_init_params.py b/python/switchboardpy/switchboardpy/generated/types/permission_init_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/permission_init_params.py rename to python/switchboardpy/switchboardpy/generated/types/permission_init_params.py diff --git a/libraries/py/switchboardpy/generated/types/permission_set_params.py b/python/switchboardpy/switchboardpy/generated/types/permission_set_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/permission_set_params.py rename to python/switchboardpy/switchboardpy/generated/types/permission_set_params.py diff --git a/libraries/py/switchboardpy/generated/types/program_config_params.py b/python/switchboardpy/switchboardpy/generated/types/program_config_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/program_config_params.py rename to python/switchboardpy/switchboardpy/generated/types/program_config_params.py diff --git a/libraries/py/switchboardpy/generated/types/program_init_params.py b/python/switchboardpy/switchboardpy/generated/types/program_init_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/program_init_params.py rename to python/switchboardpy/switchboardpy/generated/types/program_init_params.py diff --git a/libraries/py/switchboardpy/generated/types/projective_point_zc.py b/python/switchboardpy/switchboardpy/generated/types/projective_point_zc.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/projective_point_zc.py rename to python/switchboardpy/switchboardpy/generated/types/projective_point_zc.py diff --git a/libraries/py/switchboardpy/generated/types/scalar.py b/python/switchboardpy/switchboardpy/generated/types/scalar.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/scalar.py rename to python/switchboardpy/switchboardpy/generated/types/scalar.py diff --git a/libraries/py/switchboardpy/generated/types/shuffle.py b/python/switchboardpy/switchboardpy/generated/types/shuffle.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/shuffle.py rename to python/switchboardpy/switchboardpy/generated/types/shuffle.py diff --git a/libraries/py/switchboardpy/generated/types/switchboard_decimal.py b/python/switchboardpy/switchboardpy/generated/types/switchboard_decimal.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/switchboard_decimal.py rename to python/switchboardpy/switchboardpy/generated/types/switchboard_decimal.py diff --git a/libraries/py/switchboardpy/generated/types/switchboard_permission.py b/python/switchboardpy/switchboardpy/generated/types/switchboard_permission.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/switchboard_permission.py rename to python/switchboardpy/switchboardpy/generated/types/switchboard_permission.py diff --git a/libraries/py/switchboardpy/generated/types/vault_transfer_params.py b/python/switchboardpy/switchboardpy/generated/types/vault_transfer_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/vault_transfer_params.py rename to python/switchboardpy/switchboardpy/generated/types/vault_transfer_params.py diff --git a/libraries/py/switchboardpy/generated/types/vrf_builder.py b/python/switchboardpy/switchboardpy/generated/types/vrf_builder.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/vrf_builder.py rename to python/switchboardpy/switchboardpy/generated/types/vrf_builder.py diff --git a/libraries/py/switchboardpy/generated/types/vrf_init_params.py b/python/switchboardpy/switchboardpy/generated/types/vrf_init_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/vrf_init_params.py rename to python/switchboardpy/switchboardpy/generated/types/vrf_init_params.py diff --git a/libraries/py/switchboardpy/generated/types/vrf_prove_and_verify_params.py b/python/switchboardpy/switchboardpy/generated/types/vrf_prove_and_verify_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/vrf_prove_and_verify_params.py rename to python/switchboardpy/switchboardpy/generated/types/vrf_prove_and_verify_params.py diff --git a/libraries/py/switchboardpy/generated/types/vrf_prove_params.py b/python/switchboardpy/switchboardpy/generated/types/vrf_prove_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/vrf_prove_params.py rename to python/switchboardpy/switchboardpy/generated/types/vrf_prove_params.py diff --git a/libraries/py/switchboardpy/generated/types/vrf_request_randomness_params.py b/python/switchboardpy/switchboardpy/generated/types/vrf_request_randomness_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/vrf_request_randomness_params.py rename to python/switchboardpy/switchboardpy/generated/types/vrf_request_randomness_params.py diff --git a/libraries/py/switchboardpy/generated/types/vrf_round.py b/python/switchboardpy/switchboardpy/generated/types/vrf_round.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/vrf_round.py rename to python/switchboardpy/switchboardpy/generated/types/vrf_round.py diff --git a/libraries/py/switchboardpy/generated/types/vrf_status.py b/python/switchboardpy/switchboardpy/generated/types/vrf_status.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/vrf_status.py rename to python/switchboardpy/switchboardpy/generated/types/vrf_status.py diff --git a/libraries/py/switchboardpy/generated/types/vrf_verify_params.py b/python/switchboardpy/switchboardpy/generated/types/vrf_verify_params.py similarity index 100% rename from libraries/py/switchboardpy/generated/types/vrf_verify_params.py rename to python/switchboardpy/switchboardpy/generated/types/vrf_verify_params.py diff --git a/libraries/py/switchboardpy/job.py b/python/switchboardpy/switchboardpy/job.py similarity index 100% rename from libraries/py/switchboardpy/job.py rename to python/switchboardpy/switchboardpy/job.py diff --git a/libraries/py/switchboardpy/lease.py b/python/switchboardpy/switchboardpy/lease.py similarity index 100% rename from libraries/py/switchboardpy/lease.py rename to python/switchboardpy/switchboardpy/lease.py diff --git a/libraries/py/switchboardpy/oracle.py b/python/switchboardpy/switchboardpy/oracle.py similarity index 100% rename from libraries/py/switchboardpy/oracle.py rename to python/switchboardpy/switchboardpy/oracle.py diff --git a/libraries/py/switchboardpy/oraclequeue.py b/python/switchboardpy/switchboardpy/oraclequeue.py similarity index 100% rename from libraries/py/switchboardpy/oraclequeue.py rename to python/switchboardpy/switchboardpy/oraclequeue.py diff --git a/libraries/py/switchboardpy/permission.py b/python/switchboardpy/switchboardpy/permission.py similarity index 100% rename from libraries/py/switchboardpy/permission.py rename to python/switchboardpy/switchboardpy/permission.py diff --git a/libraries/py/switchboardpy/program.py b/python/switchboardpy/switchboardpy/program.py similarity index 100% rename from libraries/py/switchboardpy/program.py rename to python/switchboardpy/switchboardpy/program.py diff --git a/libraries/py/switchboardpy/vrf.py b/python/switchboardpy/switchboardpy/vrf.py similarity index 100% rename from libraries/py/switchboardpy/vrf.py rename to python/switchboardpy/switchboardpy/vrf.py diff --git a/libraries/py/tests/OracleJobFields.py b/python/switchboardpy/tests/OracleJobFields.py similarity index 100% rename from libraries/py/tests/OracleJobFields.py rename to python/switchboardpy/tests/OracleJobFields.py diff --git a/libraries/py/tests/__init__.py b/python/switchboardpy/tests/__init__.py similarity index 100% rename from libraries/py/tests/__init__.py rename to python/switchboardpy/tests/__init__.py diff --git a/libraries/py/tests/test_aggregator.py b/python/switchboardpy/tests/test_aggregator.py similarity index 100% rename from libraries/py/tests/test_aggregator.py rename to python/switchboardpy/tests/test_aggregator.py diff --git a/libraries/py/tests/test_crank.py b/python/switchboardpy/tests/test_crank.py similarity index 100% rename from libraries/py/tests/test_crank.py rename to python/switchboardpy/tests/test_crank.py diff --git a/libraries/py/tests/test_create_feed.py b/python/switchboardpy/tests/test_create_feed.py similarity index 100% rename from libraries/py/tests/test_create_feed.py rename to python/switchboardpy/tests/test_create_feed.py diff --git a/libraries/py/tests/test_create_feed_aver.py b/python/switchboardpy/tests/test_create_feed_aver.py similarity index 100% rename from libraries/py/tests/test_create_feed_aver.py rename to python/switchboardpy/tests/test_create_feed_aver.py diff --git a/libraries/py/tests/test_jobaccount.py b/python/switchboardpy/tests/test_jobaccount.py similarity index 100% rename from libraries/py/tests/test_jobaccount.py rename to python/switchboardpy/tests/test_jobaccount.py diff --git a/libraries/py/tests/test_lease.py b/python/switchboardpy/tests/test_lease.py similarity index 100% rename from libraries/py/tests/test_lease.py rename to python/switchboardpy/tests/test_lease.py diff --git a/libraries/py/tests/test_oracle.py b/python/switchboardpy/tests/test_oracle.py similarity index 100% rename from libraries/py/tests/test_oracle.py rename to python/switchboardpy/tests/test_oracle.py diff --git a/libraries/py/tests/test_permission.py b/python/switchboardpy/tests/test_permission.py similarity index 100% rename from libraries/py/tests/test_permission.py rename to python/switchboardpy/tests/test_permission.py diff --git a/libraries/py/tests/test_queue.py b/python/switchboardpy/tests/test_queue.py similarity index 100% rename from libraries/py/tests/test_queue.py rename to python/switchboardpy/tests/test_queue.py diff --git a/libraries/rs/.gitignore b/rust/switchboard-v2/.gitignore similarity index 100% rename from libraries/rs/.gitignore rename to rust/switchboard-v2/.gitignore diff --git a/libraries/rs/Cargo.toml b/rust/switchboard-v2/Cargo.toml similarity index 100% rename from libraries/rs/Cargo.toml rename to rust/switchboard-v2/Cargo.toml diff --git a/libraries/ts/LICENSE b/rust/switchboard-v2/LICENSE similarity index 100% rename from libraries/ts/LICENSE rename to rust/switchboard-v2/LICENSE diff --git a/libraries/rs/README.md b/rust/switchboard-v2/README.md similarity index 100% rename from libraries/rs/README.md rename to rust/switchboard-v2/README.md diff --git a/libraries/rs/src/aggregator.rs b/rust/switchboard-v2/src/aggregator.rs similarity index 100% rename from libraries/rs/src/aggregator.rs rename to rust/switchboard-v2/src/aggregator.rs diff --git a/libraries/rs/src/buffer_relayer.rs b/rust/switchboard-v2/src/buffer_relayer.rs similarity index 100% rename from libraries/rs/src/buffer_relayer.rs rename to rust/switchboard-v2/src/buffer_relayer.rs diff --git a/libraries/rs/src/crank.rs b/rust/switchboard-v2/src/crank.rs similarity index 100% rename from libraries/rs/src/crank.rs rename to rust/switchboard-v2/src/crank.rs diff --git a/libraries/rs/src/decimal.rs b/rust/switchboard-v2/src/decimal.rs similarity index 100% rename from libraries/rs/src/decimal.rs rename to rust/switchboard-v2/src/decimal.rs diff --git a/libraries/rs/src/error.rs b/rust/switchboard-v2/src/error.rs similarity index 100% rename from libraries/rs/src/error.rs rename to rust/switchboard-v2/src/error.rs diff --git a/libraries/rs/src/history_buffer.rs b/rust/switchboard-v2/src/history_buffer.rs similarity index 100% rename from libraries/rs/src/history_buffer.rs rename to rust/switchboard-v2/src/history_buffer.rs diff --git a/libraries/rs/src/job.rs b/rust/switchboard-v2/src/job.rs similarity index 100% rename from libraries/rs/src/job.rs rename to rust/switchboard-v2/src/job.rs diff --git a/libraries/rs/src/lib.rs b/rust/switchboard-v2/src/lib.rs similarity index 100% rename from libraries/rs/src/lib.rs rename to rust/switchboard-v2/src/lib.rs diff --git a/libraries/rs/src/oracle.rs b/rust/switchboard-v2/src/oracle.rs similarity index 100% rename from libraries/rs/src/oracle.rs rename to rust/switchboard-v2/src/oracle.rs diff --git a/libraries/rs/src/permission.rs b/rust/switchboard-v2/src/permission.rs similarity index 100% rename from libraries/rs/src/permission.rs rename to rust/switchboard-v2/src/permission.rs diff --git a/libraries/rs/src/queue.rs b/rust/switchboard-v2/src/queue.rs similarity index 100% rename from libraries/rs/src/queue.rs rename to rust/switchboard-v2/src/queue.rs diff --git a/libraries/rs/src/sb_state.rs b/rust/switchboard-v2/src/sb_state.rs similarity index 100% rename from libraries/rs/src/sb_state.rs rename to rust/switchboard-v2/src/sb_state.rs diff --git a/libraries/rs/src/vrf.rs b/rust/switchboard-v2/src/vrf.rs similarity index 100% rename from libraries/rs/src/vrf.rs rename to rust/switchboard-v2/src/vrf.rs diff --git a/setup-anchor.sh b/setup-anchor.sh new file mode 100755 index 0000000..3cf154b --- /dev/null +++ b/setup-anchor.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +set -e + +# Imports +project_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) +program_dir="$project_dir"/programs + +cd "$program_dir"/anchor-buffer-parser +anchor build + +cd "$program_dir"/anchor-feed-parser +anchor build + +cd "$program_dir"/anchor-vrf-parser +anchor build \ No newline at end of file diff --git a/setup-js.sh b/setup-js.sh new file mode 100755 index 0000000..abe56e6 --- /dev/null +++ b/setup-js.sh @@ -0,0 +1,35 @@ +#!/bin/bash + +set -e + +# Imports +project_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) +javascript_dir="$project_dir"/javascript +program_dir="$project_dir"/programs + +cd "$javascript_dir"/solana.js +yarn install && yarn build + +cd "$javascript_dir"/sbv2-utils +yarn install && yarn build + +cd "$javascript_dir"/sbv2-lite +yarn install && yarn build + +cd "$javascript_dir"/feed-parser +yarn install && yarn build + +cd "$javascript_dir"/feed-walkthrough +yarn install && yarn build + +cd "$javascript_dir"/lease-observer +yarn install && yarn build + +cd "$program_dir"/anchor-buffer-parser +yarn install + +cd "$program_dir"/anchor-feed-parser +yarn install + +cd "$program_dir"/anchor-vrf-parser +yarn install \ No newline at end of file diff --git a/switchboard_v2.json b/switchboard_v2.json deleted file mode 100644 index 7fe7df1..0000000 --- a/switchboard_v2.json +++ /dev/null @@ -1,4601 +0,0 @@ -{ - "version": "0.1.0", - "name": "switchboard_v2", - "instructions": [ - { - "name": "aggregatorAddJob", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "job", - "isMut": true, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorAddJobParams" - } - } - ] - }, - { - "name": "aggregatorInit", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": false - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - }, - { - "name": "authorWallet", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorInitParams" - } - } - ] - }, - { - "name": "aggregatorLock", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": true, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorLockParams" - } - } - ] - }, - { - "name": "aggregatorOpenRound", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "queueAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "permission", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "payoutWallet", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "dataBuffer", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorOpenRoundParams" - } - } - ] - }, - { - "name": "aggregatorRemoveJob", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "job", - "isMut": true, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorRemoveJobParams" - } - } - ] - }, - { - "name": "aggregatorSaveResult", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "oracle", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "oracleQueue", - "isMut": false, - "isSigner": false - }, - { - "name": "queueAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "feedPermission", - "isMut": true, - "isSigner": false - }, - { - "name": "oraclePermission", - "isMut": false, - "isSigner": false - }, - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "historyBuffer", - "isMut": true, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSaveResultParams" - } - } - ] - }, - { - "name": "aggregatorSetAuthority", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "newAuthority", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetAuthorityParams" - } - } - ] - }, - { - "name": "aggregatorSetBatchSize", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetBatchSizeParams" - } - } - ] - }, - { - "name": "aggregatorSetHistoryBuffer", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "buffer", - "isMut": true, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetHistoryBufferParams" - } - } - ] - }, - { - "name": "aggregatorSetMinJobs", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetMinJobsParams" - } - } - ] - }, - { - "name": "aggregatorSetMinOracles", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetMinOraclesParams" - } - } - ] - }, - { - "name": "aggregatorSetQueue", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetQueueParams" - } - } - ] - }, - { - "name": "aggregatorSetUpdateInterval", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetUpdateIntervalParams" - } - } - ] - }, - { - "name": "aggregatorSetVarianceThreshold", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetVarianceThresholdParams" - } - } - ] - }, - { - "name": "crankInit", - "accounts": [ - { - "name": "crank", - "isMut": true, - "isSigner": true - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - }, - { - "name": "buffer", - "isMut": true, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": false - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "CrankInitParams" - } - } - ] - }, - { - "name": "crankPop", - "accounts": [ - { - "name": "crank", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "queueAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "payoutWallet", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "crankDataBuffer", - "isMut": true, - "isSigner": false - }, - { - "name": "queueDataBuffer", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "CrankPopParams" - } - } - ] - }, - { - "name": "crankPush", - "accounts": [ - { - "name": "crank", - "isMut": true, - "isSigner": false - }, - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "queueAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "permission", - "isMut": false, - "isSigner": false - }, - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "dataBuffer", - "isMut": true, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "CrankPushParams" - } - } - ] - }, - { - "name": "jobInit", - "accounts": [ - { - "name": "job", - "isMut": true, - "isSigner": false - }, - { - "name": "authorWallet", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "JobInitParams" - } - } - ] - }, - { - "name": "leaseExtend", - "accounts": [ - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "aggregator", - "isMut": false, - "isSigner": false - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - }, - { - "name": "funder", - "isMut": true, - "isSigner": false - }, - { - "name": "owner", - "isMut": true, - "isSigner": true - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "LeaseExtendParams" - } - } - ] - }, - { - "name": "leaseInit", - "accounts": [ - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "queue", - "isMut": true, - "isSigner": false - }, - { - "name": "aggregator", - "isMut": false, - "isSigner": false - }, - { - "name": "funder", - "isMut": true, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": true - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "owner", - "isMut": true, - "isSigner": true - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "LeaseInitParams" - } - } - ] - }, - { - "name": "leaseSetAuthority", - "accounts": [ - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "newAuthority", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "LeaseSetAuthorityParams" - } - } - ] - }, - { - "name": "leaseWithdraw", - "accounts": [ - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "aggregator", - "isMut": false, - "isSigner": false - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - }, - { - "name": "withdrawAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "withdrawAccount", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "LeaseWithdrawParams" - } - } - ] - }, - { - "name": "oracleHeartbeat", - "accounts": [ - { - "name": "oracle", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "tokenAccount", - "isMut": false, - "isSigner": false - }, - { - "name": "gcOracle", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "permission", - "isMut": false, - "isSigner": false - }, - { - "name": "dataBuffer", - "isMut": true, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "OracleHeartbeatParams" - } - } - ] - }, - { - "name": "oracleInit", - "accounts": [ - { - "name": "oracle", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "wallet", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": false - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "OracleInitParams" - } - } - ] - }, - { - "name": "oracleQueueInit", - "accounts": [ - { - "name": "oracleQueue", - "isMut": true, - "isSigner": true - }, - { - "name": "authority", - "isMut": false, - "isSigner": false - }, - { - "name": "buffer", - "isMut": true, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": false - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "OracleQueueInitParams" - } - } - ] - }, - { - "name": "oracleQueueSetRewards", - "accounts": [ - { - "name": "queue", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "OracleQueueSetRewardsParams" - } - } - ] - }, - { - "name": "oracleQueueVrfConfig", - "accounts": [ - { - "name": "queue", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "OracleQueueVrfConfigParams" - } - } - ] - }, - { - "name": "oracleWithdraw", - "accounts": [ - { - "name": "oracle", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "tokenAccount", - "isMut": true, - "isSigner": false - }, - { - "name": "withdrawAccount", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "permission", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": true - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "OracleWithdrawParams" - } - } - ] - }, - { - "name": "permissionInit", - "accounts": [ - { - "name": "permission", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": false - }, - { - "name": "granter", - "isMut": false, - "isSigner": false - }, - { - "name": "grantee", - "isMut": false, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": true - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "PermissionInitParams" - } - } - ] - }, - { - "name": "permissionSet", - "accounts": [ - { - "name": "permission", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "PermissionSetParams" - } - } - ] - }, - { - "name": "programConfig", - "accounts": [ - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "ProgramConfigParams" - } - } - ] - }, - { - "name": "programInit", - "accounts": [ - { - "name": "state", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenMint", - "isMut": true, - "isSigner": false - }, - { - "name": "vault", - "isMut": true, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": false - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "ProgramInitParams" - } - } - ] - }, - { - "name": "vaultTransfer", - "accounts": [ - { - "name": "state", - "isMut": false, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "to", - "isMut": true, - "isSigner": false - }, - { - "name": "vault", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "VaultTransferParams" - } - } - ] - }, - { - "name": "vrfInit", - "accounts": [ - { - "name": "vrf", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": false, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "VrfInitParams" - } - } - ] - }, - { - "name": "vrfProve", - "accounts": [ - { - "name": "vrf", - "isMut": true, - "isSigner": false - }, - { - "name": "oracle", - "isMut": false, - "isSigner": false - }, - { - "name": "randomnessProducer", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "VrfProveParams" - } - } - ] - }, - { - "name": "vrfProveAndVerify", - "accounts": [ - { - "name": "vrf", - "isMut": true, - "isSigner": false - }, - { - "name": "callbackPid", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "oracle", - "isMut": false, - "isSigner": false - }, - { - "name": "oracleAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "oracleWallet", - "isMut": true, - "isSigner": false - }, - { - "name": "instructionsSysvar", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "VrfProveAndVerifyParams" - } - } - ] - }, - { - "name": "vrfRequestRandomness", - "accounts": [ - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "vrf", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "queueAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "dataBuffer", - "isMut": false, - "isSigner": false - }, - { - "name": "permission", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "payerWallet", - "isMut": true, - "isSigner": false - }, - { - "name": "payerAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "recentBlockhashes", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "VrfRequestRandomnessParams" - } - } - ] - }, - { - "name": "vrfVerify", - "accounts": [ - { - "name": "vrf", - "isMut": true, - "isSigner": false - }, - { - "name": "callbackPid", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "oracle", - "isMut": false, - "isSigner": false - }, - { - "name": "oracleAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "oracleWallet", - "isMut": true, - "isSigner": false - }, - { - "name": "instructionsSysvar", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "VrfVerifyParams" - } - } - ] - } - ], - "accounts": [ - { - "name": "SbState", - "type": { - "kind": "struct", - "fields": [ - { - "name": "authority", - "type": "publicKey" - }, - { - "name": "tokenMint", - "type": "publicKey" - }, - { - "name": "tokenVault", - "type": "publicKey" - }, - { - "name": "ebuf", - "type": { - "array": ["u8", 1024] - } - } - ] - } - }, - { - "name": "AggregatorAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "metadata", - "type": { - "array": ["u8", 128] - } - }, - { - "name": "authorWallet", - "type": "publicKey" - }, - { - "name": "queuePubkey", - "type": "publicKey" - }, - { - "name": "oracleRequestBatchSize", - "type": "u32" - }, - { - "name": "minOracleResults", - "type": "u32" - }, - { - "name": "minJobResults", - "type": "u32" - }, - { - "name": "minUpdateDelaySeconds", - "type": "u32" - }, - { - "name": "startAfter", - "type": "i64" - }, - { - "name": "varianceThreshold", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "forceReportPeriod", - "type": "i64" - }, - { - "name": "expiration", - "type": "i64" - }, - { - "name": "consecutiveFailureCount", - "type": "u64" - }, - { - "name": "nextAllowedUpdateTime", - "type": "i64" - }, - { - "name": "isLocked", - "type": "bool" - }, - { - "name": "crankPubkey", - "type": "publicKey" - }, - { - "name": "latestConfirmedRound", - "type": { - "defined": "AggregatorRound" - } - }, - { - "name": "currentRound", - "type": { - "defined": "AggregatorRound" - } - }, - { - "name": "jobPubkeysData", - "type": { - "array": ["publicKey", 16] - } - }, - { - "name": "jobHashes", - "type": { - "array": [ - { - "defined": "Hash" - }, - 16 - ] - } - }, - { - "name": "jobPubkeysSize", - "type": "u32" - }, - { - "name": "jobsChecksum", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "authority", - "type": "publicKey" - }, - { - "name": "historyBuffer", - "type": "publicKey" - }, - { - "name": "previousConfirmedRoundResult", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "previousConfirmedRoundSlot", - "type": "u64" - }, - { - "name": "disableCrank", - "type": "bool" - }, - { - "name": "ebuf", - "type": { - "array": ["u8", 163] - } - } - ] - } - }, - { - "name": "PermissionAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "authority", - "type": "publicKey" - }, - { - "name": "permissions", - "type": "u32" - }, - { - "name": "granter", - "type": "publicKey" - }, - { - "name": "grantee", - "type": "publicKey" - }, - { - "name": "expiration", - "type": "i64" - }, - { - "name": "ebuf", - "type": { - "array": ["u8", 256] - } - } - ] - } - }, - { - "name": "LeaseAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "escrow", - "type": "publicKey" - }, - { - "name": "queue", - "type": "publicKey" - }, - { - "name": "aggregator", - "type": "publicKey" - }, - { - "name": "tokenProgram", - "type": "publicKey" - }, - { - "name": "isActive", - "type": "bool" - }, - { - "name": "crankRowCount", - "type": "u32" - }, - { - "name": "createdAt", - "type": "i64" - }, - { - "name": "updateCount", - "type": "u128" - }, - { - "name": "withdrawAuthority", - "type": "publicKey" - }, - { - "name": "ebuf", - "type": { - "array": ["u8", 256] - } - } - ] - } - }, - { - "name": "OracleQueueAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "metadata", - "type": { - "array": ["u8", 64] - } - }, - { - "name": "authority", - "type": "publicKey" - }, - { - "name": "oracleTimeout", - "type": "u32" - }, - { - "name": "reward", - "type": "u64" - }, - { - "name": "minStake", - "type": "u64" - }, - { - "name": "slashingEnabled", - "type": "bool" - }, - { - "name": "varianceToleranceMultiplier", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "feedProbationPeriod", - "type": "u32" - }, - { - "name": "currIdx", - "type": "u32" - }, - { - "name": "size", - "type": "u32" - }, - { - "name": "gcIdx", - "type": "u32" - }, - { - "name": "consecutiveFeedFailureLimit", - "type": "u64" - }, - { - "name": "consecutiveOracleFailureLimit", - "type": "u64" - }, - { - "name": "unpermissionedFeedsEnabled", - "type": "bool" - }, - { - "name": "unpermissionedVrfEnabled", - "type": "bool" - }, - { - "name": "curatorRewardCut", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "lockLeaseFunding", - "type": "bool" - }, - { - "name": "ebuf", - "type": { - "array": ["u8", 1001] - } - }, - { - "name": "maxSize", - "type": "u32" - }, - { - "name": "dataBuffer", - "type": "publicKey" - } - ] - } - }, - { - "name": "CrankAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "metadata", - "type": { - "array": ["u8", 64] - } - }, - { - "name": "queuePubkey", - "type": "publicKey" - }, - { - "name": "pqSize", - "type": "u32" - }, - { - "name": "maxRows", - "type": "u32" - }, - { - "name": "jitterModifier", - "type": "u8" - }, - { - "name": "ebuf", - "type": { - "array": ["u8", 255] - } - }, - { - "name": "dataBuffer", - "type": "publicKey" - } - ] - } - }, - { - "name": "OracleAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "metadata", - "type": { - "array": ["u8", 128] - } - }, - { - "name": "oracleAuthority", - "type": "publicKey" - }, - { - "name": "lastHeartbeat", - "type": "i64" - }, - { - "name": "numInUse", - "type": "u32" - }, - { - "name": "tokenAccount", - "type": "publicKey" - }, - { - "name": "queuePubkey", - "type": "publicKey" - }, - { - "name": "metrics", - "type": { - "defined": "OracleMetrics" - } - }, - { - "name": "ebuf", - "type": { - "array": ["u8", 256] - } - } - ] - } - }, - { - "name": "JobAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "metadata", - "type": { - "array": ["u8", 64] - } - }, - { - "name": "authorWallet", - "type": "publicKey" - }, - { - "name": "expiration", - "type": "i64" - }, - { - "name": "hash", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "data", - "type": "bytes" - }, - { - "name": "referenceCount", - "type": "u32" - }, - { - "name": "totalSpent", - "type": "u128" - } - ] - } - }, - { - "name": "VrfAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "status", - "type": { - "defined": "VrfStatus" - } - }, - { - "name": "counter", - "type": "u128" - }, - { - "name": "authority", - "type": "publicKey" - }, - { - "name": "oracleQueue", - "type": "publicKey" - }, - { - "name": "escrow", - "type": "publicKey" - }, - { - "name": "callback", - "type": { - "defined": "CallbackZC" - } - }, - { - "name": "batchSize", - "type": "u32" - }, - { - "name": "builders", - "type": { - "array": [ - { - "defined": "VrfBuilder" - }, - 8 - ] - } - }, - { - "name": "buildersLen", - "type": "u32" - }, - { - "name": "testMode", - "type": "bool" - }, - { - "name": "currentRound", - "type": { - "defined": "VrfRound" - } - }, - { - "name": "ebuf", - "type": { - "array": ["u8", 1024] - } - } - ] - } - } - ], - "types": [ - { - "name": "AggregatorAddJobParams", - "type": { - "kind": "struct", - "fields": [] - } - }, - { - "name": "AggregatorInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "metadata", - "type": { - "array": ["u8", 128] - } - }, - { - "name": "batchSize", - "type": "u32" - }, - { - "name": "minOracleResults", - "type": "u32" - }, - { - "name": "minJobResults", - "type": "u32" - }, - { - "name": "minUpdateDelaySeconds", - "type": "u32" - }, - { - "name": "startAfter", - "type": "i64" - }, - { - "name": "varianceThreshold", - "type": { - "defined": "BorshDecimal" - } - }, - { - "name": "forceReportPeriod", - "type": "i64" - }, - { - "name": "expiration", - "type": "i64" - }, - { - "name": "stateBump", - "type": "u8" - } - ] - } - }, - { - "name": "AggregatorLockParams", - "type": { - "kind": "struct", - "fields": [] - } - }, - { - "name": "AggregatorOpenRoundParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "leaseBump", - "type": "u8" - }, - { - "name": "permissionBump", - "type": "u8" - }, - { - "name": "jitter", - "type": "u8" - } - ] - } - }, - { - "name": "AggregatorRemoveJobParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "jobIdx", - "type": "u32" - } - ] - } - }, - { - "name": "AggregatorSaveResultParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "oracleIdx", - "type": "u32" - }, - { - "name": "error", - "type": "bool" - }, - { - "name": "value", - "type": { - "defined": "BorshDecimal" - } - }, - { - "name": "jobsChecksum", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "minResponse", - "type": { - "defined": "BorshDecimal" - } - }, - { - "name": "maxResponse", - "type": { - "defined": "BorshDecimal" - } - }, - { - "name": "feedPermissionBump", - "type": "u8" - }, - { - "name": "oraclePermissionBump", - "type": "u8" - }, - { - "name": "leaseBump", - "type": "u8" - }, - { - "name": "stateBump", - "type": "u8" - } - ] - } - }, - { - "name": "AggregatorSetAuthorityParams", - "type": { - "kind": "struct", - "fields": [] - } - }, - { - "name": "AggregatorSetBatchSizeParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "batchSize", - "type": "u32" - } - ] - } - }, - { - "name": "AggregatorSetHistoryBufferParams", - "type": { - "kind": "struct", - "fields": [] - } - }, - { - "name": "AggregatorSetMinJobsParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "minJobResults", - "type": "u32" - } - ] - } - }, - { - "name": "AggregatorSetMinOraclesParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "minOracleResults", - "type": "u32" - } - ] - } - }, - { - "name": "AggregatorSetQueueParams", - "type": { - "kind": "struct", - "fields": [] - } - }, - { - "name": "AggregatorSetUpdateIntervalParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "newInterval", - "type": "u32" - } - ] - } - }, - { - "name": "AggregatorSetVarianceThresholdParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "varianceThreshold", - "type": { - "defined": "BorshDecimal" - } - } - ] - } - }, - { - "name": "CrankInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": "bytes" - }, - { - "name": "metadata", - "type": "bytes" - }, - { - "name": "crankSize", - "type": "u32" - } - ] - } - }, - { - "name": "CrankPopParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "leaseBumps", - "type": "bytes" - }, - { - "name": "permissionBumps", - "type": "bytes" - }, - { - "name": "nonce", - "type": { - "option": "u32" - } - }, - { - "name": "failOpenOnAccountMismatch", - "type": { - "option": "bool" - } - } - ] - } - }, - { - "name": "CrankPushParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "permissionBump", - "type": "u8" - } - ] - } - }, - { - "name": "JobInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "expiration", - "type": "i64" - }, - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "data", - "type": "bytes" - } - ] - } - }, - { - "name": "LeaseExtendParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "loadAmount", - "type": "u64" - }, - { - "name": "leaseBump", - "type": "u8" - }, - { - "name": "stateBump", - "type": "u8" - } - ] - } - }, - { - "name": "LeaseInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "loadAmount", - "type": "u64" - }, - { - "name": "withdrawAuthority", - "type": "publicKey" - }, - { - "name": "leaseBump", - "type": "u8" - }, - { - "name": "stateBump", - "type": "u8" - } - ] - } - }, - { - "name": "LeaseSetAuthorityParams", - "type": { - "kind": "struct", - "fields": [] - } - }, - { - "name": "LeaseWithdrawParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "leaseBump", - "type": "u8" - }, - { - "name": "amount", - "type": "u64" - } - ] - } - }, - { - "name": "OracleHeartbeatParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "permissionBump", - "type": "u8" - } - ] - } - }, - { - "name": "OracleInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": "bytes" - }, - { - "name": "metadata", - "type": "bytes" - }, - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "oracleBump", - "type": "u8" - } - ] - } - }, - { - "name": "OracleQueueInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "metadata", - "type": { - "array": ["u8", 64] - } - }, - { - "name": "reward", - "type": "u64" - }, - { - "name": "minStake", - "type": "u64" - }, - { - "name": "feedProbationPeriod", - "type": "u32" - }, - { - "name": "oracleTimeout", - "type": "u32" - }, - { - "name": "slashingEnabled", - "type": "bool" - }, - { - "name": "varianceToleranceMultiplier", - "type": { - "defined": "BorshDecimal" - } - }, - { - "name": "consecutiveFeedFailureLimit", - "type": "u64" - }, - { - "name": "consecutiveOracleFailureLimit", - "type": "u64" - }, - { - "name": "queueSize", - "type": "u32" - }, - { - "name": "unpermissionedFeeds", - "type": "bool" - }, - { - "name": "unpermissionedVrf", - "type": "bool" - } - ] - } - }, - { - "name": "OracleQueueSetRewardsParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "rewards", - "type": "u64" - } - ] - } - }, - { - "name": "OracleQueueVrfConfigParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "unpermissionedVrfEnabled", - "type": "bool" - } - ] - } - }, - { - "name": "OracleWithdrawParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "permissionBump", - "type": "u8" - }, - { - "name": "amount", - "type": "u64" - } - ] - } - }, - { - "name": "PermissionInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "permissionBump", - "type": "u8" - } - ] - } - }, - { - "name": "PermissionSetParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "permission", - "type": { - "defined": "SwitchboardPermission" - } - }, - { - "name": "enable", - "type": "bool" - } - ] - } - }, - { - "name": "ProgramConfigParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "token", - "type": "publicKey" - }, - { - "name": "bump", - "type": "u8" - } - ] - } - }, - { - "name": "ProgramInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - } - ] - } - }, - { - "name": "VaultTransferParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "amount", - "type": "u64" - } - ] - } - }, - { - "name": "VrfInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "callback", - "type": { - "defined": "Callback" - } - }, - { - "name": "stateBump", - "type": "u8" - } - ] - } - }, - { - "name": "VrfProveParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "proof", - "type": "bytes" - }, - { - "name": "idx", - "type": "u32" - } - ] - } - }, - { - "name": "VrfProveAndVerifyParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "nonce", - "type": { - "option": "u32" - } - }, - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "idx", - "type": "u32" - }, - { - "name": "proof", - "type": "bytes" - } - ] - } - }, - { - "name": "VrfRequestRandomnessParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "permissionBump", - "type": "u8" - }, - { - "name": "stateBump", - "type": "u8" - } - ] - } - }, - { - "name": "VrfVerifyParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "nonce", - "type": { - "option": "u32" - } - }, - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "idx", - "type": "u32" - } - ] - } - }, - { - "name": "Hash", - "type": { - "kind": "struct", - "fields": [ - { - "name": "data", - "type": { - "array": ["u8", 32] - } - } - ] - } - }, - { - "name": "AggregatorRound", - "type": { - "kind": "struct", - "fields": [ - { - "name": "numSuccess", - "type": "u32" - }, - { - "name": "numError", - "type": "u32" - }, - { - "name": "isClosed", - "type": "bool" - }, - { - "name": "roundOpenSlot", - "type": "u64" - }, - { - "name": "roundOpenTimestamp", - "type": "i64" - }, - { - "name": "result", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "stdDeviation", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "minResponse", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "maxResponse", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "oraclePubkeysData", - "type": { - "array": ["publicKey", 16] - } - }, - { - "name": "mediansData", - "type": { - "array": [ - { - "defined": "SwitchboardDecimal" - }, - 16 - ] - } - }, - { - "name": "currentPayout", - "type": { - "array": ["i64", 16] - } - }, - { - "name": "mediansFulfilled", - "type": { - "array": ["bool", 16] - } - }, - { - "name": "errorsFulfilled", - "type": { - "array": ["bool", 16] - } - } - ] - } - }, - { - "name": "AggregatorHistoryRow", - "type": { - "kind": "struct", - "fields": [ - { - "name": "timestamp", - "type": "i64" - }, - { - "name": "value", - "type": { - "defined": "SwitchboardDecimal" - } - } - ] - } - }, - { - "name": "SwitchboardDecimal", - "type": { - "kind": "struct", - "fields": [ - { - "name": "mantissa", - "type": "i128" - }, - { - "name": "scale", - "type": "u32" - } - ] - } - }, - { - "name": "CrankRow", - "type": { - "kind": "struct", - "fields": [ - { - "name": "pubkey", - "type": "publicKey" - }, - { - "name": "nextTimestamp", - "type": "i64" - } - ] - } - }, - { - "name": "OracleMetrics", - "type": { - "kind": "struct", - "fields": [ - { - "name": "consecutiveSuccess", - "type": "u64" - }, - { - "name": "consecutiveError", - "type": "u64" - }, - { - "name": "consecutiveDisagreement", - "type": "u64" - }, - { - "name": "consecutiveLateResponse", - "type": "u64" - }, - { - "name": "consecutiveFailure", - "type": "u64" - }, - { - "name": "totalSuccess", - "type": "u128" - }, - { - "name": "totalError", - "type": "u128" - }, - { - "name": "totalDisagreement", - "type": "u128" - }, - { - "name": "totalLateResponse", - "type": "u128" - } - ] - } - }, - { - "name": "BorshDecimal", - "type": { - "kind": "struct", - "fields": [ - { - "name": "mantissa", - "type": "i128" - }, - { - "name": "scale", - "type": "u32" - } - ] - } - }, - { - "name": "EcvrfProofZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "gamma", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "c", - "type": { - "defined": "Scalar" - } - }, - { - "name": "s", - "type": { - "defined": "Scalar" - } - } - ] - } - }, - { - "name": "Scalar", - "type": { - "kind": "struct", - "fields": [ - { - "name": "bytes", - "type": { - "array": ["u8", 32] - } - } - ] - } - }, - { - "name": "FieldElementZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "bytes", - "type": { - "array": ["u64", 5] - } - } - ] - } - }, - { - "name": "CompletedPointZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "x", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "y", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "z", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "t", - "type": { - "defined": "FieldElementZC" - } - } - ] - } - }, - { - "name": "EdwardsPointZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "x", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "y", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "z", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "t", - "type": { - "defined": "FieldElementZC" - } - } - ] - } - }, - { - "name": "ProjectivePointZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "x", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "y", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "z", - "type": { - "defined": "FieldElementZC" - } - } - ] - } - }, - { - "name": "EcvrfIntermediate", - "type": { - "kind": "struct", - "fields": [ - { - "name": "r", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "nS", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "d", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "t13", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "t15", - "type": { - "defined": "FieldElementZC" - } - } - ] - } - }, - { - "name": "VrfBuilder", - "type": { - "kind": "struct", - "fields": [ - { - "name": "producer", - "type": "publicKey" - }, - { - "name": "status", - "type": { - "defined": "VrfStatus" - } - }, - { - "name": "reprProof", - "type": { - "array": ["u8", 80] - } - }, - { - "name": "proof", - "type": { - "defined": "EcvrfProofZC" - } - }, - { - "name": "yPoint", - "type": "publicKey" - }, - { - "name": "stage", - "type": "u32" - }, - { - "name": "stage1Out", - "type": { - "defined": "EcvrfIntermediate" - } - }, - { - "name": "r1", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "r2", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "stage3Out", - "type": { - "defined": "EcvrfIntermediate" - } - }, - { - "name": "hPoint", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "sReduced", - "type": { - "defined": "Scalar" - } - }, - { - "name": "yPointBuilder", - "type": { - "array": [ - { - "defined": "FieldElementZC" - }, - 3 - ] - } - }, - { - "name": "yRistrettoPoint", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "mulRound", - "type": "u8" - }, - { - "name": "hashPointsRound", - "type": "u8" - }, - { - "name": "mulTmp1", - "type": { - "defined": "CompletedPointZC" - } - }, - { - "name": "uPoint1", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "uPoint2", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "vPoint1", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "vPoint2", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "uPoint", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "vPoint", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "u1", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "u2", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "invertee", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "y", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "z", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "p1Bytes", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "p2Bytes", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "p3Bytes", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "p4Bytes", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "cPrimeHashbuf", - "type": { - "array": ["u8", 16] - } - }, - { - "name": "m1", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "m2", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "txRemaining", - "type": "u32" - }, - { - "name": "verified", - "type": "bool" - }, - { - "name": "result", - "type": { - "array": ["u8", 32] - } - } - ] - } - }, - { - "name": "AccountMetaZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "pubkey", - "type": "publicKey" - }, - { - "name": "isSigner", - "type": "bool" - }, - { - "name": "isWritable", - "type": "bool" - } - ] - } - }, - { - "name": "AccountMetaBorsh", - "type": { - "kind": "struct", - "fields": [ - { - "name": "pubkey", - "type": "publicKey" - }, - { - "name": "isSigner", - "type": "bool" - }, - { - "name": "isWritable", - "type": "bool" - } - ] - } - }, - { - "name": "CallbackZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "programId", - "type": "publicKey" - }, - { - "name": "accounts", - "type": { - "array": [ - { - "defined": "AccountMetaZC" - }, - 32 - ] - } - }, - { - "name": "accountsLen", - "type": "u32" - }, - { - "name": "ixData", - "type": { - "array": ["u8", 1024] - } - }, - { - "name": "ixDataLen", - "type": "u32" - } - ] - } - }, - { - "name": "Callback", - "type": { - "kind": "struct", - "fields": [ - { - "name": "programId", - "type": "publicKey" - }, - { - "name": "accounts", - "type": { - "vec": { - "defined": "AccountMetaBorsh" - } - } - }, - { - "name": "ixData", - "type": "bytes" - } - ] - } - }, - { - "name": "VrfRound", - "type": { - "kind": "struct", - "fields": [ - { - "name": "alpha", - "type": { - "array": ["u8", 256] - } - }, - { - "name": "alphaLen", - "type": "u32" - }, - { - "name": "requestSlot", - "type": "u64" - }, - { - "name": "requestTimestamp", - "type": "i64" - }, - { - "name": "result", - "type": { - "array": ["u8", 32] - } - }, - { - "name": "numVerified", - "type": "u32" - }, - { - "name": "ebuf", - "type": { - "array": ["u8", 256] - } - } - ] - } - }, - { - "name": "Lanes", - "type": { - "kind": "enum", - "variants": [ - { - "name": "C" - }, - { - "name": "D" - }, - { - "name": "AB" - }, - { - "name": "AC" - }, - { - "name": "CD" - }, - { - "name": "AD" - }, - { - "name": "BC" - }, - { - "name": "ABCD" - } - ] - } - }, - { - "name": "Shuffle", - "type": { - "kind": "enum", - "variants": [ - { - "name": "AAAA" - }, - { - "name": "BBBB" - }, - { - "name": "CACA" - }, - { - "name": "DBBD" - }, - { - "name": "ADDA" - }, - { - "name": "CBCB" - }, - { - "name": "ABAB" - }, - { - "name": "BADC" - }, - { - "name": "BACD" - }, - { - "name": "ABDC" - } - ] - } - }, - { - "name": "Shuffle", - "type": { - "kind": "enum", - "variants": [ - { - "name": "AAAA" - }, - { - "name": "BBBB" - }, - { - "name": "BADC" - }, - { - "name": "BACD" - }, - { - "name": "ADDA" - }, - { - "name": "CBCB" - }, - { - "name": "ABDC" - }, - { - "name": "ABAB" - }, - { - "name": "DBBD" - }, - { - "name": "CACA" - } - ] - } - }, - { - "name": "Lanes", - "type": { - "kind": "enum", - "variants": [ - { - "name": "D" - }, - { - "name": "C" - }, - { - "name": "AB" - }, - { - "name": "AC" - }, - { - "name": "AD" - }, - { - "name": "BCD" - } - ] - } - }, - { - "name": "SwitchboardPermission", - "type": { - "kind": "enum", - "variants": [ - { - "name": "PermitOracleHeartbeat" - }, - { - "name": "PermitOracleQueueUsage" - }, - { - "name": "PermitVrfRequests" - } - ] - } - }, - { - "name": "OracleResponseType", - "type": { - "kind": "enum", - "variants": [ - { - "name": "TypeSuccess" - }, - { - "name": "TypeError" - }, - { - "name": "TypeDisagreement" - }, - { - "name": "TypeNoResponse" - } - ] - } - }, - { - "name": "VrfStatus", - "type": { - "kind": "enum", - "variants": [ - { - "name": "StatusNone" - }, - { - "name": "StatusRequesting" - }, - { - "name": "StatusVerifying" - }, - { - "name": "StatusVerified" - }, - { - "name": "StatusCallbackSuccess" - }, - { - "name": "StatusVerifyFailure" - } - ] - } - } - ], - "events": [ - { - "name": "AggregatorInitEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "VrfRequestRandomnessEvent", - "fields": [ - { - "name": "vrfPubkey", - "type": "publicKey", - "index": true - }, - { - "name": "oraclePubkeys", - "type": { - "vec": "publicKey" - }, - "index": false - }, - { - "name": "loadAmount", - "type": "u64", - "index": false - }, - { - "name": "existingAmount", - "type": "u64", - "index": false - } - ] - }, - { - "name": "VrfRequestEvent", - "fields": [ - { - "name": "vrfPubkey", - "type": "publicKey", - "index": true - }, - { - "name": "oraclePubkeys", - "type": { - "vec": "publicKey" - }, - "index": false - } - ] - }, - { - "name": "VrfProveEvent", - "fields": [ - { - "name": "vrfPubkey", - "type": "publicKey", - "index": true - }, - { - "name": "oraclePubkey", - "type": "publicKey", - "index": true - }, - { - "name": "authorityPubkey", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "VrfVerifyEvent", - "fields": [ - { - "name": "vrfPubkey", - "type": "publicKey", - "index": true - }, - { - "name": "oraclePubkey", - "type": "publicKey", - "index": true - }, - { - "name": "authorityPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "amount", - "type": "u64", - "index": false - } - ] - }, - { - "name": "VrfCallbackPerformedEvent", - "fields": [ - { - "name": "vrfPubkey", - "type": "publicKey", - "index": true - }, - { - "name": "oraclePubkey", - "type": "publicKey", - "index": true - }, - { - "name": "amount", - "type": "u64", - "index": false - } - ] - }, - { - "name": "AggregatorOpenRoundEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "oraclePubkeys", - "type": { - "vec": "publicKey" - }, - "index": false - }, - { - "name": "jobPubkeys", - "type": { - "vec": "publicKey" - }, - "index": false - }, - { - "name": "remainingFunds", - "type": "u64", - "index": false - }, - { - "name": "queueAuthority", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "AggregatorValueUpdateEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "value", - "type": { - "defined": "BorshDecimal" - }, - "index": false - }, - { - "name": "slot", - "type": "u64", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - }, - { - "name": "oraclePubkeys", - "type": { - "vec": "publicKey" - }, - "index": false - }, - { - "name": "oracleValues", - "type": { - "vec": { - "defined": "BorshDecimal" - } - }, - "index": false - } - ] - }, - { - "name": "OracleRewardEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "leasePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "oraclePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "walletPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "amount", - "type": "u64", - "index": false - }, - { - "name": "roundSlot", - "type": "u64", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "OracleWithdrawEvent", - "fields": [ - { - "name": "oraclePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "walletPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "destinationWallet", - "type": "publicKey", - "index": false - }, - { - "name": "previousAmount", - "type": "u64", - "index": false - }, - { - "name": "newAmount", - "type": "u64", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "LeaseWithdrawEvent", - "fields": [ - { - "name": "leasePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "walletPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "previousAmount", - "type": "u64", - "index": false - }, - { - "name": "newAmount", - "type": "u64", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "OracleSlashEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "leasePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "oraclePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "walletPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "amount", - "type": "u64", - "index": false - }, - { - "name": "roundSlot", - "type": "u64", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "LeaseFundEvent", - "fields": [ - { - "name": "leasePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "funder", - "type": "publicKey", - "index": false - }, - { - "name": "amount", - "type": "u64", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "ProbationBrokenEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "queuePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "FeedPermissionRevokedEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "GarbageCollectFailureEvent", - "fields": [ - { - "name": "queuePubkey", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "OracleBootedEvent", - "fields": [ - { - "name": "queuePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "oraclePubkey", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "CrankLeaseInsufficientFundsEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "leasePubkey", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "CrankPopExpectedFailureEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "leasePubkey", - "type": "publicKey", - "index": false - } - ] - } - ], - "errors": [ - { - "code": 6000, - "name": "ArrayOperationError", - "msg": "Illegal operation on a Switchboard array." - }, - { - "code": 6001, - "name": "QueueOperationError", - "msg": "Illegal operation on a Switchboard queue." - }, - { - "code": 6002, - "name": "IncorrectProgramOwnerError", - "msg": "An account required to be owned by the program has a different owner." - }, - { - "code": 6003, - "name": "InvalidAggregatorRound", - "msg": "Aggregator is not currently populated with a valid round." - }, - { - "code": 6004, - "name": "TooManyAggregatorJobs", - "msg": "Aggregator cannot fit any more jobs." - }, - { - "code": 6005, - "name": "AggregatorCurrentRoundClosed", - "msg": "Aggregator's current round is closed. No results are being accepted." - }, - { - "code": 6006, - "name": "AggregatorInvalidSaveResult", - "msg": "Aggregator received an invalid save result instruction." - }, - { - "code": 6007, - "name": "InvalidStrDecimalConversion", - "msg": "Failed to convert string to decimal format." - }, - { - "code": 6008, - "name": "AccountLoaderMissingSignature", - "msg": "AccountLoader account is missing a required signature." - }, - { - "code": 6009, - "name": "MissingRequiredSignature", - "msg": "Account is missing a required signature." - }, - { - "code": 6010, - "name": "ArrayOverflowError", - "msg": "The attempted action will overflow a zero-copy account array." - }, - { - "code": 6011, - "name": "ArrayUnderflowError", - "msg": "The attempted action will underflow a zero-copy account array." - }, - { - "code": 6012, - "name": "PubkeyNotFoundError", - "msg": "The queried public key was not found." - }, - { - "code": 6013, - "name": "AggregatorIllegalRoundOpenCall", - "msg": "Aggregator round open called too early." - }, - { - "code": 6014, - "name": "AggregatorIllegalRoundCloseCall", - "msg": "Aggregator round close called too early." - }, - { - "code": 6015, - "name": "AggregatorClosedError", - "msg": "Aggregator is closed. Illegal action." - }, - { - "code": 6016, - "name": "IllegalOracleIdxError", - "msg": "Illegal oracle index." - }, - { - "code": 6017, - "name": "OracleAlreadyRespondedError", - "msg": "The provided oracle has already responded this round." - }, - { - "code": 6018, - "name": "ProtoDeserializeError", - "msg": "Failed to deserialize protocol buffer." - }, - { - "code": 6019, - "name": "UnauthorizedStateUpdateError", - "msg": "Unauthorized program state modification attempted." - }, - { - "code": 6020, - "name": "MissingOracleAccountsError", - "msg": "Not enough oracle accounts provided to closeRounds." - }, - { - "code": 6021, - "name": "OracleMismatchError", - "msg": "An unexpected oracle account was provided for the transaction." - }, - { - "code": 6022, - "name": "CrankMaxCapacityError", - "msg": "Attempted to push to a Crank that's at capacity" - }, - { - "code": 6023, - "name": "AggregatorLeaseInsufficientFunds", - "msg": "Aggregator update call attempted but attached lease has insufficient funds." - }, - { - "code": 6024, - "name": "IncorrectTokenAccountMint", - "msg": "The provided token account does not point to the Switchboard token mint." - }, - { - "code": 6025, - "name": "InvalidEscrowAccount", - "msg": "An invalid escrow account was provided." - }, - { - "code": 6026, - "name": "CrankEmptyError", - "msg": "Crank empty. Pop failed." - }, - { - "code": 6027, - "name": "PdaDeriveError", - "msg": "Failed to derive a PDA from the provided seed." - }, - { - "code": 6028, - "name": "AggregatorAccountNotFound", - "msg": "Aggregator account missing from provided account list." - }, - { - "code": 6029, - "name": "PermissionAccountNotFound", - "msg": "Permission account missing from provided account list." - }, - { - "code": 6030, - "name": "LeaseAccountDeriveFailure", - "msg": "Failed to derive a lease account." - }, - { - "code": 6031, - "name": "PermissionAccountDeriveFailure", - "msg": "Failed to derive a permission account." - }, - { - "code": 6032, - "name": "EscrowAccountNotFound", - "msg": "Escrow account missing from provided account list." - }, - { - "code": 6033, - "name": "LeaseAccountNotFound", - "msg": "Lease account missing from provided account list." - }, - { - "code": 6034, - "name": "DecimalConversionError", - "msg": "Decimal conversion method failed." - }, - { - "code": 6035, - "name": "PermissionDenied", - "msg": "Permission account is missing required flags for the given action." - }, - { - "code": 6036, - "name": "QueueAtCapacity", - "msg": "Oracle queue is at lease capacity." - }, - { - "code": 6037, - "name": "ExcessiveCrankRowsError", - "msg": "Data feed is already pushed on a crank." - }, - { - "code": 6038, - "name": "AggregatorLockedError", - "msg": "Aggregator is locked, no setting modifications or job additions allowed." - }, - { - "code": 6039, - "name": "AggregatorInvalidBatchSizeError", - "msg": "Aggregator invalid batch size." - }, - { - "code": 6040, - "name": "AggregatorJobChecksumMismatch", - "msg": "Oracle provided an incorrect aggregator job checksum." - }, - { - "code": 6041, - "name": "IntegerOverflowError", - "msg": "An integer overflow occurred." - }, - { - "code": 6042, - "name": "InvalidUpdatePeriodError", - "msg": "Minimum update period is 5 seconds." - }, - { - "code": 6043, - "name": "NoResultsError", - "msg": "Aggregator round evaluation attempted with no results." - }, - { - "code": 6044, - "name": "InvalidExpirationError", - "msg": "An expiration constraint was broken." - }, - { - "code": 6045, - "name": "InsufficientStakeError", - "msg": "An account provided insufficient stake for action." - }, - { - "code": 6046, - "name": "LeaseInactiveError", - "msg": "The provided lease account is not active." - }, - { - "code": 6047, - "name": "NoAggregatorJobsFound", - "msg": "No jobs are currently included in the aggregator." - }, - { - "code": 6048, - "name": "IntegerUnderflowError", - "msg": "An integer underflow occurred." - }, - { - "code": 6049, - "name": "OracleQueueMismatch", - "msg": "An invalid oracle queue account was provided." - }, - { - "code": 6050, - "name": "OracleWalletMismatchError", - "msg": "An unexpected oracle wallet account was provided for the transaction." - }, - { - "code": 6051, - "name": "InvalidBufferAccountError", - "msg": "An invalid buffer account was provided." - }, - { - "code": 6052, - "name": "InsufficientOracleQueueError", - "msg": "Insufficient oracle queue size." - }, - { - "code": 6053, - "name": "InvalidAuthorityError", - "msg": "Invalid authority account provided." - }, - { - "code": 6054, - "name": "InvalidTokenAccountMintError", - "msg": "A provided token wallet is associated with an incorrect mint." - }, - { - "code": 6055, - "name": "ExcessiveLeaseWithdrawlError", - "msg": "You must leave enough funds to perform at least 1 update in the lease." - }, - { - "code": 6056, - "name": "InvalideHistoryAccountError", - "msg": "Invalid history account provided." - }, - { - "code": 6057, - "name": "InvalidLeaseAccountEscrowError", - "msg": "Invalid lease account escrow." - }, - { - "code": 6058, - "name": "InvalidCrankAccountError", - "msg": "Invalid crank provided." - }, - { - "code": 6059, - "name": "CrankNoElementsReadyError", - "msg": "No elements ready to be popped." - }, - { - "code": 6060, - "name": "IndexOutOfBoundsError", - "msg": "Index out of bounds" - }, - { - "code": 6061, - "name": "VrfInvalidRequestError", - "msg": "Invalid vrf request params" - }, - { - "code": 6062, - "name": "VrfInvalidProofSubmissionError", - "msg": "Vrf proof failed to verify" - }, - { - "code": 6063, - "name": "VrfVerifyError", - "msg": "Error in verifying vrf proof." - }, - { - "code": 6064, - "name": "VrfCallbackError", - "msg": "Vrf callback function failed." - }, - { - "code": 6065, - "name": "VrfCallbackParamsError", - "msg": "Invalid vrf callback params provided." - }, - { - "code": 6066, - "name": "VrfCallbackAlreadyCalledError", - "msg": "Vrf callback has already been triggered." - }, - { - "code": 6067, - "name": "VrfInvalidPubkeyError", - "msg": "The provided pubkey is invalid to use in ecvrf proofs" - }, - { - "code": 6068, - "name": "VrfTooManyVerifyCallsError", - "msg": "Number of required verify calls exceeded" - }, - { - "code": 6069, - "name": "VrfRequestAlreadyLaunchedError", - "msg": "Vrf request is already pending" - }, - { - "code": 6070, - "name": "VrfInsufficientVerificationError", - "msg": "Insufficient amount of proofs collected for VRF callback" - }, - { - "code": 6071, - "name": "InvalidVrfProducerError", - "msg": "An incorrect oracle attempted to submit a proof" - }, - { - "code": 6072, - "name": "NoopError", - "msg": "Noop error" - } - ] -} diff --git a/switchboardv2.json b/switchboardv2.json deleted file mode 100644 index 2644e10..0000000 --- a/switchboardv2.json +++ /dev/null @@ -1,5311 +0,0 @@ -{ - "version": "0.1.0", - "name": "switchboard_v2", - "instructions": [ - { - "name": "aggregatorAddJob", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "job", - "isMut": true, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorAddJobParams" - } - } - ] - }, - { - "name": "aggregatorInit", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": false - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorInitParams" - } - } - ] - }, - { - "name": "aggregatorLock", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorLockParams" - } - } - ] - }, - { - "name": "aggregatorOpenRound", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "queueAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "permission", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "payoutWallet", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "dataBuffer", - "isMut": false, - "isSigner": false - }, - { - "name": "mint", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorOpenRoundParams" - } - } - ] - }, - { - "name": "aggregatorRemoveJob", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "job", - "isMut": true, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorRemoveJobParams" - } - } - ] - }, - { - "name": "aggregatorSaveResult", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "oracle", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "oracleQueue", - "isMut": false, - "isSigner": false - }, - { - "name": "queueAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "feedPermission", - "isMut": true, - "isSigner": false - }, - { - "name": "oraclePermission", - "isMut": false, - "isSigner": false - }, - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "historyBuffer", - "isMut": true, - "isSigner": false - }, - { - "name": "mint", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSaveResultParams" - } - } - ] - }, - { - "name": "aggregatorSetAuthority", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "newAuthority", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetAuthorityParams" - } - } - ] - }, - { - "name": "aggregatorSetBatchSize", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetBatchSizeParams" - } - } - ] - }, - { - "name": "aggregatorSetForceReportPeriod", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetForceReportPeriodParams" - } - } - ] - }, - { - "name": "aggregatorSetHistoryBuffer", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "buffer", - "isMut": true, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetHistoryBufferParams" - } - } - ] - }, - { - "name": "aggregatorSetMinJobs", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetMinJobsParams" - } - } - ] - }, - { - "name": "aggregatorSetMinOracles", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetMinOraclesParams" - } - } - ] - }, - { - "name": "aggregatorSetQueue", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetQueueParams" - } - } - ] - }, - { - "name": "aggregatorSetUpdateInterval", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetUpdateIntervalParams" - } - } - ] - }, - { - "name": "aggregatorSetVarianceThreshold", - "accounts": [ - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "AggregatorSetVarianceThresholdParams" - } - } - ] - }, - { - "name": "crankInit", - "accounts": [ - { - "name": "crank", - "isMut": true, - "isSigner": true - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - }, - { - "name": "buffer", - "isMut": true, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": true - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "CrankInitParams" - } - } - ] - }, - { - "name": "bufferRelayerInit", - "accounts": [ - { - "name": "bufferRelayer", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": false - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - }, - { - "name": "job", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "mint", - "isMut": false, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": true - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "associatedTokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "rent", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "BufferRelayerInitParams" - } - } - ] - }, - { - "name": "bufferRelayerOpenRound", - "accounts": [ - { - "name": "bufferRelayer", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "dataBuffer", - "isMut": true, - "isSigner": false - }, - { - "name": "permission", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "BufferRelayerOpenRoundParams" - } - } - ] - }, - { - "name": "bufferRelayerSaveResult", - "accounts": [ - { - "name": "bufferRelayer", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "oracle", - "isMut": false, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "dataBuffer", - "isMut": true, - "isSigner": false - }, - { - "name": "queueAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "permission", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleWallet", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "BufferRelayerSaveResultParams" - } - } - ] - }, - { - "name": "crankPop", - "accounts": [ - { - "name": "crank", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "queueAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "payoutWallet", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "crankDataBuffer", - "isMut": true, - "isSigner": false - }, - { - "name": "queueDataBuffer", - "isMut": false, - "isSigner": false - }, - { - "name": "mint", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "CrankPopParams" - } - } - ] - }, - { - "name": "crankPush", - "accounts": [ - { - "name": "crank", - "isMut": true, - "isSigner": false - }, - { - "name": "aggregator", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "queueAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "permission", - "isMut": false, - "isSigner": false - }, - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "dataBuffer", - "isMut": true, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "CrankPushParams" - } - } - ] - }, - { - "name": "jobInit", - "accounts": [ - { - "name": "job", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "JobInitParams" - } - } - ] - }, - { - "name": "leaseExtend", - "accounts": [ - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "aggregator", - "isMut": false, - "isSigner": false - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - }, - { - "name": "funder", - "isMut": true, - "isSigner": false - }, - { - "name": "owner", - "isMut": true, - "isSigner": true - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "mint", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "LeaseExtendParams" - } - } - ] - }, - { - "name": "leaseInit", - "accounts": [ - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "queue", - "isMut": true, - "isSigner": false - }, - { - "name": "aggregator", - "isMut": false, - "isSigner": false - }, - { - "name": "funder", - "isMut": true, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": true - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "owner", - "isMut": true, - "isSigner": true - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "mint", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "LeaseInitParams" - } - } - ] - }, - { - "name": "leaseSetAuthority", - "accounts": [ - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "withdrawAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "newAuthority", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "LeaseSetAuthorityParams" - } - } - ] - }, - { - "name": "leaseWithdraw", - "accounts": [ - { - "name": "lease", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "aggregator", - "isMut": false, - "isSigner": false - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - }, - { - "name": "withdrawAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "withdrawAccount", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "mint", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "LeaseWithdrawParams" - } - } - ] - }, - { - "name": "oracleHeartbeat", - "accounts": [ - { - "name": "oracle", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "tokenAccount", - "isMut": false, - "isSigner": false - }, - { - "name": "gcOracle", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "permission", - "isMut": false, - "isSigner": false - }, - { - "name": "dataBuffer", - "isMut": true, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "OracleHeartbeatParams" - } - } - ] - }, - { - "name": "oracleInit", - "accounts": [ - { - "name": "oracle", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "wallet", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "queue", - "isMut": false, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": true - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "OracleInitParams" - } - } - ] - }, - { - "name": "oracleQueueInit", - "accounts": [ - { - "name": "oracleQueue", - "isMut": true, - "isSigner": true - }, - { - "name": "authority", - "isMut": false, - "isSigner": false - }, - { - "name": "buffer", - "isMut": true, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": true - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "mint", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "OracleQueueInitParams" - } - } - ] - }, - { - "name": "oracleQueueSetRewards", - "accounts": [ - { - "name": "queue", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "OracleQueueSetRewardsParams" - } - } - ] - }, - { - "name": "oracleQueueVrfConfig", - "accounts": [ - { - "name": "queue", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "OracleQueueVrfConfigParams" - } - } - ] - }, - { - "name": "oracleWithdraw", - "accounts": [ - { - "name": "oracle", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "tokenAccount", - "isMut": true, - "isSigner": false - }, - { - "name": "withdrawAccount", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "permission", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": true - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "OracleWithdrawParams" - } - } - ] - }, - { - "name": "permissionInit", - "accounts": [ - { - "name": "permission", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": false - }, - { - "name": "granter", - "isMut": false, - "isSigner": false - }, - { - "name": "grantee", - "isMut": false, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": true - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "PermissionInitParams" - } - } - ] - }, - { - "name": "permissionSet", - "accounts": [ - { - "name": "permission", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "PermissionSetParams" - } - } - ] - }, - { - "name": "programConfig", - "accounts": [ - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "programState", - "isMut": true, - "isSigner": false - }, - { - "name": "daoMint", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "ProgramConfigParams" - } - } - ] - }, - { - "name": "programInit", - "accounts": [ - { - "name": "state", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenMint", - "isMut": true, - "isSigner": false - }, - { - "name": "vault", - "isMut": true, - "isSigner": false - }, - { - "name": "payer", - "isMut": true, - "isSigner": true - }, - { - "name": "systemProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "daoMint", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "ProgramInitParams" - } - } - ] - }, - { - "name": "vaultTransfer", - "accounts": [ - { - "name": "state", - "isMut": false, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "to", - "isMut": true, - "isSigner": false - }, - { - "name": "vault", - "isMut": true, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "VaultTransferParams" - } - } - ] - }, - { - "name": "vrfInit", - "accounts": [ - { - "name": "vrf", - "isMut": true, - "isSigner": false - }, - { - "name": "authority", - "isMut": false, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": false, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "VrfInitParams" - } - } - ] - }, - { - "name": "vrfProveAndVerify", - "accounts": [ - { - "name": "vrf", - "isMut": true, - "isSigner": false - }, - { - "name": "callbackPid", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "oracle", - "isMut": false, - "isSigner": false - }, - { - "name": "oracleAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "oracleWallet", - "isMut": true, - "isSigner": false - }, - { - "name": "instructionsSysvar", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "VrfProveAndVerifyParams" - } - } - ] - }, - { - "name": "vrfRequestRandomness", - "accounts": [ - { - "name": "authority", - "isMut": false, - "isSigner": true - }, - { - "name": "vrf", - "isMut": true, - "isSigner": false - }, - { - "name": "oracleQueue", - "isMut": true, - "isSigner": false - }, - { - "name": "queueAuthority", - "isMut": false, - "isSigner": false - }, - { - "name": "dataBuffer", - "isMut": false, - "isSigner": false - }, - { - "name": "permission", - "isMut": true, - "isSigner": false - }, - { - "name": "escrow", - "isMut": true, - "isSigner": false - }, - { - "name": "payerWallet", - "isMut": true, - "isSigner": false - }, - { - "name": "payerAuthority", - "isMut": false, - "isSigner": true - }, - { - "name": "recentBlockhashes", - "isMut": false, - "isSigner": false - }, - { - "name": "programState", - "isMut": false, - "isSigner": false - }, - { - "name": "tokenProgram", - "isMut": false, - "isSigner": false - } - ], - "args": [ - { - "name": "params", - "type": { - "defined": "VrfRequestRandomnessParams" - } - } - ] - } - ], - "accounts": [ - { - "name": "SbState", - "type": { - "kind": "struct", - "fields": [ - { - "name": "authority", - "type": "publicKey" - }, - { - "name": "tokenMint", - "type": "publicKey" - }, - { - "name": "tokenVault", - "type": "publicKey" - }, - { - "name": "daoMint", - "type": "publicKey" - }, - { - "name": "ebuf", - "type": { - "array": [ - "u8", - 992 - ] - } - } - ] - } - }, - { - "name": "TaskSpecRecord", - "type": { - "kind": "struct", - "fields": [ - { - "name": "hash", - "type": { - "defined": "Hash" - } - } - ] - } - }, - { - "name": "AggregatorAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "metadata", - "type": { - "array": [ - "u8", - 128 - ] - } - }, - { - "name": "reserved1", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "queuePubkey", - "type": "publicKey" - }, - { - "name": "oracleRequestBatchSize", - "type": "u32" - }, - { - "name": "minOracleResults", - "type": "u32" - }, - { - "name": "minJobResults", - "type": "u32" - }, - { - "name": "minUpdateDelaySeconds", - "type": "u32" - }, - { - "name": "startAfter", - "type": "i64" - }, - { - "name": "varianceThreshold", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "forceReportPeriod", - "type": "i64" - }, - { - "name": "expiration", - "type": "i64" - }, - { - "name": "consecutiveFailureCount", - "type": "u64" - }, - { - "name": "nextAllowedUpdateTime", - "type": "i64" - }, - { - "name": "isLocked", - "type": "bool" - }, - { - "name": "crankPubkey", - "type": "publicKey" - }, - { - "name": "latestConfirmedRound", - "type": { - "defined": "AggregatorRound" - } - }, - { - "name": "currentRound", - "type": { - "defined": "AggregatorRound" - } - }, - { - "name": "jobPubkeysData", - "type": { - "array": [ - "publicKey", - 16 - ] - } - }, - { - "name": "jobHashes", - "type": { - "array": [ - { - "defined": "Hash" - }, - 16 - ] - } - }, - { - "name": "jobPubkeysSize", - "type": "u32" - }, - { - "name": "jobsChecksum", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "authority", - "type": "publicKey" - }, - { - "name": "historyBuffer", - "type": "publicKey" - }, - { - "name": "previousConfirmedRoundResult", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "previousConfirmedRoundSlot", - "type": "u64" - }, - { - "name": "disableCrank", - "type": "bool" - }, - { - "name": "jobWeights", - "type": { - "array": [ - "u8", - 16 - ] - } - }, - { - "name": "creationTimestamp", - "type": "i64" - }, - { - "name": "ebuf", - "type": { - "array": [ - "u8", - 139 - ] - } - } - ] - } - }, - { - "name": "PermissionAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "authority", - "type": "publicKey" - }, - { - "name": "permissions", - "type": "u32" - }, - { - "name": "granter", - "type": "publicKey" - }, - { - "name": "grantee", - "type": "publicKey" - }, - { - "name": "expiration", - "type": "i64" - }, - { - "name": "ebuf", - "type": { - "array": [ - "u8", - 256 - ] - } - } - ] - } - }, - { - "name": "RealmSpawnRecordAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "ebuf", - "type": { - "array": [ - "u8", - 256 - ] - } - } - ] - } - }, - { - "name": "LeaseAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "escrow", - "type": "publicKey" - }, - { - "name": "queue", - "type": "publicKey" - }, - { - "name": "aggregator", - "type": "publicKey" - }, - { - "name": "tokenProgram", - "type": "publicKey" - }, - { - "name": "isActive", - "type": "bool" - }, - { - "name": "crankRowCount", - "type": "u32" - }, - { - "name": "createdAt", - "type": "i64" - }, - { - "name": "updateCount", - "type": "u128" - }, - { - "name": "withdrawAuthority", - "type": "publicKey" - }, - { - "name": "ebuf", - "type": { - "array": [ - "u8", - 256 - ] - } - } - ] - } - }, - { - "name": "OracleQueueAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "metadata", - "type": { - "array": [ - "u8", - 64 - ] - } - }, - { - "name": "authority", - "type": "publicKey" - }, - { - "name": "oracleTimeout", - "type": "u32" - }, - { - "name": "reward", - "type": "u64" - }, - { - "name": "minStake", - "type": "u64" - }, - { - "name": "slashingEnabled", - "type": "bool" - }, - { - "name": "varianceToleranceMultiplier", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "feedProbationPeriod", - "type": "u32" - }, - { - "name": "currIdx", - "type": "u32" - }, - { - "name": "size", - "type": "u32" - }, - { - "name": "gcIdx", - "type": "u32" - }, - { - "name": "consecutiveFeedFailureLimit", - "type": "u64" - }, - { - "name": "consecutiveOracleFailureLimit", - "type": "u64" - }, - { - "name": "unpermissionedFeedsEnabled", - "type": "bool" - }, - { - "name": "unpermissionedVrfEnabled", - "type": "bool" - }, - { - "name": "curatorRewardCut", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "lockLeaseFunding", - "type": "bool" - }, - { - "name": "mint", - "type": "publicKey" - }, - { - "name": "enableBufferRelayers", - "type": "bool" - }, - { - "name": "ebuf", - "type": { - "array": [ - "u8", - 968 - ] - } - }, - { - "name": "maxSize", - "type": "u32" - }, - { - "name": "dataBuffer", - "type": "publicKey" - } - ] - } - }, - { - "name": "CrankAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "metadata", - "type": { - "array": [ - "u8", - 64 - ] - } - }, - { - "name": "queuePubkey", - "type": "publicKey" - }, - { - "name": "pqSize", - "type": "u32" - }, - { - "name": "maxRows", - "type": "u32" - }, - { - "name": "jitterModifier", - "type": "u8" - }, - { - "name": "ebuf", - "type": { - "array": [ - "u8", - 255 - ] - } - }, - { - "name": "dataBuffer", - "type": "publicKey" - } - ] - } - }, - { - "name": "OracleAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "metadata", - "type": { - "array": [ - "u8", - 128 - ] - } - }, - { - "name": "oracleAuthority", - "type": "publicKey" - }, - { - "name": "lastHeartbeat", - "type": "i64" - }, - { - "name": "numInUse", - "type": "u32" - }, - { - "name": "tokenAccount", - "type": "publicKey" - }, - { - "name": "queuePubkey", - "type": "publicKey" - }, - { - "name": "metrics", - "type": { - "defined": "OracleMetrics" - } - }, - { - "name": "ebuf", - "type": { - "array": [ - "u8", - 256 - ] - } - } - ] - } - }, - { - "name": "JobAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "metadata", - "type": { - "array": [ - "u8", - 64 - ] - } - }, - { - "name": "authority", - "type": "publicKey" - }, - { - "name": "expiration", - "type": "i64" - }, - { - "name": "hash", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "data", - "type": "bytes" - }, - { - "name": "referenceCount", - "type": "u32" - }, - { - "name": "totalSpent", - "type": "u64" - }, - { - "name": "createdAt", - "type": "i64" - } - ] - } - }, - { - "name": "VrfAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "status", - "type": { - "defined": "VrfStatus" - } - }, - { - "name": "counter", - "type": "u128" - }, - { - "name": "authority", - "type": "publicKey" - }, - { - "name": "oracleQueue", - "type": "publicKey" - }, - { - "name": "escrow", - "type": "publicKey" - }, - { - "name": "callback", - "type": { - "defined": "CallbackZC" - } - }, - { - "name": "batchSize", - "type": "u32" - }, - { - "name": "builders", - "type": { - "array": [ - { - "defined": "VrfBuilder" - }, - 8 - ] - } - }, - { - "name": "buildersLen", - "type": "u32" - }, - { - "name": "testMode", - "type": "bool" - }, - { - "name": "currentRound", - "type": { - "defined": "VrfRound" - } - }, - { - "name": "ebuf", - "type": { - "array": [ - "u8", - 1024 - ] - } - } - ] - } - }, - { - "name": "BufferRelayerAccountData", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "queuePubkey", - "type": "publicKey" - }, - { - "name": "escrow", - "type": "publicKey" - }, - { - "name": "authority", - "type": "publicKey" - }, - { - "name": "jobPubkey", - "type": "publicKey" - }, - { - "name": "jobHash", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "minUpdateDelaySeconds", - "type": "u32" - }, - { - "name": "isLocked", - "type": "bool" - }, - { - "name": "currentRound", - "type": { - "defined": "BufferRelayerRound" - } - }, - { - "name": "latestConfirmedRound", - "type": { - "defined": "BufferRelayerRound" - } - }, - { - "name": "result", - "type": "bytes" - } - ] - } - } - ], - "types": [ - { - "name": "AggregatorAddJobParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "weight", - "type": { - "option": "u8" - } - } - ] - } - }, - { - "name": "AggregatorInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "metadata", - "type": { - "array": [ - "u8", - 128 - ] - } - }, - { - "name": "batchSize", - "type": "u32" - }, - { - "name": "minOracleResults", - "type": "u32" - }, - { - "name": "minJobResults", - "type": "u32" - }, - { - "name": "minUpdateDelaySeconds", - "type": "u32" - }, - { - "name": "startAfter", - "type": "i64" - }, - { - "name": "varianceThreshold", - "type": { - "defined": "BorshDecimal" - } - }, - { - "name": "forceReportPeriod", - "type": "i64" - }, - { - "name": "expiration", - "type": "i64" - }, - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "disableCrank", - "type": "bool" - } - ] - } - }, - { - "name": "AggregatorLockParams", - "type": { - "kind": "struct", - "fields": [] - } - }, - { - "name": "AggregatorOpenRoundParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "leaseBump", - "type": "u8" - }, - { - "name": "permissionBump", - "type": "u8" - }, - { - "name": "jitter", - "type": "u8" - } - ] - } - }, - { - "name": "AggregatorRemoveJobParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "jobIdx", - "type": "u32" - } - ] - } - }, - { - "name": "AggregatorSaveResultParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "oracleIdx", - "type": "u32" - }, - { - "name": "error", - "type": "bool" - }, - { - "name": "value", - "type": { - "defined": "BorshDecimal" - } - }, - { - "name": "jobsChecksum", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "minResponse", - "type": { - "defined": "BorshDecimal" - } - }, - { - "name": "maxResponse", - "type": { - "defined": "BorshDecimal" - } - }, - { - "name": "feedPermissionBump", - "type": "u8" - }, - { - "name": "oraclePermissionBump", - "type": "u8" - }, - { - "name": "leaseBump", - "type": "u8" - }, - { - "name": "stateBump", - "type": "u8" - } - ] - } - }, - { - "name": "AggregatorSetAuthorityParams", - "type": { - "kind": "struct", - "fields": [] - } - }, - { - "name": "AggregatorSetBatchSizeParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "batchSize", - "type": "u32" - } - ] - } - }, - { - "name": "AggregatorSetForceReportPeriodParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "forceReportPeriod", - "type": "u32" - } - ] - } - }, - { - "name": "AggregatorSetHistoryBufferParams", - "type": { - "kind": "struct", - "fields": [] - } - }, - { - "name": "AggregatorSetMinJobsParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "minJobResults", - "type": "u32" - } - ] - } - }, - { - "name": "AggregatorSetMinOraclesParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "minOracleResults", - "type": "u32" - } - ] - } - }, - { - "name": "AggregatorSetQueueParams", - "type": { - "kind": "struct", - "fields": [] - } - }, - { - "name": "AggregatorSetUpdateIntervalParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "newInterval", - "type": "u32" - } - ] - } - }, - { - "name": "AggregatorSetVarianceThresholdParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "varianceThreshold", - "type": { - "defined": "BorshDecimal" - } - } - ] - } - }, - { - "name": "BufferRelayerInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "minUpdateDelaySeconds", - "type": "u32" - }, - { - "name": "stateBump", - "type": "u8" - } - ] - } - }, - { - "name": "BufferRelayerOpenRoundParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "permissionBump", - "type": "u8" - } - ] - } - }, - { - "name": "BufferRelayerSaveResultParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "permissionBump", - "type": "u8" - }, - { - "name": "result", - "type": "bytes" - }, - { - "name": "success", - "type": "bool" - } - ] - } - }, - { - "name": "CrankInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": "bytes" - }, - { - "name": "metadata", - "type": "bytes" - }, - { - "name": "crankSize", - "type": "u32" - } - ] - } - }, - { - "name": "CrankPopParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "leaseBumps", - "type": "bytes" - }, - { - "name": "permissionBumps", - "type": "bytes" - }, - { - "name": "nonce", - "type": { - "option": "u32" - } - }, - { - "name": "failOpenOnAccountMismatch", - "type": { - "option": "bool" - } - } - ] - } - }, - { - "name": "CrankPushParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "permissionBump", - "type": "u8" - }, - { - "name": "notifiRef", - "type": { - "option": { - "array": [ - "u8", - 64 - ] - } - } - } - ] - } - }, - { - "name": "JobInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "expiration", - "type": "i64" - }, - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "data", - "type": "bytes" - } - ] - } - }, - { - "name": "LeaseExtendParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "loadAmount", - "type": "u64" - }, - { - "name": "leaseBump", - "type": "u8" - }, - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "walletBumps", - "type": "bytes" - } - ] - } - }, - { - "name": "LeaseInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "loadAmount", - "type": "u64" - }, - { - "name": "withdrawAuthority", - "type": "publicKey" - }, - { - "name": "leaseBump", - "type": "u8" - }, - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "walletBumps", - "type": "bytes" - } - ] - } - }, - { - "name": "LeaseSetAuthorityParams", - "type": { - "kind": "struct", - "fields": [] - } - }, - { - "name": "LeaseWithdrawParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "leaseBump", - "type": "u8" - }, - { - "name": "amount", - "type": "u64" - } - ] - } - }, - { - "name": "OracleHeartbeatParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "permissionBump", - "type": "u8" - } - ] - } - }, - { - "name": "OracleInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": "bytes" - }, - { - "name": "metadata", - "type": "bytes" - }, - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "oracleBump", - "type": "u8" - } - ] - } - }, - { - "name": "OracleQueueInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "name", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "metadata", - "type": { - "array": [ - "u8", - 64 - ] - } - }, - { - "name": "reward", - "type": "u64" - }, - { - "name": "minStake", - "type": "u64" - }, - { - "name": "feedProbationPeriod", - "type": "u32" - }, - { - "name": "oracleTimeout", - "type": "u32" - }, - { - "name": "slashingEnabled", - "type": "bool" - }, - { - "name": "varianceToleranceMultiplier", - "type": { - "defined": "BorshDecimal" - } - }, - { - "name": "consecutiveFeedFailureLimit", - "type": "u64" - }, - { - "name": "consecutiveOracleFailureLimit", - "type": "u64" - }, - { - "name": "queueSize", - "type": "u32" - }, - { - "name": "unpermissionedFeeds", - "type": "bool" - }, - { - "name": "unpermissionedVrf", - "type": "bool" - }, - { - "name": "enableBufferRelayers", - "type": "bool" - } - ] - } - }, - { - "name": "OracleQueueSetRewardsParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "rewards", - "type": "u64" - } - ] - } - }, - { - "name": "OracleQueueVrfConfigParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "unpermissionedVrfEnabled", - "type": "bool" - } - ] - } - }, - { - "name": "OracleWithdrawParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "permissionBump", - "type": "u8" - }, - { - "name": "amount", - "type": "u64" - } - ] - } - }, - { - "name": "PermissionInitParams", - "type": { - "kind": "struct", - "fields": [] - } - }, - { - "name": "PermissionSetParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "permission", - "type": { - "defined": "SwitchboardPermission" - } - }, - { - "name": "enable", - "type": "bool" - } - ] - } - }, - { - "name": "ProgramConfigParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "token", - "type": "publicKey" - }, - { - "name": "bump", - "type": "u8" - }, - { - "name": "daoMint", - "type": "publicKey" - } - ] - } - }, - { - "name": "ProgramInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - } - ] - } - }, - { - "name": "VaultTransferParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "amount", - "type": "u64" - } - ] - } - }, - { - "name": "VrfInitParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "callback", - "type": { - "defined": "Callback" - } - }, - { - "name": "stateBump", - "type": "u8" - } - ] - } - }, - { - "name": "VrfProveParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "proof", - "type": "bytes" - }, - { - "name": "idx", - "type": "u32" - } - ] - } - }, - { - "name": "VrfProveAndVerifyParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "nonce", - "type": { - "option": "u32" - } - }, - { - "name": "stateBump", - "type": "u8" - }, - { - "name": "idx", - "type": "u32" - }, - { - "name": "proof", - "type": "bytes" - }, - { - "name": "proofEncoded", - "type": "string" - }, - { - "name": "counter", - "type": "u128" - } - ] - } - }, - { - "name": "VrfRequestRandomnessParams", - "type": { - "kind": "struct", - "fields": [ - { - "name": "permissionBump", - "type": "u8" - }, - { - "name": "stateBump", - "type": "u8" - } - ] - } - }, - { - "name": "Callback", - "type": { - "kind": "struct", - "fields": [ - { - "name": "programId", - "type": "publicKey" - }, - { - "name": "accounts", - "type": { - "vec": { - "defined": "AccountMetaBorsh" - } - } - }, - { - "name": "ixData", - "type": "bytes" - } - ] - } - }, - { - "name": "EcvrfProofZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "gamma", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "c", - "type": { - "defined": "Scalar" - } - }, - { - "name": "s", - "type": { - "defined": "Scalar" - } - } - ] - } - }, - { - "name": "Scalar", - "type": { - "kind": "struct", - "fields": [ - { - "name": "bytes", - "type": { - "array": [ - "u8", - 32 - ] - } - } - ] - } - }, - { - "name": "FieldElementZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "bytes", - "type": { - "array": [ - "u64", - 5 - ] - } - } - ] - } - }, - { - "name": "CompletedPointZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "x", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "y", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "z", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "t", - "type": { - "defined": "FieldElementZC" - } - } - ] - } - }, - { - "name": "EdwardsPointZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "x", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "y", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "z", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "t", - "type": { - "defined": "FieldElementZC" - } - } - ] - } - }, - { - "name": "ProjectivePointZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "x", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "y", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "z", - "type": { - "defined": "FieldElementZC" - } - } - ] - } - }, - { - "name": "EcvrfIntermediate", - "type": { - "kind": "struct", - "fields": [ - { - "name": "r", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "nS", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "d", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "t13", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "t15", - "type": { - "defined": "FieldElementZC" - } - } - ] - } - }, - { - "name": "Hash", - "type": { - "kind": "struct", - "fields": [ - { - "name": "data", - "type": { - "array": [ - "u8", - 32 - ] - } - } - ] - } - }, - { - "name": "AggregatorRound", - "type": { - "kind": "struct", - "fields": [ - { - "name": "numSuccess", - "type": "u32" - }, - { - "name": "numError", - "type": "u32" - }, - { - "name": "isClosed", - "type": "bool" - }, - { - "name": "roundOpenSlot", - "type": "u64" - }, - { - "name": "roundOpenTimestamp", - "type": "i64" - }, - { - "name": "result", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "stdDeviation", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "minResponse", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "maxResponse", - "type": { - "defined": "SwitchboardDecimal" - } - }, - { - "name": "oraclePubkeysData", - "type": { - "array": [ - "publicKey", - 16 - ] - } - }, - { - "name": "mediansData", - "type": { - "array": [ - { - "defined": "SwitchboardDecimal" - }, - 16 - ] - } - }, - { - "name": "currentPayout", - "type": { - "array": [ - "i64", - 16 - ] - } - }, - { - "name": "mediansFulfilled", - "type": { - "array": [ - "bool", - 16 - ] - } - }, - { - "name": "errorsFulfilled", - "type": { - "array": [ - "bool", - 16 - ] - } - } - ] - } - }, - { - "name": "AggregatorHistoryRow", - "type": { - "kind": "struct", - "fields": [ - { - "name": "timestamp", - "type": "i64" - }, - { - "name": "value", - "type": { - "defined": "SwitchboardDecimal" - } - } - ] - } - }, - { - "name": "SwitchboardDecimal", - "type": { - "kind": "struct", - "fields": [ - { - "name": "mantissa", - "type": "i128" - }, - { - "name": "scale", - "type": "u32" - } - ] - } - }, - { - "name": "CrankRow", - "type": { - "kind": "struct", - "fields": [ - { - "name": "pubkey", - "type": "publicKey" - }, - { - "name": "nextTimestamp", - "type": "i64" - } - ] - } - }, - { - "name": "OracleMetrics", - "type": { - "kind": "struct", - "fields": [ - { - "name": "consecutiveSuccess", - "type": "u64" - }, - { - "name": "consecutiveError", - "type": "u64" - }, - { - "name": "consecutiveDisagreement", - "type": "u64" - }, - { - "name": "consecutiveLateResponse", - "type": "u64" - }, - { - "name": "consecutiveFailure", - "type": "u64" - }, - { - "name": "totalSuccess", - "type": "u128" - }, - { - "name": "totalError", - "type": "u128" - }, - { - "name": "totalDisagreement", - "type": "u128" - }, - { - "name": "totalLateResponse", - "type": "u128" - } - ] - } - }, - { - "name": "VrfBuilder", - "type": { - "kind": "struct", - "fields": [ - { - "name": "producer", - "type": "publicKey" - }, - { - "name": "status", - "type": { - "defined": "VrfStatus" - } - }, - { - "name": "reprProof", - "type": { - "array": [ - "u8", - 80 - ] - } - }, - { - "name": "proof", - "type": { - "defined": "EcvrfProofZC" - } - }, - { - "name": "yPoint", - "type": "publicKey" - }, - { - "name": "stage", - "type": "u32" - }, - { - "name": "stage1Out", - "type": { - "defined": "EcvrfIntermediate" - } - }, - { - "name": "r1", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "r2", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "stage3Out", - "type": { - "defined": "EcvrfIntermediate" - } - }, - { - "name": "hPoint", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "sReduced", - "type": { - "defined": "Scalar" - } - }, - { - "name": "yPointBuilder", - "type": { - "array": [ - { - "defined": "FieldElementZC" - }, - 3 - ] - } - }, - { - "name": "yRistrettoPoint", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "mulRound", - "type": "u8" - }, - { - "name": "hashPointsRound", - "type": "u8" - }, - { - "name": "mulTmp1", - "type": { - "defined": "CompletedPointZC" - } - }, - { - "name": "uPoint1", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "uPoint2", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "vPoint1", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "vPoint2", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "uPoint", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "vPoint", - "type": { - "defined": "EdwardsPointZC" - } - }, - { - "name": "u1", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "u2", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "invertee", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "y", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "z", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "p1Bytes", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "p2Bytes", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "p3Bytes", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "p4Bytes", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "cPrimeHashbuf", - "type": { - "array": [ - "u8", - 16 - ] - } - }, - { - "name": "m1", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "m2", - "type": { - "defined": "FieldElementZC" - } - }, - { - "name": "txRemaining", - "type": "u32" - }, - { - "name": "verified", - "type": "bool" - }, - { - "name": "result", - "type": { - "array": [ - "u8", - 32 - ] - } - } - ] - } - }, - { - "name": "AccountMetaZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "pubkey", - "type": "publicKey" - }, - { - "name": "isSigner", - "type": "bool" - }, - { - "name": "isWritable", - "type": "bool" - } - ] - } - }, - { - "name": "AccountMetaBorsh", - "type": { - "kind": "struct", - "fields": [ - { - "name": "pubkey", - "type": "publicKey" - }, - { - "name": "isSigner", - "type": "bool" - }, - { - "name": "isWritable", - "type": "bool" - } - ] - } - }, - { - "name": "CallbackZC", - "type": { - "kind": "struct", - "fields": [ - { - "name": "programId", - "type": "publicKey" - }, - { - "name": "accounts", - "type": { - "array": [ - { - "defined": "AccountMetaZC" - }, - 32 - ] - } - }, - { - "name": "accountsLen", - "type": "u32" - }, - { - "name": "ixData", - "type": { - "array": [ - "u8", - 1024 - ] - } - }, - { - "name": "ixDataLen", - "type": "u32" - } - ] - } - }, - { - "name": "VrfRound", - "type": { - "kind": "struct", - "fields": [ - { - "name": "alpha", - "type": { - "array": [ - "u8", - 256 - ] - } - }, - { - "name": "alphaLen", - "type": "u32" - }, - { - "name": "requestSlot", - "type": "u64" - }, - { - "name": "requestTimestamp", - "type": "i64" - }, - { - "name": "result", - "type": { - "array": [ - "u8", - 32 - ] - } - }, - { - "name": "numVerified", - "type": "u32" - }, - { - "name": "ebuf", - "type": { - "array": [ - "u8", - 256 - ] - } - } - ] - } - }, - { - "name": "BufferRelayerRound", - "type": { - "kind": "struct", - "fields": [ - { - "name": "numSuccess", - "type": "u32" - }, - { - "name": "numError", - "type": "u32" - }, - { - "name": "roundOpenSlot", - "type": "u64" - }, - { - "name": "roundOpenTimestamp", - "type": "i64" - }, - { - "name": "oraclePubkey", - "type": "publicKey" - } - ] - } - }, - { - "name": "BorshDecimal", - "type": { - "kind": "struct", - "fields": [ - { - "name": "mantissa", - "type": "i128" - }, - { - "name": "scale", - "type": "u32" - } - ] - } - }, - { - "name": "Lanes", - "type": { - "kind": "enum", - "variants": [ - { - "name": "C" - }, - { - "name": "D" - }, - { - "name": "AB" - }, - { - "name": "AC" - }, - { - "name": "CD" - }, - { - "name": "AD" - }, - { - "name": "BC" - }, - { - "name": "ABCD" - } - ] - } - }, - { - "name": "Shuffle", - "type": { - "kind": "enum", - "variants": [ - { - "name": "AAAA" - }, - { - "name": "BBBB" - }, - { - "name": "CACA" - }, - { - "name": "DBBD" - }, - { - "name": "ADDA" - }, - { - "name": "CBCB" - }, - { - "name": "ABAB" - }, - { - "name": "BADC" - }, - { - "name": "BACD" - }, - { - "name": "ABDC" - } - ] - } - }, - { - "name": "Shuffle", - "type": { - "kind": "enum", - "variants": [ - { - "name": "AAAA" - }, - { - "name": "BBBB" - }, - { - "name": "BADC" - }, - { - "name": "BACD" - }, - { - "name": "ADDA" - }, - { - "name": "CBCB" - }, - { - "name": "ABDC" - }, - { - "name": "ABAB" - }, - { - "name": "DBBD" - }, - { - "name": "CACA" - } - ] - } - }, - { - "name": "Lanes", - "type": { - "kind": "enum", - "variants": [ - { - "name": "D" - }, - { - "name": "C" - }, - { - "name": "AB" - }, - { - "name": "AC" - }, - { - "name": "AD" - }, - { - "name": "BCD" - } - ] - } - }, - { - "name": "Error", - "type": { - "kind": "enum", - "variants": [ - { - "name": "InvalidPublicKey" - }, - { - "name": "SerializationError", - "fields": [ - { - "defined": "bincode::Error" - } - ] - }, - { - "name": "DeserializationError", - "fields": [ - { - "defined": "bincode::Error" - } - ] - }, - { - "name": "InvalidDataError" - } - ] - } - }, - { - "name": "SwitchboardPermission", - "type": { - "kind": "enum", - "variants": [ - { - "name": "PermitOracleHeartbeat" - }, - { - "name": "PermitOracleQueueUsage" - }, - { - "name": "PermitVrfRequests" - } - ] - } - }, - { - "name": "OracleResponseType", - "type": { - "kind": "enum", - "variants": [ - { - "name": "TypeSuccess" - }, - { - "name": "TypeError" - }, - { - "name": "TypeDisagreement" - }, - { - "name": "TypeNoResponse" - } - ] - } - }, - { - "name": "VrfStatus", - "type": { - "kind": "enum", - "variants": [ - { - "name": "StatusNone" - }, - { - "name": "StatusRequesting" - }, - { - "name": "StatusVerifying" - }, - { - "name": "StatusVerified" - }, - { - "name": "StatusCallbackSuccess" - }, - { - "name": "StatusVerifyFailure" - } - ] - } - } - ], - "events": [ - { - "name": "AggregatorInitEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "VrfRequestRandomnessEvent", - "fields": [ - { - "name": "vrfPubkey", - "type": "publicKey", - "index": true - }, - { - "name": "oraclePubkeys", - "type": { - "vec": "publicKey" - }, - "index": false - }, - { - "name": "loadAmount", - "type": "u64", - "index": false - }, - { - "name": "existingAmount", - "type": "u64", - "index": false - }, - { - "name": "alpha", - "type": "bytes", - "index": false - }, - { - "name": "counter", - "type": "u128", - "index": false - } - ] - }, - { - "name": "VrfRequestEvent", - "fields": [ - { - "name": "vrfPubkey", - "type": "publicKey", - "index": true - }, - { - "name": "oraclePubkeys", - "type": { - "vec": "publicKey" - }, - "index": false - } - ] - }, - { - "name": "VrfProveEvent", - "fields": [ - { - "name": "vrfPubkey", - "type": "publicKey", - "index": true - }, - { - "name": "oraclePubkey", - "type": "publicKey", - "index": true - }, - { - "name": "authorityPubkey", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "VrfVerifyEvent", - "fields": [ - { - "name": "vrfPubkey", - "type": "publicKey", - "index": true - }, - { - "name": "oraclePubkey", - "type": "publicKey", - "index": true - }, - { - "name": "authorityPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "amount", - "type": "u64", - "index": false - } - ] - }, - { - "name": "VrfCallbackPerformedEvent", - "fields": [ - { - "name": "vrfPubkey", - "type": "publicKey", - "index": true - }, - { - "name": "oraclePubkey", - "type": "publicKey", - "index": true - }, - { - "name": "amount", - "type": "u64", - "index": false - } - ] - }, - { - "name": "AggregatorOpenRoundEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "oraclePubkeys", - "type": { - "vec": "publicKey" - }, - "index": false - }, - { - "name": "jobPubkeys", - "type": { - "vec": "publicKey" - }, - "index": false - }, - { - "name": "remainingFunds", - "type": "u64", - "index": false - }, - { - "name": "queueAuthority", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "AggregatorValueUpdateEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "value", - "type": { - "defined": "BorshDecimal" - }, - "index": false - }, - { - "name": "slot", - "type": "u64", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - }, - { - "name": "oraclePubkeys", - "type": { - "vec": "publicKey" - }, - "index": false - }, - { - "name": "oracleValues", - "type": { - "vec": { - "defined": "BorshDecimal" - } - }, - "index": false - } - ] - }, - { - "name": "OracleRewardEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "leasePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "oraclePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "walletPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "amount", - "type": "u64", - "index": false - }, - { - "name": "roundSlot", - "type": "u64", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "OracleWithdrawEvent", - "fields": [ - { - "name": "oraclePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "walletPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "destinationWallet", - "type": "publicKey", - "index": false - }, - { - "name": "previousAmount", - "type": "u64", - "index": false - }, - { - "name": "newAmount", - "type": "u64", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "LeaseWithdrawEvent", - "fields": [ - { - "name": "leasePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "walletPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "previousAmount", - "type": "u64", - "index": false - }, - { - "name": "newAmount", - "type": "u64", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "OracleSlashEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "leasePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "oraclePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "walletPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "amount", - "type": "u64", - "index": false - }, - { - "name": "roundSlot", - "type": "u64", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "LeaseFundEvent", - "fields": [ - { - "name": "leasePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "funder", - "type": "publicKey", - "index": false - }, - { - "name": "amount", - "type": "u64", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "ProbationBrokenEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "queuePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "FeedPermissionRevokedEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "GarbageCollectFailureEvent", - "fields": [ - { - "name": "queuePubkey", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "OracleBootedEvent", - "fields": [ - { - "name": "queuePubkey", - "type": "publicKey", - "index": false - }, - { - "name": "oraclePubkey", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "AggregatorCrankEvictionEvent", - "fields": [ - { - "name": "crankPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "aggregatorPubkey", - "type": "publicKey", - "index": true - }, - { - "name": "reason", - "type": { - "option": "u32" - }, - "index": false - }, - { - "name": "timestamp", - "type": "i64", - "index": false - } - ] - }, - { - "name": "CrankLeaseInsufficientFundsEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "leasePubkey", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "CrankPopExpectedFailureEvent", - "fields": [ - { - "name": "feedPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "leasePubkey", - "type": "publicKey", - "index": false - } - ] - }, - { - "name": "BufferRelayerOpenRoundEvent", - "fields": [ - { - "name": "relayerPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "jobPubkey", - "type": "publicKey", - "index": false - }, - { - "name": "oraclePubkeys", - "type": { - "vec": "publicKey" - }, - "index": false - }, - { - "name": "remainingFunds", - "type": "u64", - "index": false - }, - { - "name": "queue", - "type": "publicKey", - "index": false - } - ] - } - ], - "errors": [ - { - "code": 6000, - "name": "ArrayOperationError", - "msg": "Illegal operation on a Switchboard array." - }, - { - "code": 6001, - "name": "QueueOperationError", - "msg": "Illegal operation on a Switchboard queue." - }, - { - "code": 6002, - "name": "IncorrectProgramOwnerError", - "msg": "An account required to be owned by the program has a different owner." - }, - { - "code": 6003, - "name": "InvalidAggregatorRound", - "msg": "Aggregator is not currently populated with a valid round." - }, - { - "code": 6004, - "name": "TooManyAggregatorJobs", - "msg": "Aggregator cannot fit any more jobs." - }, - { - "code": 6005, - "name": "AggregatorCurrentRoundClosed", - "msg": "Aggregator's current round is closed. No results are being accepted." - }, - { - "code": 6006, - "name": "AggregatorInvalidSaveResult", - "msg": "Aggregator received an invalid save result instruction." - }, - { - "code": 6007, - "name": "InvalidStrDecimalConversion", - "msg": "Failed to convert string to decimal format." - }, - { - "code": 6008, - "name": "AccountLoaderMissingSignature", - "msg": "AccountLoader account is missing a required signature." - }, - { - "code": 6009, - "name": "MissingRequiredSignature", - "msg": "Account is missing a required signature." - }, - { - "code": 6010, - "name": "ArrayOverflowError", - "msg": "The attempted action will overflow a zero-copy account array." - }, - { - "code": 6011, - "name": "ArrayUnderflowError", - "msg": "The attempted action will underflow a zero-copy account array." - }, - { - "code": 6012, - "name": "PubkeyNotFoundError", - "msg": "The queried public key was not found." - }, - { - "code": 6013, - "name": "AggregatorIllegalRoundOpenCall", - "msg": "Aggregator round open called too early." - }, - { - "code": 6014, - "name": "AggregatorIllegalRoundCloseCall", - "msg": "Aggregator round close called too early." - }, - { - "code": 6015, - "name": "AggregatorClosedError", - "msg": "Aggregator is closed. Illegal action." - }, - { - "code": 6016, - "name": "IllegalOracleIdxError", - "msg": "Illegal oracle index." - }, - { - "code": 6017, - "name": "OracleAlreadyRespondedError", - "msg": "The provided oracle has already responded this round." - }, - { - "code": 6018, - "name": "ProtoDeserializeError", - "msg": "Failed to deserialize protocol buffer." - }, - { - "code": 6019, - "name": "UnauthorizedStateUpdateError", - "msg": "Unauthorized program state modification attempted." - }, - { - "code": 6020, - "name": "MissingOracleAccountsError", - "msg": "Not enough oracle accounts provided to closeRounds." - }, - { - "code": 6021, - "name": "OracleMismatchError", - "msg": "An unexpected oracle account was provided for the transaction." - }, - { - "code": 6022, - "name": "CrankMaxCapacityError", - "msg": "Attempted to push to a Crank that's at capacity" - }, - { - "code": 6023, - "name": "AggregatorLeaseInsufficientFunds", - "msg": "Aggregator update call attempted but attached lease has insufficient funds." - }, - { - "code": 6024, - "name": "IncorrectTokenAccountMint", - "msg": "The provided token account does not point to the Switchboard token mint." - }, - { - "code": 6025, - "name": "InvalidEscrowAccount", - "msg": "An invalid escrow account was provided." - }, - { - "code": 6026, - "name": "CrankEmptyError", - "msg": "Crank empty. Pop failed." - }, - { - "code": 6027, - "name": "PdaDeriveError", - "msg": "Failed to derive a PDA from the provided seed." - }, - { - "code": 6028, - "name": "AggregatorAccountNotFound", - "msg": "Aggregator account missing from provided account list." - }, - { - "code": 6029, - "name": "PermissionAccountNotFound", - "msg": "Permission account missing from provided account list." - }, - { - "code": 6030, - "name": "LeaseAccountDeriveFailure", - "msg": "Failed to derive a lease account." - }, - { - "code": 6031, - "name": "PermissionAccountDeriveFailure", - "msg": "Failed to derive a permission account." - }, - { - "code": 6032, - "name": "EscrowAccountNotFound", - "msg": "Escrow account missing from provided account list." - }, - { - "code": 6033, - "name": "LeaseAccountNotFound", - "msg": "Lease account missing from provided account list." - }, - { - "code": 6034, - "name": "DecimalConversionError", - "msg": "Decimal conversion method failed." - }, - { - "code": 6035, - "name": "PermissionDenied", - "msg": "Permission account is missing required flags for the given action." - }, - { - "code": 6036, - "name": "QueueAtCapacity", - "msg": "Oracle queue is at lease capacity." - }, - { - "code": 6037, - "name": "ExcessiveCrankRowsError", - "msg": "Data feed is already pushed on a crank." - }, - { - "code": 6038, - "name": "AggregatorLockedError", - "msg": "Aggregator is locked, no setting modifications or job additions allowed." - }, - { - "code": 6039, - "name": "AggregatorInvalidBatchSizeError", - "msg": "Aggregator invalid batch size." - }, - { - "code": 6040, - "name": "AggregatorJobChecksumMismatch", - "msg": "Oracle provided an incorrect aggregator job checksum." - }, - { - "code": 6041, - "name": "IntegerOverflowError", - "msg": "An integer overflow occurred." - }, - { - "code": 6042, - "name": "InvalidUpdatePeriodError", - "msg": "Minimum update period is 5 seconds." - }, - { - "code": 6043, - "name": "NoResultsError", - "msg": "Aggregator round evaluation attempted with no results." - }, - { - "code": 6044, - "name": "InvalidExpirationError", - "msg": "An expiration constraint was broken." - }, - { - "code": 6045, - "name": "InsufficientStakeError", - "msg": "An account provided insufficient stake for action." - }, - { - "code": 6046, - "name": "LeaseInactiveError", - "msg": "The provided lease account is not active." - }, - { - "code": 6047, - "name": "NoAggregatorJobsFound", - "msg": "No jobs are currently included in the aggregator." - }, - { - "code": 6048, - "name": "IntegerUnderflowError", - "msg": "An integer underflow occurred." - }, - { - "code": 6049, - "name": "OracleQueueMismatch", - "msg": "An invalid oracle queue account was provided." - }, - { - "code": 6050, - "name": "OracleWalletMismatchError", - "msg": "An unexpected oracle wallet account was provided for the transaction." - }, - { - "code": 6051, - "name": "InvalidBufferAccountError", - "msg": "An invalid buffer account was provided." - }, - { - "code": 6052, - "name": "InsufficientOracleQueueError", - "msg": "Insufficient oracle queue size." - }, - { - "code": 6053, - "name": "InvalidAuthorityError", - "msg": "Invalid authority account provided." - }, - { - "code": 6054, - "name": "InvalidTokenAccountMintError", - "msg": "A provided token wallet is associated with an incorrect mint." - }, - { - "code": 6055, - "name": "ExcessiveLeaseWithdrawlError", - "msg": "You must leave enough funds to perform at least 1 update in the lease." - }, - { - "code": 6056, - "name": "InvalideHistoryAccountError", - "msg": "Invalid history account provided." - }, - { - "code": 6057, - "name": "InvalidLeaseAccountEscrowError", - "msg": "Invalid lease account escrow." - }, - { - "code": 6058, - "name": "InvalidCrankAccountError", - "msg": "Invalid crank provided." - }, - { - "code": 6059, - "name": "CrankNoElementsReadyError", - "msg": "No elements ready to be popped." - }, - { - "code": 6060, - "name": "IndexOutOfBoundsError", - "msg": "Index out of bounds" - }, - { - "code": 6061, - "name": "VrfInvalidRequestError", - "msg": "Invalid vrf request params" - }, - { - "code": 6062, - "name": "VrfInvalidProofSubmissionError", - "msg": "Vrf proof failed to verify" - }, - { - "code": 6063, - "name": "VrfVerifyError", - "msg": "Error in verifying vrf proof." - }, - { - "code": 6064, - "name": "VrfCallbackError", - "msg": "Vrf callback function failed." - }, - { - "code": 6065, - "name": "VrfCallbackParamsError", - "msg": "Invalid vrf callback params provided." - }, - { - "code": 6066, - "name": "VrfCallbackAlreadyCalledError", - "msg": "Vrf callback has already been triggered." - }, - { - "code": 6067, - "name": "VrfInvalidPubkeyError", - "msg": "The provided pubkey is invalid to use in ecvrf proofs" - }, - { - "code": 6068, - "name": "VrfTooManyVerifyCallsError", - "msg": "Number of required verify calls exceeded" - }, - { - "code": 6069, - "name": "VrfRequestAlreadyLaunchedError", - "msg": "Vrf request is already pending" - }, - { - "code": 6070, - "name": "VrfInsufficientVerificationError", - "msg": "Insufficient amount of proofs collected for VRF callback" - }, - { - "code": 6071, - "name": "InvalidVrfProducerError", - "msg": "An incorrect oracle attempted to submit a proof" - }, - { - "code": 6072, - "name": "InvalidGovernancePidError", - "msg": "Invalid SPLGovernance Account Supplied" - }, - { - "code": 6073, - "name": "InvalidGovernanceAccountError", - "msg": "An Invalid Governance Account was supplied" - }, - { - "code": 6074, - "name": "MissingOptionalAccount", - "msg": "Expected an optional account" - }, - { - "code": 6075, - "name": "InvalidSpawnRecordOwner", - "msg": "Invalid Owner for Spawn Record" - }, - { - "code": 6076, - "name": "NoopError", - "msg": "Noop error" - }, - { - "code": 6077, - "name": "MissingRequiredAccountsError", - "msg": "A required instruction account was not included" - }, - { - "code": 6078, - "name": "InvalidMintError", - "msg": "Invalid mint account passed for instruction" - }, - { - "code": 6079, - "name": "InvalidTokenAccountKeyError", - "msg": "An invalid token account was passed into the instruction" - }, - { - "code": 6080, - "name": "InvalidJobAccountError", - "msg": "" - }, - { - "code": 6081, - "name": "VoterStakeRegistryError", - "msg": "" - }, - { - "code": 6082, - "name": "AccountDiscriminatorMismatch", - "msg": "Account discriminator did not match." - }, - { - "code": 6083, - "name": "FuckingImpossibleError", - "msg": "This error is fucking impossible." - }, - { - "code": 6084, - "name": "InvalidVrfRound", - "msg": "Responding to the wrong VRF round" - } - ] -} \ No newline at end of file diff --git a/tools/generate-cli-docs.js b/tools/generate-cli-docs.js deleted file mode 100644 index 05f54f9..0000000 --- a/tools/generate-cli-docs.js +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/env node -/* eslint-disable @typescript-eslint/no-var-requires */ -/* eslint-disable import/no-extraneous-dependencies */ - -/** - * This script will - * - Generate OCLIF CLI documentation - * - Add underscores to filenames so they are hidden in docusaurus sidebar - * - Remove first two lines so they are partial MDX files and can be imported - */ - -const shell = require("shelljs"); -const fs = require("fs"); -const path = require("path"); -const { execSync } = require("child_process"); - -const projectRoot = path.join(__dirname, "..", ".."); -const cliPath = path.join(projectRoot, "cli"); -const cliOutPath = path.join(projectRoot, "website", "api", "cli"); -const cliOutRelPath = path.relative(cliPath, cliOutPath); -const oclifBin = path.join(projectRoot, "cli", "node_modules", ".bin", "oclif"); - -// Generate Oclif documentation -shell.cd(cliPath); -if (shell.exec(`npx oclif readme`).code !== 0) { - shell.echo(`Error: Oclif failed to generate documentation`); - shell.exit(1); -} -if (shell.exec(`npx oclif readme --multi --dir ${cliOutRelPath}`).code !== 0) { - shell.echo(`Error: Oclif failed to generate documentation`); - shell.exit(1); -} - -shell.cd(cliOutPath); - -// Remove old underscored files -shell.ls(`_*.md`).forEach((file) => { - shell.rm(file); -}); - -// Add underscores, remove first two lines, and update documentation path -shell.ls(`*.md`).forEach((file) => { - // add underscore to filename - const fileName = path.basename(file); - const underscoredFileName = "_" + fileName; - shell.mv("-f", fileName, underscoredFileName); - - // TODO: Update URL to release tag - // update github documentation links - shell.sed( - "-i", - `https://github.com/switchboard-xyz/switchboard-v2/blob/.*/src`, - "https://github.com/switchboard-xyz/switchboard-v2/tree/main/cli/src", - underscoredFileName - ); - - // remove first two lines - fs.writeFileSync( - underscoredFileName, - fs.readFileSync(underscoredFileName, "utf8").split("\n").slice(2).join("\n") - ); -}); diff --git a/tools/setup-example-programs.js b/tools/setup-example-programs.js deleted file mode 100644 index 4960ebd..0000000 --- a/tools/setup-example-programs.js +++ /dev/null @@ -1,239 +0,0 @@ -#!/usr/bin/env node -/* eslint-disable @typescript-eslint/no-var-requires */ -/* eslint-disable import/no-extraneous-dependencies */ - -/** - * This script will - * - Build any anchor projects if missing - * - Grab anchor project IDs - * - Update project IDs in Anchor.toml and lib.rs - */ - -const shell = require("shelljs"); -const { spawn, execSync } = require("child_process"); -const web3 = require("@solana/web3.js"); -const fs = require("fs"); -const path = require("path"); - -const projectRoot = path.join(__dirname, "..", ".."); -const targetDir = path.join(projectRoot, "target"); -const idlDir = path.join(targetDir, "idl"); -const anchorToml = path.join(projectRoot, "Anchor.toml"); - -const anchorClientGen = path.join( - projectRoot, - "node_modules", - ".bin", - "anchor-client-gen" -); -const shx = path.join(projectRoot, "node_modules", ".bin", "shx"); - -const anchorVrfKeypairPath = path.join( - targetDir, - "deploy", - "anchor_vrf_parser-keypair.json" -); - -const anchorFeedKeypairPath = path.join( - targetDir, - "deploy", - "anchor_feed_parser-keypair.json" -); - -const anchorBufferKeypairPath = path.join( - targetDir, - "deploy", - "anchor_buffer_parser-keypair.json" -); - -const nativeFeedKeypairPath = path.join( - targetDir, - "deploy", - "native_feed_parser-keypair.json" -); - -async function main() { - shell.cd(projectRoot); - - if (!shell.which("solana")) { - shell.echo( - "Sorry, this script requires 'solana' to be installed in your $PATH" - ); - shell.exit(1); - } - - if (!shell.which("anchor")) { - shell.echo( - "Sorry, this script requires 'anchor' to be installed in your $PATH" - ); - shell.exit(1); - } - - if (!fs.existsSync(path.join(targetDir, "deploy"))) { - shell.echo("Missing program deploy keypairs, building projects"); - const anchorBuildSpawn = spawn("anchor", ["build"]); - anchorBuildSpawn.stdout.on("data", function (msg) { - console.log(msg.toString()); - }); - await new Promise((resolve) => { - anchorBuildSpawn.on("close", resolve); - }); - } - - const anchorVrfParserPid = web3.Keypair.fromSecretKey( - new Uint8Array(JSON.parse(fs.readFileSync(anchorVrfKeypairPath, "utf8"))) - ).publicKey; - const anchorFeedParserPid = web3.Keypair.fromSecretKey( - new Uint8Array(JSON.parse(fs.readFileSync(anchorFeedKeypairPath, "utf8"))) - ).publicKey; - const anchorBufferParserPid = web3.Keypair.fromSecretKey( - new Uint8Array(JSON.parse(fs.readFileSync(anchorBufferKeypairPath, "utf8"))) - ).publicKey; - const nativeFeedParserPid = web3.Keypair.fromSecretKey( - new Uint8Array(JSON.parse(fs.readFileSync(nativeFeedKeypairPath, "utf8"))) - ).publicKey; - - // REPLACE ANCHOR-VRF-PROGRAM IDS - console.log(`Anchor VRF Parser PID: ${anchorVrfParserPid}`); - shell.sed( - "-i", - /declare_id!(.*);/, - `declare_id!("${anchorVrfParserPid.toString()}");`, - path.join( - projectRoot, - "examples", - "programs", - "anchor-vrf-parser", - "src", - "lib.rs" - ) - ); - shell.sed( - "-i", - /anchor_vrf_parser = "(.*)"/, - `anchor_vrf_parser = "${anchorVrfParserPid.toString()}"`, - anchorToml - ); - - console.log(`Anchor Feed Parser PID: ${anchorFeedParserPid}`); - shell.sed( - "-i", - /declare_id!(.*);/, - `declare_id!("${anchorFeedParserPid.toString()}");`, - path.join( - projectRoot, - "examples", - "programs", - "anchor-feed-parser", - "src", - "lib.rs" - ) - ); - shell.sed( - "-i", - /anchor_feed_parser = "(.*)"/, - `anchor_feed_parser = "${anchorFeedParserPid.toString()}"`, - anchorToml - ); - - console.log(`Anchor Buffer Parser PID: ${anchorBufferParserPid}`); - shell.sed( - "-i", - /declare_id!(.*);/, - `declare_id!("${anchorBufferParserPid.toString()}");`, - path.join( - projectRoot, - "examples", - "programs", - "anchor-buffer-parser", - "src", - "lib.rs" - ) - ); - shell.sed( - "-i", - /anchor_buffer_parser = "(.*)"/, - `anchor_buffer_parser = "${anchorBufferParserPid.toString()}"`, - anchorToml - ); - - console.log(`Native Feed Parser PID: ${nativeFeedParserPid}`); - shell.sed( - "-i", - /declare_id!(.*);/, - `declare_id!("${nativeFeedParserPid.toString()}");`, - path.join( - projectRoot, - "examples", - "programs", - "native-feed-parser", - "src", - "lib.rs" - ) - ); - shell.sed( - "-i", - /native_feed_parser = "(.*)"/, - `native_feed_parser = "${nativeFeedParserPid.toString()}"`, - anchorToml - ); - - // Build Anchor APIs - const vrfClientPath = path.join( - projectRoot, - "examples", - "programs", - "anchor-vrf-parser", - "client" - ); - shell.rm("-rf", vrfClientPath); - fs.mkdirSync(vrfClientPath, { recursive: true }); - execSync( - `node ${anchorClientGen} ${path.join( - idlDir, - "anchor_vrf_parser.json" - )} ${vrfClientPath} --program-id ${anchorVrfParserPid.toString()}` - ); - - const feedClientPath = path.join( - projectRoot, - "examples", - "programs", - "anchor-feed-parser", - "client" - ); - shell.rm("-rf", feedClientPath); - fs.mkdirSync(feedClientPath, { recursive: true }); - execSync( - `node ${anchorClientGen} ${path.join( - idlDir, - "anchor_feed_parser.json" - )} ${feedClientPath} --program-id ${anchorFeedParserPid.toString()}` - ); - - const bufferClientPath = path.join( - projectRoot, - "examples", - "programs", - "anchor-buffer-parser", - "client" - ); - shell.rm("-rf", bufferClientPath); - fs.mkdirSync(bufferClientPath, { recursive: true }); - execSync( - `node ${anchorClientGen} ${path.join( - idlDir, - "anchor_buffer_parser.json" - )} ${bufferClientPath} --program-id ${anchorBufferParserPid.toString()}` - ); - - // TODO: Deploy / Upgrade IDL -} - -main() - .then(() => { - // console.log("Executed successfully"); - }) - .catch((err) => { - console.error(err); - }); diff --git a/tools/update-docker-version.js b/tools/update-docker-version.js deleted file mode 100644 index e29f7f8..0000000 --- a/tools/update-docker-version.js +++ /dev/null @@ -1,73 +0,0 @@ -#!/usr/bin/env node -/* eslint-disable @typescript-eslint/no-var-requires */ -/* eslint-disable import/no-extraneous-dependencies */ - -/** - * This script will - * - Globally update the docker version throughout the repo - */ - -const shell = require("shelljs"); -const fs = require("fs"); -const path = require("path"); -const projectRoot = path.join(__dirname, "..", ".."); - -const ignorePatterns = [ - "git", - "node_modules", - ".anchor", - ".switchboard", - ".archive", - ".docusaurus", - "website/public", - "target/rls", - "target/release", - "target/bpfel-unknown-unknown", - "target/bpfel-unknown-unknown", - ".fingerprint", -]; -const allowedExtensions = [".md", ".mdx", ".js", ".json", ".yml", ".ts"]; - -// Regex: dev-v2-[0-9]{1,2}-[0-9]{1,2}-[0-9]{1,2}[A-Za-z]? -shell.cd(projectRoot); - -const latestVersionRegex = fs - .readFileSync(path.join(projectRoot, "Oracle_Version.md"), "utf8") - .match(/dev-v2-[0-9]{1,2}-[0-9]{1,2}-[0-9]{1,2}[A-Za-z]?/); - -if (!latestVersionRegex) { - throw new Error( - `Failed to find the latest oracle version in Oracle_Version.md` - ); -} -const latestVersion = latestVersionRegex[0]; -console.log(`Latest Oracle Version: ${latestVersion}`); - -shell.find(".").forEach((filePath) => { - // check for ignore patterns - for (const pattern of ignorePatterns) { - if (filePath.indexOf(pattern) !== -1) { - return; - } - } - - // check if its a directory - if (fs.statSync(filePath).isDirectory()) { - return; - } - - // check if the extension is applicable - if (!allowedExtensions.includes(path.parse(filePath).ext)) { - return; - } - - // global find and replace - try { - shell.sed( - "-i", - /dev-v2-[0-9]{1,2}-[0-9]{1,2}-[0-9]{1,2}[A-Za-z]?/g, - latestVersion, - filePath - ); - } catch {} -}); diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 09ade1c..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "exclude": ["node_modules"], - "compilerOptions": { - "target": "ES2019", - "lib": ["es2019", "dom"], - "module": "es2022", - "moduleResolution": "node", - "types": ["node", "mocha", "chai", "long"], - "resolveJsonModule": true, - "allowJs": false, - "checkJs": false, - "declaration": true, - "declarationMap": true, - "sourceMap": true, - "noEmit": true, - "importHelpers": true, - "importsNotUsedAsValues": "error", - "inlineSources": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true, - "noUncheckedIndexedAccess": true, - "skipLibCheck": true, - "paths": { - "@solana/spl-token": ["./node_modules/@solana/spl-token"] - } - } -} diff --git a/tsconfig.testing.json b/tsconfig.testing.json deleted file mode 100644 index 5d54363..0000000 --- a/tsconfig.testing.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "module": "CommonJS", - "esModuleInterop": true - } -} diff --git a/website/.eslintrc.json b/website/.eslintrc.json deleted file mode 100644 index 364bb41..0000000 --- a/website/.eslintrc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "root": false, - "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], - "parser": "@typescript-eslint/parser", - "parserOptions": { "project": ["./tsconfig.json"] }, - "plugins": ["@typescript-eslint"], - "rules": { - "import/extensions": "never" - }, - "ignorePatterns": ["src/**/*.test.ts"] -} diff --git a/website/CNAME b/website/CNAME deleted file mode 100644 index ef8aff8..0000000 --- a/website/CNAME +++ /dev/null @@ -1 +0,0 @@ -docs.switchboard.xyz \ No newline at end of file diff --git a/website/LICENSE b/website/LICENSE deleted file mode 100644 index 8e9663d..0000000 --- a/website/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2022 Switchboard - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/website/README.md b/website/README.md deleted file mode 100644 index 55d0c3e..0000000 --- a/website/README.md +++ /dev/null @@ -1,33 +0,0 @@ -# Website - -This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator. - -### Installation - -``` -$ yarn -``` - -### Local Development - -``` -$ yarn start -``` - -This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server. - -### Build - -``` -$ yarn build -``` - -This command generates static content into the `build` directory and can be served using any static contents hosting service. - -### Deployment - -``` -$ GIT_USER= USE_SSH=true yarn deploy -``` - -If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch. diff --git a/website/api/_tasks.md b/website/api/_tasks.md deleted file mode 100644 index 72dea3d..0000000 --- a/website/api/_tasks.md +++ /dev/null @@ -1,941 +0,0 @@ -# Protocol Documentation - - -## Table of Contents - -- [job_schemas.proto](#job_schemas.proto) - - [OracleJob](#.OracleJob) - - [OracleJob.AddTask](#.OracleJob.AddTask) - - [OracleJob.AnchorFetchTask](#.OracleJob.AnchorFetchTask) - - [OracleJob.BufferLayoutParseTask](#.OracleJob.BufferLayoutParseTask) - - [OracleJob.CacheTask](#.OracleJob.CacheTask) - - [OracleJob.CacheTask.CacheItem](#.OracleJob.CacheTask.CacheItem) - - [OracleJob.ConditionalTask](#.OracleJob.ConditionalTask) - - [OracleJob.CronParseTask](#.OracleJob.CronParseTask) - - [OracleJob.DefiKingdomsTask](#.OracleJob.DefiKingdomsTask) - - [OracleJob.DefiKingdomsTask.Token](#.OracleJob.DefiKingdomsTask.Token) - - [OracleJob.DivideTask](#.OracleJob.DivideTask) - - [OracleJob.HttpTask](#.OracleJob.HttpTask) - - [OracleJob.HttpTask.Header](#.OracleJob.HttpTask.Header) - - [OracleJob.JsonParseTask](#.OracleJob.JsonParseTask) - - [OracleJob.JupiterSwapTask](#.OracleJob.JupiterSwapTask) - - [OracleJob.LendingRateTask](#.OracleJob.LendingRateTask) - - [OracleJob.LpExchangeRateTask](#.OracleJob.LpExchangeRateTask) - - [OracleJob.LpTokenPriceTask](#.OracleJob.LpTokenPriceTask) - - [OracleJob.MangoPerpMarketTask](#.OracleJob.MangoPerpMarketTask) - - [OracleJob.MarinadeStateTask](#.OracleJob.MarinadeStateTask) - - [OracleJob.MaxTask](#.OracleJob.MaxTask) - - [OracleJob.MeanTask](#.OracleJob.MeanTask) - - [OracleJob.MedianTask](#.OracleJob.MedianTask) - - [OracleJob.MultiplyTask](#.OracleJob.MultiplyTask) - - [OracleJob.OracleTask](#.OracleJob.OracleTask) - - [OracleJob.PancakeswapExchangeRateTask](#.OracleJob.PancakeswapExchangeRateTask) - - [OracleJob.PerpMarketTask](#.OracleJob.PerpMarketTask) - - [OracleJob.PowTask](#.OracleJob.PowTask) - - [OracleJob.RegexExtractTask](#.OracleJob.RegexExtractTask) - - [OracleJob.SerumSwapTask](#.OracleJob.SerumSwapTask) - - [OracleJob.SolanaAccountDataFetchTask](#.OracleJob.SolanaAccountDataFetchTask) - - [OracleJob.SplStakePoolTask](#.OracleJob.SplStakePoolTask) - - [OracleJob.SplTokenParseTask](#.OracleJob.SplTokenParseTask) - - [OracleJob.SubtractTask](#.OracleJob.SubtractTask) - - [OracleJob.SushiswapExchangeRateTask](#.OracleJob.SushiswapExchangeRateTask) - - [OracleJob.SysclockOffsetTask](#.OracleJob.SysclockOffsetTask) - - [OracleJob.Task](#.OracleJob.Task) - - [OracleJob.TpsTask](#.OracleJob.TpsTask) - - [OracleJob.TwapTask](#.OracleJob.TwapTask) - - [OracleJob.UniswapExchangeRateTask](#.OracleJob.UniswapExchangeRateTask) - - [OracleJob.ValueTask](#.OracleJob.ValueTask) - - [OracleJob.WebsocketTask](#.OracleJob.WebsocketTask) - - [OracleJob.XStepPriceTask](#.OracleJob.XStepPriceTask) - - - [OracleJob.BufferLayoutParseTask.BufferParseType](#.OracleJob.BufferLayoutParseTask.BufferParseType) - - [OracleJob.BufferLayoutParseTask.Endian](#.OracleJob.BufferLayoutParseTask.Endian) - - [OracleJob.CronParseTask.ClockType](#.OracleJob.CronParseTask.ClockType) - - [OracleJob.HttpTask.Method](#.OracleJob.HttpTask.Method) - - [OracleJob.JsonParseTask.AggregationMethod](#.OracleJob.JsonParseTask.AggregationMethod) - - [OracleJob.LendingRateTask.Field](#.OracleJob.LendingRateTask.Field) - -- [Scalar Value Types](#scalar-value-types) - - - - -

Top

- -## job_schemas.proto - - - - - -### OracleJob -Represnts a list of tasks to be performed by a switchboard oracle. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| tasks | [OracleJob.Task](#OracleJob.Task) | repeated | The chain of tasks to perform for this OracleJob. | - - - - - - - - -### OracleJob.AddTask -This task will add a numerical input by a scalar value or by another -aggregate. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| scalar | [double](#double) | optional | Specifies a scalar to add by. | -| aggregator_pubkey | [string](#string) | optional | Specifies an aggregator to add by. | -| job | [OracleJob](#OracleJob) | optional | A job whose result is computed before adding our numerical input by that result. | -| big | [string](#string) | optional | A stringified big.js. `Accepts variable expansion syntax.` | - - - - - - - - -### OracleJob.AnchorFetchTask -Load a parse an Anchor based solana account. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| program_id | [string](#string) | optional | Owning program of the account to parse. | -| account_address | [string](#string) | optional | The account to parse. | - - - - - - - - -### OracleJob.BufferLayoutParseTask -Return the deserialized value from a stringified buffer. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| offset | [uint32](#uint32) | optional | The buffer offset to start deserializing from. | -| endian | [OracleJob.BufferLayoutParseTask.Endian](#OracleJob.BufferLayoutParseTask.Endian) | optional | The endianness of the stored value. | -| type | [OracleJob.BufferLayoutParseTask.BufferParseType](#OracleJob.BufferLayoutParseTask.BufferParseType) | optional | The type of value to deserialize. | - - - - - - - - -### OracleJob.CacheTask -Execute a job and store the result in a variable to reference later. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| cache_items | [OracleJob.CacheTask.CacheItem](#OracleJob.CacheTask.CacheItem) | repeated | A list of cached variables to reference in the job with `${VARIABLE_NAME}`. | - - - - - - - - -### OracleJob.CacheTask.CacheItem - - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| variable_name | [string](#string) | optional | The name of the variable to store in cache to reference later with `${VARIABLE_NAME}`. | -| job | [OracleJob](#OracleJob) | optional | The OracleJob to execute to yield the value to store in cache. | - - - - - - - - -### OracleJob.ConditionalTask -This task will run the `attempt` subtasks in an effort to produce a valid numerical result. If -`attempt` fails to produce an acceptable result, `on_failure` subtasks will be run instead. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| attempt | [OracleJob.Task](#OracleJob.Task) | repeated | A list of subtasks to process in an attempt to produce a valid numerical result. | -| on_failure | [OracleJob.Task](#OracleJob.Task) | repeated | A list of subtasks that will be run if `attempt` subtasks are unable to produce an acceptable result. | - - - - - - - - -### OracleJob.CronParseTask -return a timestamp from a crontab instruction - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| cron_pattern | [string](#string) | optional | the cron pattern to parse | -| clock_offset | [int32](#int32) | optional | the timestamp offset to calculate the next run | -| clock | [OracleJob.CronParseTask.ClockType](#OracleJob.CronParseTask.ClockType) | optional | | - - - - - - - - -### OracleJob.DefiKingdomsTask -Fetch the swap price from DefiKingdoms. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| provider | [string](#string) | optional | The RPC provider to use for the swap. | -| in_token | [OracleJob.DefiKingdomsTask.Token](#OracleJob.DefiKingdomsTask.Token) | optional | The input token of the swap. | -| out_token | [OracleJob.DefiKingdomsTask.Token](#OracleJob.DefiKingdomsTask.Token) | optional | The output token of the swap. | - - - - - - - - -### OracleJob.DefiKingdomsTask.Token - - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| address | [string](#string) | optional | The address of the token. | -| decimals | [int32](#int32) | optional | The number of decimal places for a token. | - - - - - - - - -### OracleJob.DivideTask -This task will divide a numerical input by a scalar value or by another -aggregate. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| scalar | [double](#double) | optional | Specifies a basic scalar denominator to divide by. | -| aggregator_pubkey | [string](#string) | optional | Specifies another aggregator resut to divide by. | -| job | [OracleJob](#OracleJob) | optional | A job whose result is computed before dividing our numerical input by that result. | -| big | [string](#string) | optional | A stringified big.js. `Accepts variable expansion syntax.` | - - - - - - - - -### OracleJob.HttpTask -The adapter will report the text body of a successful HTTP request to the specified url, -or return an error if the response status code is greater than or equal to 400. -@return string representation of it's output. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| url | [string](#string) | optional | A string containing the URL to direct this HTTP request to. | -| method | [OracleJob.HttpTask.Method](#OracleJob.HttpTask.Method) | optional | The type of HTTP request to make. | -| headers | [OracleJob.HttpTask.Header](#OracleJob.HttpTask.Header) | repeated | A list of headers to add to this HttpTask. | -| body | [string](#string) | optional | A stringified body (if any) to add to this HttpTask. | - - - - - - - - -### OracleJob.HttpTask.Header -An object that represents a header to add to an HTTP request. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| key | [string](#string) | optional | | -| value | [string](#string) | optional | | - - - - - - - - -### OracleJob.JsonParseTask -The adapter walks the path specified and returns the value found at that result. If returning -JSON data from the HttpGet or HttpPost adapters, you must use this adapter to parse the -response. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| path | [string](#string) | optional | JSONPath formatted path to the element. https://t.ly/uLtw https://www.npmjs.com/package/jsonpath-plus | -| aggregation_method | [OracleJob.JsonParseTask.AggregationMethod](#OracleJob.JsonParseTask.AggregationMethod) | optional | The technique that will be used to aggregate the results if walking the specified path returns multiple numerical results. | - - - - - - - - -### OracleJob.JupiterSwapTask -Fetch the simulated price for a swap on JupiterSwap. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| in_token_address | [string](#string) | optional | The input token address. | -| out_token_address | [string](#string) | optional | The output token address. | -| base_amount | [double](#double) | optional | The amount of tokens to swap. | - - - - - - - - -### OracleJob.LendingRateTask -Fetch the lending rates for various Solana protocols - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| protocol | [string](#string) | optional | 01, apricot, francium, jet, larix, mango, port, solend, tulip | -| asset_mint | [string](#string) | optional | A token mint address supported by the chosen protocol | -| field | [OracleJob.LendingRateTask.Field](#OracleJob.LendingRateTask.Field) | optional | | - - - - - - - - -### OracleJob.LpExchangeRateTask -Fetch the current swap price for a given liquidity pool - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| in_token_address | [string](#string) | optional | Used alongside mercurial_pool_address to specify the input token for a swap. | -| out_token_address | [string](#string) | optional | Used alongside mercurial_pool_address to specify the output token for a swap. | -| mercurial_pool_address | [string](#string) | optional | Mercurial finance pool address. A full list can be found here: https://github.com/mercurial-finance/stable-swap-n-pool-js | -| saber_pool_address | [string](#string) | optional | Saber pool address. A full list can be found here: https://github.com/saber-hq/saber-registry-dist | -| orca_pool_token_mint_address | [string](#string) | optional | **Deprecated.** Orca pool address. | -| raydium_pool_address | [string](#string) | optional | The Raydium liquidity pool ammId. A full list can be found here: https://sdk.raydium.io/liquidity/mainnet.json | -| orca_pool_address | [string](#string) | optional | Pool address for an Orca LP pool or whirlpool. A full list of Orca LP pools can be found here: https://www.orca.so/pools | - - - - - - - - -### OracleJob.LpTokenPriceTask -Fetch LP token price info from a number of supported exchanges. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| mercurial_pool_address | [string](#string) | optional | Mercurial finance pool address. A full list can be found here: https://github.com/mercurial-finance/stable-swap-n-pool-js | -| saber_pool_address | [string](#string) | optional | Saber pool address. A full list can be found here: https://github.com/saber-hq/saber-registry-dist | -| orca_pool_address | [string](#string) | optional | Orca pool address. A full list can be found here: https://www.orca.so/pools | -| raydium_pool_address | [string](#string) | optional | The Raydium liquidity pool ammId. A full list can be found here: https://sdk.raydium.io/liquidity/mainnet.json | -| price_feed_addresses | [string](#string) | repeated | A list of Switchboard aggregator accounts used to calculate the fair LP price. This ensures the price is based on the previous round to mitigate flash loan price manipulation. | -| price_feed_jobs | [OracleJob](#OracleJob) | repeated | | -| use_fair_price | [bool](#bool) | optional | If enabled and price_feed_addresses provided, the oracle will calculate the fair LP price based on the liquidity pool reserves. See our blog post for more information: https://switchboardxyz.medium.com/fair-lp-token-oracles-94a457c50239 | - - - - - - - - -### OracleJob.MangoPerpMarketTask -Fetch the current price for a Mango perpetual market - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| perp_market_address | [string](#string) | optional | Mainnet address for a mango perpetual market. A full list can be found here: https://github.com/blockworks-foundation/mango-client-v3/blob/main/src/ids.json | - - - - - - - - -### OracleJob.MarinadeStateTask - - - - - - - - - -### OracleJob.MaxTask -Returns the maximum value of all the results returned by the provided subtasks and subjobs. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| tasks | [OracleJob.Task](#OracleJob.Task) | repeated | A list of subtasks to process and produce a list of result values. | -| jobs | [OracleJob](#OracleJob) | repeated | A list of subjobs to process and produce a list of result values. | - - - - - - - - -### OracleJob.MeanTask -Returns the mean of all the results returned by the provided subtasks and subjobs. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| tasks | [OracleJob.Task](#OracleJob.Task) | repeated | A list of subtasks to process and produce a list of result values. | -| jobs | [OracleJob](#OracleJob) | repeated | A list of subjobs to process and produce a list of result values. | - - - - - - - - -### OracleJob.MedianTask -Returns the median of all the results returned by the provided subtasks and subjobs. Nested tasks must return a Number. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| tasks | [OracleJob.Task](#OracleJob.Task) | repeated | A list of subtasks to process and produce a list of result values. | -| jobs | [OracleJob](#OracleJob) | repeated | A list of subjobs to process and produce a list of result values. | -| min_successful_required | [int32](#int32) | optional | | - - - - - - - - -### OracleJob.MultiplyTask -This task will multiply a numerical input by a scalar value or by another aggregator. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| scalar | [double](#double) | optional | Specifies a scalar to multiply by. | -| aggregator_pubkey | [string](#string) | optional | Specifies an aggregator to multiply by. | -| job | [OracleJob](#OracleJob) | optional | A job whose result is computed before multiplying our numerical input by that result. | -| big | [string](#string) | optional | A stringified big.js. `Accepts variable expansion syntax.` | - - - - - - - - -### OracleJob.OracleTask -Fetch the current price of a Solana oracle protocol. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| switchboard_address | [string](#string) | optional | Mainnet address of a Switchboard V2 feed. Switchboard is decentralized and allows anyone to build their own feed. A small subset of feeds is available here: https://switchboard.xyz/explorer | -| pyth_address | [string](#string) | optional | Mainnet address for a Pyth feed. A full list can be found here: https://pyth.network/price-feeds/ | -| chainlink_address | [string](#string) | optional | Mainnet address for a Chainlink feed. A full list can be found here: https://docs.chain.link/docs/solana/data-feeds-solana | -| pyth_allowed_confidence_interval | [double](#double) | optional | Value (as a percentage) that the lower bound confidence interval is of the actual value. Confidence intervals that are larger that this treshold are rejected. | - - - - - - - - -### OracleJob.PancakeswapExchangeRateTask -Fetch the swap price from PancakeSwap. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| in_token_address | [string](#string) | optional | The input token address. | -| out_token_address | [string](#string) | optional | The output token address. | -| in_token_amount | [double](#double) | optional | The amount of tokens to swap. | -| slippage | [double](#double) | optional | The allowable slippage in percent for the swap. | -| provider | [string](#string) | optional | The RPC provider to use for the swap. | - - - - - - - - -### OracleJob.PerpMarketTask -Fetch the current price of a perpetual market. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| mango_market_address | [string](#string) | optional | Market address for a mango perpetual market. A full list can be found here: https://github.com/blockworks-foundation/mango-client-v3/blob/main/src/ids.json | -| drift_market_address | [string](#string) | optional | Market address for a drift perpetual market. A full list can be found here: https://github.com/drift-labs/protocol-v1/blob/master/sdk/src/constants/markets.ts | -| zeta_market_address | [string](#string) | optional | Market address for a zeta perpetual market. | -| zo_market_address | [string](#string) | optional | Market address for a 01 protocol perpetual market. | - - - - - - - - -### OracleJob.PowTask -Take the power of the working value. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| scalar | [double](#double) | optional | Take the working value to the exponent of value. | -| aggregator_pubkey | [string](#string) | optional | Take the working value to the exponent of the aggregators value. | -| big | [string](#string) | optional | A stringified big.js. `Accepts variable expansion syntax.` | - - - - - - - - -### OracleJob.RegexExtractTask -Find a pattern within a string of a previous task and extract a group number. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| pattern | [string](#string) | optional | Regex pattern to find. | -| group_number | [int32](#int32) | optional | Group number to extract. | - - - - - - - - -### OracleJob.SerumSwapTask -Fetch the latest swap price on Serum's orderbook - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| serum_pool_address | [string](#string) | optional | The serum pool to fetch swap price for | - - - - - - - - -### OracleJob.SolanaAccountDataFetchTask -Fetch the account data in a stringified buffer format. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| pubkey | [string](#string) | optional | The on-chain account to fetch the account data from. | - - - - - - - - -### OracleJob.SplStakePoolTask -Fetch the JSON representation of an SPL Stake Pool account. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| pubkey | [string](#string) | optional | The pubkey of the SPL Stake Pool. | - - - - - - - - -### OracleJob.SplTokenParseTask -Fetch the JSON representation of an SPL token mint. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| token_account_address | [string](#string) | optional | The publicKey of a token account to fetch the mintInfo for. | -| mint_address | [string](#string) | optional | The publicKey of the token mint address. | - - - - - - - - -### OracleJob.SubtractTask -This task will subtract a numerical input by a scalar value or by another -aggregate. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| scalar | [double](#double) | optional | Specifies a scalar to subtract by. | -| aggregator_pubkey | [string](#string) | optional | Specifies an aggregator to subtract by. | -| job | [OracleJob](#OracleJob) | optional | A job whose result is computed before subtracting our numerical input by that result. | -| big | [string](#string) | optional | A stringified big.js. `Accepts variable expansion syntax.` | - - - - - - - - -### OracleJob.SushiswapExchangeRateTask -Fetch the swap price from SushiSwap. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| in_token_address | [string](#string) | optional | The input token address. | -| out_token_address | [string](#string) | optional | The output token address. | -| in_token_amount | [double](#double) | optional | The amount of tokens to swap. | -| slippage | [double](#double) | optional | The allowable slippage in percent for the swap. | -| provider | [string](#string) | optional | The RPC provider to use for the swap. | - - - - - - - - -### OracleJob.SysclockOffsetTask -Return the difference between an oracle's clock and the current timestamp at `SYSVAR_CLOCK_PUBKEY`. - - - - - - - - -### OracleJob.Task - - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| http_task | [OracleJob.HttpTask](#OracleJob.HttpTask) | optional | | -| json_parse_task | [OracleJob.JsonParseTask](#OracleJob.JsonParseTask) | optional | | -| median_task | [OracleJob.MedianTask](#OracleJob.MedianTask) | optional | | -| mean_task | [OracleJob.MeanTask](#OracleJob.MeanTask) | optional | | -| websocket_task | [OracleJob.WebsocketTask](#OracleJob.WebsocketTask) | optional | | -| divide_task | [OracleJob.DivideTask](#OracleJob.DivideTask) | optional | | -| multiply_task | [OracleJob.MultiplyTask](#OracleJob.MultiplyTask) | optional | | -| lp_token_price_task | [OracleJob.LpTokenPriceTask](#OracleJob.LpTokenPriceTask) | optional | | -| lp_exchange_rate_task | [OracleJob.LpExchangeRateTask](#OracleJob.LpExchangeRateTask) | optional | | -| conditional_task | [OracleJob.ConditionalTask](#OracleJob.ConditionalTask) | optional | | -| value_task | [OracleJob.ValueTask](#OracleJob.ValueTask) | optional | | -| max_task | [OracleJob.MaxTask](#OracleJob.MaxTask) | optional | | -| regex_extract_task | [OracleJob.RegexExtractTask](#OracleJob.RegexExtractTask) | optional | | -| xstep_price_task | [OracleJob.XStepPriceTask](#OracleJob.XStepPriceTask) | optional | | -| add_task | [OracleJob.AddTask](#OracleJob.AddTask) | optional | | -| subtract_task | [OracleJob.SubtractTask](#OracleJob.SubtractTask) | optional | | -| twap_task | [OracleJob.TwapTask](#OracleJob.TwapTask) | optional | | -| serum_swap_task | [OracleJob.SerumSwapTask](#OracleJob.SerumSwapTask) | optional | | -| pow_task | [OracleJob.PowTask](#OracleJob.PowTask) | optional | | -| lending_rate_task | [OracleJob.LendingRateTask](#OracleJob.LendingRateTask) | optional | | -| mango_perp_market_task | [OracleJob.MangoPerpMarketTask](#OracleJob.MangoPerpMarketTask) | optional | | -| jupiter_swap_task | [OracleJob.JupiterSwapTask](#OracleJob.JupiterSwapTask) | optional | | -| perp_market_task | [OracleJob.PerpMarketTask](#OracleJob.PerpMarketTask) | optional | | -| oracle_task | [OracleJob.OracleTask](#OracleJob.OracleTask) | optional | | -| anchor_fetch_task | [OracleJob.AnchorFetchTask](#OracleJob.AnchorFetchTask) | optional | | -| defi_kingdoms_task | [OracleJob.DefiKingdomsTask](#OracleJob.DefiKingdomsTask) | optional | | -| tps_task | [OracleJob.TpsTask](#OracleJob.TpsTask) | optional | | -| spl_stake_pool_task | [OracleJob.SplStakePoolTask](#OracleJob.SplStakePoolTask) | optional | | -| spl_token_parse_task | [OracleJob.SplTokenParseTask](#OracleJob.SplTokenParseTask) | optional | | -| uniswap_exchange_rate_task | [OracleJob.UniswapExchangeRateTask](#OracleJob.UniswapExchangeRateTask) | optional | | -| sushiswap_exchange_rate_task | [OracleJob.SushiswapExchangeRateTask](#OracleJob.SushiswapExchangeRateTask) | optional | | -| pancakeswap_exchange_rate_task | [OracleJob.PancakeswapExchangeRateTask](#OracleJob.PancakeswapExchangeRateTask) | optional | | -| cache_task | [OracleJob.CacheTask](#OracleJob.CacheTask) | optional | | -| sysclock_offset_task | [OracleJob.SysclockOffsetTask](#OracleJob.SysclockOffsetTask) | optional | | -| marinade_state_task | [OracleJob.MarinadeStateTask](#OracleJob.MarinadeStateTask) | optional | | -| solana_account_data_fetch_task | [OracleJob.SolanaAccountDataFetchTask](#OracleJob.SolanaAccountDataFetchTask) | optional | | -| buffer_layout_parse_task | [OracleJob.BufferLayoutParseTask](#OracleJob.BufferLayoutParseTask) | optional | | -| cron_parse_task | [OracleJob.CronParseTask](#OracleJob.CronParseTask) | optional | | - - - - - - - - -### OracleJob.TpsTask -Fetch the current transactions per second. - - - - - - - - -### OracleJob.TwapTask -Takes a twap over a set period for a certain aggregator. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| aggregator_pubkey | [string](#string) | optional | The target aggregator for the TWAP. | -| period | [int32](#int32) | optional | Period, in seconds, the twap should account for | -| weight_by_propagation_time | [bool](#bool) | optional | Weight samples by their propagation time | -| min_samples | [uint32](#uint32) | optional | Minimum number of samples in the history to calculate a valid result | -| ending_unix_timestamp | [int32](#int32) | optional | Ending unix timestamp to collect values up to | -| ending_unix_timestamp_task | [OracleJob.CronParseTask](#OracleJob.CronParseTask) | optional | Execute the task to get the ending unix timestamp | - - - - - - - - -### OracleJob.UniswapExchangeRateTask -Fetch the swap price from UniSwap. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| in_token_address | [string](#string) | optional | The input token address. | -| out_token_address | [string](#string) | optional | The output token address. | -| in_token_amount | [double](#double) | optional | The amount of tokens to swap. | -| slippage | [double](#double) | optional | The allowable slippage in percent for the swap. | -| provider | [string](#string) | optional | The RPC provider to use for the swap. | - - - - - - - - -### OracleJob.ValueTask -Returns a specified value. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| value | [double](#double) | optional | The value that will be returned from this task. | -| aggregator_pubkey | [string](#string) | optional | Specifies an aggregatorr to pull the value of. | -| big | [string](#string) | optional | A stringified big.js. `Accepts variable expansion syntax.` | - - - - - - - - -### OracleJob.WebsocketTask -Opens and maintains a websocket for light speed data retrieval. - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| url | [string](#string) | optional | The websocket url. | -| subscription | [string](#string) | optional | The websocket message to notify of a new subscription. | -| max_data_age_seconds | [int32](#int32) | optional | Minimum amount of time required between when the horses are taking out. | -| filter | [string](#string) | optional | Incoming message JSONPath filter. Example: "$[?(@.channel == 'ticker' && @.market == 'BTC/USD')]" | - - - - - - - - -### OracleJob.XStepPriceTask - - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| step_job | [OracleJob.MedianTask](#OracleJob.MedianTask) | optional | median task containing the job definitions to fetch the STEP/USD price | -| step_aggregator_pubkey | [string](#string) | optional | existing aggregator pubkey for STEP/USD | - - - - - - - - - - -### OracleJob.BufferLayoutParseTask.BufferParseType - - -| Name | Number | Description | -| ---- | ------ | ----------- | -| pubkey | 1 | A public key. | -| bool | 2 | A boolean. | -| u8 | 3 | An 8-bit unsigned value. | -| i8 | 4 | An 8-bit signed value. | -| u16 | 5 | A 16-bit unsigned value. | -| i16 | 6 | A 16-bit signed value. | -| u32 | 7 | A 32-bit unsigned value. | -| i32 | 8 | A 32-bit signed value. | -| f32 | 9 | A 32-bit IEEE floating point value. | -| u64 | 10 | A 64-bit unsigned value. | -| i64 | 11 | A 64-bit signed value. | -| f64 | 12 | A 64-bit IEEE floating point value. | -| u128 | 13 | A 128-bit unsigned value. | -| i128 | 14 | A 128-bit signed value. | - - - - - -### OracleJob.BufferLayoutParseTask.Endian - - -| Name | Number | Description | -| ---- | ------ | ----------- | -| LITTLE_ENDIAN | 0 | | -| BIG_ENDIAN | 1 | | - - - - - -### OracleJob.CronParseTask.ClockType -which type of clock to use - -| Name | Number | Description | -| ---- | ------ | ----------- | -| ORACLE | 0 | | -| SYSCLOCK | 1 | | - - - - - -### OracleJob.HttpTask.Method -An enumeration representing the types of HTTP requests available to make. - -| Name | Number | Description | -| ---- | ------ | ----------- | -| METHOD_UNKOWN | 0 | Unset HTTP method will default to METHOD_GET | -| METHOD_GET | 1 | Perform an HTTP 'GET' request. | -| METHOD_POST | 2 | Perform an HTTP 'POST' request. | - - - - - -### OracleJob.JsonParseTask.AggregationMethod -The methods of combining a list of numerical results. - -| Name | Number | Description | -| ---- | ------ | ----------- | -| NONE | 0 | | -| MIN | 1 | Grab the minimum value of the results. | -| MAX | 2 | Grab the maximum value of the results. | -| SUM | 3 | Sum up all of the results. | -| MEAN | 4 | Average all of the results. | -| MEDIAN | 5 | Grab the median of the results. | - - - - - -### OracleJob.LendingRateTask.Field - - -| Name | Number | Description | -| ---- | ------ | ----------- | -| FIELD_DEPOSIT_RATE | 0 | deposit lending rate | -| FIELD_BORROW_RATE | 1 | borrow lending rate | - - - - - - - - - - -## Scalar Value Types - -| .proto Type | Notes | C++ | Java | Python | Go | C# | PHP | Ruby | -| ----------- | ----- | --- | ---- | ------ | -- | -- | --- | ---- | -| double | | double | double | float | float64 | double | float | Float | -| float | | float | float | float | float32 | float | float | Float | -| int32 | Uses variable-length encoding. Inefficient for encoding negative numbers – if your field is likely to have negative values, use sint32 instead. | int32 | int | int | int32 | int | integer | Bignum or Fixnum (as required) | -| int64 | Uses variable-length encoding. Inefficient for encoding negative numbers – if your field is likely to have negative values, use sint64 instead. | int64 | long | int/long | int64 | long | integer/string | Bignum | -| uint32 | Uses variable-length encoding. | uint32 | int | int/long | uint32 | uint | integer | Bignum or Fixnum (as required) | -| uint64 | Uses variable-length encoding. | uint64 | long | int/long | uint64 | ulong | integer/string | Bignum or Fixnum (as required) | -| sint32 | Uses variable-length encoding. Signed int value. These more efficiently encode negative numbers than regular int32s. | int32 | int | int | int32 | int | integer | Bignum or Fixnum (as required) | -| sint64 | Uses variable-length encoding. Signed int value. These more efficiently encode negative numbers than regular int64s. | int64 | long | int/long | int64 | long | integer/string | Bignum | -| fixed32 | Always four bytes. More efficient than uint32 if values are often greater than 2^28. | uint32 | int | int | uint32 | uint | integer | Bignum or Fixnum (as required) | -| fixed64 | Always eight bytes. More efficient than uint64 if values are often greater than 2^56. | uint64 | long | int/long | uint64 | ulong | integer/string | Bignum | -| sfixed32 | Always four bytes. | int32 | int | int | int32 | int | integer | Bignum or Fixnum (as required) | -| sfixed64 | Always eight bytes. | int64 | long | int/long | int64 | long | integer/string | Bignum | -| bool | | bool | boolean | boolean | bool | bool | boolean | TrueClass/FalseClass | -| string | A string must always contain UTF-8 encoded or 7-bit ASCII text. | string | String | str/unicode | string | string | string | String (UTF-8) | -| bytes | May contain any arbitrary sequence of bytes. | string | ByteString | str | []byte | ByteString | string | String (ASCII-8BIT) | - diff --git a/website/api/cli/_aggregator.md b/website/api/cli/_aggregator.md deleted file mode 100644 index 0f4f028..0000000 --- a/website/api/cli/_aggregator.md +++ /dev/null @@ -1,1125 +0,0 @@ - -interact with a switchboard aggregator account - -* [`sbv2 aggregator add crank [CRANKKEY] [AGGREGATORKEY]`](#sbv2-aggregator-add-crank-crankkey-aggregatorkey) -* [`sbv2 aggregator add history [AGGREGATORKEY] [SIZE]`](#sbv2-aggregator-add-history-aggregatorkey-size) -* [`sbv2 aggregator add job [AGGREGATORKEY]`](#sbv2-aggregator-add-job-aggregatorkey) -* [`sbv2 aggregator create [QUEUEKEY]`](#sbv2-aggregator-create-queuekey) -* [`sbv2 aggregator create copy [AGGREGATORSOURCE]`](#sbv2-aggregator-create-copy-aggregatorsource) -* [`sbv2 aggregator create json [DEFINITIONFILE]`](#sbv2-aggregator-create-json-definitionfile) -* [`sbv2 aggregator history print [AGGREGATORKEY]`](#sbv2-aggregator-history-print-aggregatorkey) -* [`sbv2 aggregator lease create [AGGREGATORKEY]`](#sbv2-aggregator-lease-create-aggregatorkey) -* [`sbv2 aggregator lease extend [AGGREGATORKEY]`](#sbv2-aggregator-lease-extend-aggregatorkey) -* [`sbv2 aggregator lease print [AGGREGATORKEY]`](#sbv2-aggregator-lease-print-aggregatorkey) -* [`sbv2 aggregator lease withdraw [AGGREGATORKEY]`](#sbv2-aggregator-lease-withdraw-aggregatorkey) -* [`sbv2 aggregator lock [AGGREGATORKEY]`](#sbv2-aggregator-lock-aggregatorkey) -* [`sbv2 aggregator permission create [AGGREGATORKEY]`](#sbv2-aggregator-permission-create-aggregatorkey) -* [`sbv2 aggregator permission print [AGGREGATORKEY]`](#sbv2-aggregator-permission-print-aggregatorkey) -* [`sbv2 aggregator print [AGGREGATORKEY]`](#sbv2-aggregator-print-aggregatorkey) -* [`sbv2 aggregator print history [AGGREGATORKEY]`](#sbv2-aggregator-print-history-aggregatorkey) -* [`sbv2 aggregator print lease [AGGREGATORKEY]`](#sbv2-aggregator-print-lease-aggregatorkey) -* [`sbv2 aggregator print permission [AGGREGATORKEY]`](#sbv2-aggregator-print-permission-aggregatorkey) -* [`sbv2 aggregator remove job [AGGREGATORKEY] [JOBKEY]`](#sbv2-aggregator-remove-job-aggregatorkey-jobkey) -* [`sbv2 aggregator save history [AGGREGATORKEY]`](#sbv2-aggregator-save-history-aggregatorkey) -* [`sbv2 aggregator set [AGGREGATORKEY]`](#sbv2-aggregator-set-aggregatorkey) -* [`sbv2 aggregator set authority [AGGREGATORKEY] [NEWAUTHORITY]`](#sbv2-aggregator-set-authority-aggregatorkey-newauthority) -* [`sbv2 aggregator set batchSize [AGGREGATORKEY] BATCHSIZE`](#sbv2-aggregator-set-batchsize-aggregatorkey-batchsize) -* [`sbv2 aggregator set forceReport [AGGREGATORKEY] [FORCEREPORTPERIOD]`](#sbv2-aggregator-set-forcereport-aggregatorkey-forcereportperiod) -* [`sbv2 aggregator set forceReportPeriod [AGGREGATORKEY] [FORCEREPORTPERIOD]`](#sbv2-aggregator-set-forcereportperiod-aggregatorkey-forcereportperiod) -* [`sbv2 aggregator set history [AGGREGATORKEY] [SIZE]`](#sbv2-aggregator-set-history-aggregatorkey-size) -* [`sbv2 aggregator set minJobs [AGGREGATORKEY] [MINJOBRESULTS]`](#sbv2-aggregator-set-minjobs-aggregatorkey-minjobresults) -* [`sbv2 aggregator set minOracles [AGGREGATORKEY] [MINORACLERESULTS]`](#sbv2-aggregator-set-minoracles-aggregatorkey-minoracleresults) -* [`sbv2 aggregator set queue [AGGREGATORKEY] [QUEUEKEY]`](#sbv2-aggregator-set-queue-aggregatorkey-queuekey) -* [`sbv2 aggregator set updateInterval [AGGREGATORKEY] [UPDATEINTERVAL]`](#sbv2-aggregator-set-updateinterval-aggregatorkey-updateinterval) -* [`sbv2 aggregator set variance [AGGREGATORKEY] [VARIANCETHRESHOLD]`](#sbv2-aggregator-set-variance-aggregatorkey-variancethreshold) -* [`sbv2 aggregator set varianceThreshold [AGGREGATORKEY] [VARIANCETHRESHOLD]`](#sbv2-aggregator-set-variancethreshold-aggregatorkey-variancethreshold) -* [`sbv2 aggregator update [AGGREGATORKEY]`](#sbv2-aggregator-update-aggregatorkey) -* [`sbv2 aggregator watch [AGGREGATORKEY]`](#sbv2-aggregator-watch-aggregatorkey) - -## `sbv2 aggregator add crank [CRANKKEY] [AGGREGATORKEY]` - -push an aggregator onto a crank - -``` -USAGE - $ sbv2 aggregator add crank [CRANKKEY] [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - CRANKKEY public key of the crank - AGGREGATORKEY public key of the aggregator - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - push an aggregator onto a crank - -ALIASES - $ sbv2 aggregator add crank - $ sbv2 crank add aggregator -``` - -## `sbv2 aggregator add history [AGGREGATORKEY] [SIZE]` - -set an aggregator's history buffer account to record the last N accepted results - -``` -USAGE - $ sbv2 aggregator add history [AGGREGATORKEY] [SIZE] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator to add to a crank - SIZE size of history buffer - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an aggregator's history buffer account to record the last N accepted results - -ALIASES - $ sbv2 aggregator add history - -EXAMPLES - $ sbv2 aggregator:set:history GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR 10000 --keypair ../payer-keypair.json -``` - -## `sbv2 aggregator add job [AGGREGATORKEY]` - -add a job to an aggregator - -``` -USAGE - $ sbv2 aggregator add job [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [--jobDefinition | --jobKey ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --jobDefinition= filesystem path of job json definition file - --jobKey= public key of an existing job account to add to an aggregator - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - add a job to an aggregator - -EXAMPLES - $ sbv2 aggregator:add:job -``` - -## `sbv2 aggregator create [QUEUEKEY]` - -create an aggregator account - -``` -USAGE - $ sbv2 aggregator create [QUEUEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] [-a - ] [--crankKey ] [--enable] [--queueAuthority ] [-n ] [--forceReportPeriod ] - [--batchSize ] [--minJobs ] [--minOracles ] [--updateInterval ] [--varianceThreshold - ] [-j ] - -ARGUMENTS - QUEUEKEY public key of the oracle queue account to create aggregator for - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -j, --job=... filesystem path to job definition file - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -n, --name= name of the aggregator - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --batchSize= number of oracles requested for each open round call - --crankKey= public key of the crank to join - --enable set permissions to PERMIT_ORACLE_QUEUE_USAGE - --forceReportPeriod= Number of seconds for which, even if the variance threshold is not passed, accept new - responses from oracles. - --mainnetBeta WARNING: use mainnet-beta solana cluster - --minJobs= number of jobs that must respond before an oracle responds - --minOracles= number of oracles that must respond before a value is accepted on-chain - --programId= alternative Switchboard program ID to interact with - --queueAuthority= alternative keypair to use for queue authority - --updateInterval= set an aggregator's minimum update delay - --varianceThreshold= percentage change between a previous accepted result and the next round before an oracle - reports a value on-chain. Used to conserve lease cost during low volatility - -DESCRIPTION - create an aggregator account -``` - -## `sbv2 aggregator create copy [AGGREGATORSOURCE]` - -copy an aggregator account to a new oracle queue - -``` -USAGE - $ sbv2 aggregator create copy [AGGREGATORSOURCE] --queueKey [-v] [-s] [--mainnetBeta] [-u ] [--programId - ] [-k ] [-a ] [--minOracles ] [--batchSize ] [--minJobs ] - [--minUpdateDelay ] [--forceReportPeriod ] [--varianceThreshold ] [--crankKey ] - [--enable] [--queueAuthority ] [--copyJobs] - -ARGUMENTS - AGGREGATORSOURCE public key of the aggregator account to copy - -FLAGS - -a, --authority= alternate keypair that will be the aggregator authority - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --batchSize= override source aggregator's oracleRequestBatchSize - --copyJobs create copy of job accounts instead of referincing existing job account - --crankKey= public key of the crank to push aggregator to - --enable set permissions to PERMIT_ORACLE_QUEUE_USAGE - --forceReportPeriod= override source aggregator's forceReportPeriod - --mainnetBeta WARNING: use mainnet-beta solana cluster - --minJobs= override source aggregator's minJobResults - --minOracles= override source aggregator's minOracleResults - --minUpdateDelay= override source aggregator's minUpdateDelaySeconds - --programId= alternative Switchboard program ID to interact with - --queueAuthority= alternative keypair to use for queue authority - --queueKey= (required) public key of the queue to create aggregator for - --varianceThreshold= override source aggregator's varianceThreshold - -DESCRIPTION - copy an aggregator account to a new oracle queue - -EXAMPLES - $ sbv2 aggregator:create:copy GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR --queueKey 9WZ59yz95bd3XwJxDPVE2PjvVWmSy9WM1NgGD2Hqsohw --keypair ../payer-keypair.json - - $ sbv2 aggregator:create:copy GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR --queueKey 9WZ59yz95bd3XwJxDPVE2PjvVWmSy9WM1NgGD2Hqsohw --keypair ../payer-keypair.json --sourceCluster mainnet-beta - - $ sbv2 aggregator:create:copy FcSmdsdWks75YdyCGegRqXdt5BiNGQKxZywyzb8ckD7D --queueKey 9WZ59yz95bd3XwJxDPVE2PjvVWmSy9WM1NgGD2Hqsohw --keypair ../payer-keypair.json --sourceCluster mainnet-beta -``` - -## `sbv2 aggregator create json [DEFINITIONFILE]` - -create an aggregator from a json file - -``` -USAGE - $ sbv2 aggregator create json [DEFINITIONFILE] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [-q ] [-a ] - -ARGUMENTS - DEFINITIONFILE filesystem path of queue definition json file - -FLAGS - -a, --authority= alternate keypair that will be the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -q, --queueKey= public key of the oracle queue to create aggregator for - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - create an aggregator from a json file - -ALIASES - $ sbv2 json create aggregator - -EXAMPLES - $ sbv2 aggregator:create:json examples/aggregator.json --keypair ../payer-keypair.json --queueKey GhYg3R1V6DmJbwuc57qZeoYG6gUuvCotUF1zU3WCj98U --outputFile aggregator.schema.json -``` - -## `sbv2 aggregator history print [AGGREGATORKEY]` - -Print the history buffer associated with an aggregator account - -``` -USAGE - $ sbv2 aggregator history print [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to fetch permission account and deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the history buffer associated with an aggregator account - -ALIASES - $ sbv2 aggregator history print - $ sbv2 aggregator print history - -EXAMPLES - $ sbv2 aggregator:print:history 9CmLriMhykZ8xAoNTSHjHbk6SkuMhie1NCZn9P6LCuZ4 -``` - -## `sbv2 aggregator lease create [AGGREGATORKEY]` - -fund and re-enable an aggregator lease - -``` -USAGE - $ sbv2 aggregator lease create [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [--amount ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator to extend a lease for - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --amount= token amount to load into the lease escrow. If decimals provided, amount will be normalized to - raw tokenAmount - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - fund and re-enable an aggregator lease - -ALIASES - $ sbv2 aggregator lease create - -EXAMPLES - $ sbv2 lease:create GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR --amount 1.5 --keypair ../payer-keypair.json -``` - -## `sbv2 aggregator lease extend [AGGREGATORKEY]` - -fund and re-enable an aggregator lease - -``` -USAGE - $ sbv2 aggregator lease extend [AGGREGATORKEY] --amount [-v] [-s] [--mainnetBeta] [-u ] [--programId - ] [-k ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator to extend a lease for - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --amount= (required) token amount to load into the lease escrow. If decimals provided, amount will be - normalized to raw tokenAmount - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - fund and re-enable an aggregator lease - -ALIASES - $ sbv2 aggregator lease extend - -EXAMPLES - $ sbv2 aggregator:lease:extend GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR --amount 1.1 --keypair ../payer-keypair.json -``` - -## `sbv2 aggregator lease print [AGGREGATORKEY]` - -Print the lease account associated with a Switchboard aggregator account - -``` -USAGE - $ sbv2 aggregator lease print [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to fetch permission account and deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the lease account associated with a Switchboard aggregator account - -ALIASES - $ sbv2 aggregator lease print - $ sbv2 aggregator print lease - -EXAMPLES - $ sbv2 aggregator:lease:print 8SXvChNYFhRq4EZuZvnhjrB3jJRQCv4k3P4W6hesH3Ee -``` - -## `sbv2 aggregator lease withdraw [AGGREGATORKEY]` - -withdraw funds from an aggregator lease - -``` -USAGE - $ sbv2 aggregator lease withdraw [AGGREGATORKEY] --amount [-v] [-s] [--mainnetBeta] [-u ] [--programId - ] [-k ] [--withdrawAddress ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator to extend a lease for - -FLAGS - -a, --authority= keypair delegated as the authority for managing the oracle account - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --amount= (required) token amount to withdraw from lease account. If decimals provided, amount will - be normalized to raw tokenAmount - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - --withdrawAddress= tokenAccount to withdraw to. If not provided, payer associated token account will be used - -DESCRIPTION - withdraw funds from an aggregator lease - -ALIASES - $ sbv2 aggregator lease withdraw - -EXAMPLES - $ sbv2 aggregator:lease:withdraw GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR --amount 1.1 --keypair ../payer-keypair.json -``` - -## `sbv2 aggregator lock [AGGREGATORKEY]` - -lock an aggregator's configuration and prevent further changes - -``` -USAGE - $ sbv2 aggregator lock [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - lock an aggregator's configuration and prevent further changes -``` - -## `sbv2 aggregator permission create [AGGREGATORKEY]` - -create a permission account for an aggregator - -``` -USAGE - $ sbv2 aggregator permission create [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - create a permission account for an aggregator -``` - -## `sbv2 aggregator permission print [AGGREGATORKEY]` - -Print the permission account associated with a Switchboard aggregator account - -``` -USAGE - $ sbv2 aggregator permission print [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to fetch permission account and deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the permission account associated with a Switchboard aggregator account - -ALIASES - $ sbv2 aggregator permission print - $ sbv2 aggregator print permission - -EXAMPLES - $ sbv2 aggregator:permission:print 9CmLriMhykZ8xAoNTSHjHbk6SkuMhie1NCZn9P6LCuZ4 -``` - -## `sbv2 aggregator print [AGGREGATORKEY]` - -Print the deserialized Switchboard aggregator account - -``` -USAGE - $ sbv2 aggregator print [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [--json] [--jobs] [-o] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -o, --oraclePubkeysData print the assigned oracles for the current round - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --jobs output job definitions - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - Print the deserialized Switchboard aggregator account - -ALIASES - $ sbv2 aggregator print - -EXAMPLES - $ sbv2 aggregator:print GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR -``` - -## `sbv2 aggregator print history [AGGREGATORKEY]` - -Print the history buffer associated with an aggregator account - -``` -USAGE - $ sbv2 aggregator print history [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to fetch permission account and deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the history buffer associated with an aggregator account - -ALIASES - $ sbv2 aggregator history print - $ sbv2 aggregator print history - -EXAMPLES - $ sbv2 aggregator:print:history 9CmLriMhykZ8xAoNTSHjHbk6SkuMhie1NCZn9P6LCuZ4 -``` - -## `sbv2 aggregator print lease [AGGREGATORKEY]` - -Print the lease account associated with a Switchboard aggregator account - -``` -USAGE - $ sbv2 aggregator print lease [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to fetch permission account and deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the lease account associated with a Switchboard aggregator account - -ALIASES - $ sbv2 aggregator lease print - $ sbv2 aggregator print lease - -EXAMPLES - $ sbv2 aggregator:lease:print 8SXvChNYFhRq4EZuZvnhjrB3jJRQCv4k3P4W6hesH3Ee -``` - -## `sbv2 aggregator print permission [AGGREGATORKEY]` - -Print the permission account associated with a Switchboard aggregator account - -``` -USAGE - $ sbv2 aggregator print permission [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to fetch permission account and deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the permission account associated with a Switchboard aggregator account - -ALIASES - $ sbv2 aggregator permission print - $ sbv2 aggregator print permission - -EXAMPLES - $ sbv2 aggregator:permission:print 9CmLriMhykZ8xAoNTSHjHbk6SkuMhie1NCZn9P6LCuZ4 -``` - -## `sbv2 aggregator remove job [AGGREGATORKEY] [JOBKEY]` - -remove a switchboard job account from an aggregator - -``` -USAGE - $ sbv2 aggregator remove job [AGGREGATORKEY] [JOBKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account - JOBKEY public key of an existing job account to remove from an aggregator - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - remove a switchboard job account from an aggregator - -EXAMPLES - $ sbv2 aggregator:remove:job -``` - -## `sbv2 aggregator save history [AGGREGATORKEY]` - -request a new aggregator result from a set of oracles - -``` -USAGE - $ sbv2 aggregator save history [AGGREGATORKEY] -f [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] [--force] [--json] [--csv] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to deserialize - -FLAGS - -f, --outputFile= (required) output file to save aggregator pubkeys to - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --csv output aggregator accounts in csv format - --force overwrite output file if exists - --json output aggregator accounts in json format - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - request a new aggregator result from a set of oracles - -EXAMPLES - $ sbv2 aggregator:save:history --outputFile ../aggregator-history.json --csv -``` - -## `sbv2 aggregator set [AGGREGATORKEY]` - -set an aggregator's config - -``` -USAGE - $ sbv2 aggregator set [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [-a ] [--forceReportPeriod ] [--minJobs ] [--minOracles ] [--newQueue ] - [--updateInterval ] [--varianceThreshold ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --forceReportPeriod= Number of seconds for which, even if the variance threshold is not passed, accept new - responses from oracles. - --mainnetBeta WARNING: use mainnet-beta solana cluster - --minJobs= number of jobs that must respond before an oracle responds - --minOracles= number of oracles that must respond before a value is accepted on-chain - --newQueue= public key of the new oracle queue - --programId= alternative Switchboard program ID to interact with - --updateInterval= set an aggregator's minimum update delay - --varianceThreshold= percentage change between a previous accepted result and the next round before an oracle - reports a value on-chain. Used to conserve lease cost during low volatility - -DESCRIPTION - set an aggregator's config - -ALIASES - $ sbv2 set aggregator - -EXAMPLES - $ sbv2 aggregator:set GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR --updateInterval 300 --minOracles 3 --keypair ../payer-keypair.json -``` - -## `sbv2 aggregator set authority [AGGREGATORKEY] [NEWAUTHORITY]` - -set an aggregator's authority - -``` -USAGE - $ sbv2 aggregator set authority [AGGREGATORKEY] [NEWAUTHORITY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] - [-k ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account - NEWAUTHORITY keypair path of new authority - -FLAGS - -a, --currentAuthority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if - no alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an aggregator's authority -``` - -## `sbv2 aggregator set batchSize [AGGREGATORKEY] BATCHSIZE` - -set an aggregator's batch size - -``` -USAGE - $ sbv2 aggregator set batchSize [AGGREGATORKEY] [BATCHSIZE] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account - BATCHSIZE number of oracles requested for each open round call - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an aggregator's batch size -``` - -## `sbv2 aggregator set forceReport [AGGREGATORKEY] [FORCEREPORTPERIOD]` - -set an aggregator's force report period - -``` -USAGE - $ sbv2 aggregator set forceReport [AGGREGATORKEY] [FORCEREPORTPERIOD] [-v] [-s] [--mainnetBeta] [-u ] [--programId - ] [-k ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator - FORCEREPORTPERIOD Number of seconds for which, even if the variance threshold is not passed, accept new responses - from oracles. - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an aggregator's force report period - -ALIASES - $ sbv2 aggregator set forceReport - -EXAMPLES - $ sbv2 aggregator:set:forceReportPeriod GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR 300 --keypair ../payer-keypair.json -``` - -## `sbv2 aggregator set forceReportPeriod [AGGREGATORKEY] [FORCEREPORTPERIOD]` - -set an aggregator's force report period - -``` -USAGE - $ sbv2 aggregator set forceReportPeriod [AGGREGATORKEY] [FORCEREPORTPERIOD] [-v] [-s] [--mainnetBeta] [-u ] [--programId - ] [-k ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator - FORCEREPORTPERIOD Number of seconds for which, even if the variance threshold is not passed, accept new responses - from oracles. - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an aggregator's force report period - -ALIASES - $ sbv2 aggregator set forceReport - -EXAMPLES - $ sbv2 aggregator:set:forceReportPeriod GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR 300 --keypair ../payer-keypair.json -``` - -## `sbv2 aggregator set history [AGGREGATORKEY] [SIZE]` - -set an aggregator's history buffer account to record the last N accepted results - -``` -USAGE - $ sbv2 aggregator set history [AGGREGATORKEY] [SIZE] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator to add to a crank - SIZE size of history buffer - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an aggregator's history buffer account to record the last N accepted results - -ALIASES - $ sbv2 aggregator add history - -EXAMPLES - $ sbv2 aggregator:set:history GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR 10000 --keypair ../payer-keypair.json -``` - -## `sbv2 aggregator set minJobs [AGGREGATORKEY] [MINJOBRESULTS]` - -set an aggregator's minimum number of jobs before an oracle responds - -``` -USAGE - $ sbv2 aggregator set minJobs [AGGREGATORKEY] [MINJOBRESULTS] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] - [-k ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account - MINJOBRESULTS number of jobs that must respond before an oracle responds - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an aggregator's minimum number of jobs before an oracle responds -``` - -## `sbv2 aggregator set minOracles [AGGREGATORKEY] [MINORACLERESULTS]` - -set an aggregator's minimum number of oracles that must respond before a result is accepted on-chain - -``` -USAGE - $ sbv2 aggregator set minOracles [AGGREGATORKEY] [MINORACLERESULTS] [-v] [-s] [--mainnetBeta] [-u ] [--programId - ] [-k ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account - MINORACLERESULTS number of oracles that must respond before a value is accepted on-chain - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an aggregator's minimum number of oracles that must respond before a result is accepted on-chain -``` - -## `sbv2 aggregator set queue [AGGREGATORKEY] [QUEUEKEY]` - -set an aggregator's oracle queue - -``` -USAGE - $ sbv2 aggregator set queue [AGGREGATORKEY] [QUEUEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator - QUEUEKEY public key of the oracle queue - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an aggregator's oracle queue -``` - -## `sbv2 aggregator set updateInterval [AGGREGATORKEY] [UPDATEINTERVAL]` - -set an aggregator's minimum update delay - -``` -USAGE - $ sbv2 aggregator set updateInterval [AGGREGATORKEY] [UPDATEINTERVAL] [-v] [-s] [--mainnetBeta] [-u ] [--programId - ] [-k ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account - UPDATEINTERVAL set an aggregator's minimum update delay - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an aggregator's minimum update delay - -EXAMPLES - $ sbv2 aggregator:set:updateInterval GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR 60 --keypair ../payer-keypair.json -``` - -## `sbv2 aggregator set variance [AGGREGATORKEY] [VARIANCETHRESHOLD]` - -set an aggregator's variance threshold - -``` -USAGE - $ sbv2 aggregator set variance [AGGREGATORKEY] [VARIANCETHRESHOLD] [-v] [-s] [--mainnetBeta] [-u ] [--programId - ] [-k ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator - VARIANCETHRESHOLD percentage change between a previous accepted result and the next round before an oracle reports a - value on-chain. Used to conserve lease cost during low volatility - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an aggregator's variance threshold - -ALIASES - $ sbv2 aggregator set variance - -EXAMPLES - $ sbv2 aggregator:set:varianceThreshold GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR 0.1 --keypair ../payer-keypair.json -``` - -## `sbv2 aggregator set varianceThreshold [AGGREGATORKEY] [VARIANCETHRESHOLD]` - -set an aggregator's variance threshold - -``` -USAGE - $ sbv2 aggregator set varianceThreshold [AGGREGATORKEY] [VARIANCETHRESHOLD] [-v] [-s] [--mainnetBeta] [-u ] [--programId - ] [-k ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator - VARIANCETHRESHOLD percentage change between a previous accepted result and the next round before an oracle reports a - value on-chain. Used to conserve lease cost during low volatility - -FLAGS - -a, --authority= alternate keypair that is the authority for the aggregator - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an aggregator's variance threshold - -ALIASES - $ sbv2 aggregator set variance - -EXAMPLES - $ sbv2 aggregator:set:varianceThreshold GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR 0.1 --keypair ../payer-keypair.json -``` - -## `sbv2 aggregator update [AGGREGATORKEY]` - -request a new aggregator result from a set of oracles - -``` -USAGE - $ sbv2 aggregator update [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - request a new aggregator result from a set of oracles - -EXAMPLES - $ sbv2 aggregator:update J7j9xX8JP2B2ErvUzuqGAKBGeggsxPyFXj5MqZcYDxfa --keypair ../payer-keypair.json -``` - -## `sbv2 aggregator watch [AGGREGATORKEY]` - -watch an aggregator for a new value - -``` -USAGE - $ sbv2 aggregator watch [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - watch an aggregator for a new value - -ALIASES - $ sbv2 aggregator watch - -EXAMPLES - $ sbv2 watch:aggregator J7j9xX8JP2B2ErvUzuqGAKBGeggsxPyFXj5MqZcYDxfa -``` diff --git a/website/api/cli/_anchor.md b/website/api/cli/_anchor.md deleted file mode 100644 index 8e55e0c..0000000 --- a/website/api/cli/_anchor.md +++ /dev/null @@ -1,31 +0,0 @@ - -run anchor test and a switchboard oracle in parallel - -* [`sbv2 anchor test`](#sbv2-anchor-test) - -## `sbv2 anchor test` - -run anchor test and a switchboard oracle in parallel - -``` -USAGE - $ sbv2 anchor test [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] [-d ] - [--oracleKey ] [--nodeImage ] [--arm] [-t ] - -FLAGS - -d, --switchboardDir= directory with switchboard.env to load a switchboard environment - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress docker logging - -t, --timeout= [default: 120] number of seconds before timing out - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --arm apple silicon needs to use a docker image for linux/arm64 - --mainnetBeta WARNING: use mainnet-beta solana cluster - --nodeImage= [default: dev-v2-08-14-22a-mc-beta] public key of the oracle to start-up - --oracleKey= public key of the oracle to start-up - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - run anchor test and a switchboard oracle in parallel -``` diff --git a/website/api/cli/_buffer.md b/website/api/cli/_buffer.md deleted file mode 100644 index 3a6184f..0000000 --- a/website/api/cli/_buffer.md +++ /dev/null @@ -1,67 +0,0 @@ - -create a buffer relayer account - -* [`sbv2 buffer create [QUEUEKEY]`](#sbv2-buffer-create-queuekey) -* [`sbv2 buffer print [BUFFERRELAYERKEY]`](#sbv2-buffer-print-bufferrelayerkey) - -## `sbv2 buffer create [QUEUEKEY]` - -create a buffer relayer account - -``` -USAGE - $ sbv2 buffer create [QUEUEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] [-a - ] [-n ] [--minUpdateDelaySeconds ] [--jobDefinition | --jobKey ] - -ARGUMENTS - QUEUEKEY oracle queue to create BufferRelayer account on - -FLAGS - -a, --authority= alternate keypair that will be the aggregator authority - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if - no alternate authority provided - -n, --name= name of the buffer account - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --jobDefinition= filesystem path to job definition - --jobKey= public key of existing job account - --mainnetBeta WARNING: use mainnet-beta solana cluster - --minUpdateDelaySeconds= [default: 30] minimum number of seconds between update calls - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - create a buffer relayer account -``` - -## `sbv2 buffer print [BUFFERRELAYERKEY]` - -Print the deserialized Switchboard buffer relayer account - -``` -USAGE - $ sbv2 buffer print [BUFFERRELAYERKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [--job] - -ARGUMENTS - BUFFERRELAYERKEY public key of the buffer relayer account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --job output job definitions - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the deserialized Switchboard buffer relayer account - -ALIASES - $ sbv2 buffer print - -EXAMPLES - $ sbv2 buffer:print 23GvzENjwgqqaLejsAtAWgTkSzWjSMo2LUYTAETT8URp -``` diff --git a/website/api/cli/_category_.json b/website/api/cli/_category_.json deleted file mode 100644 index e63a912..0000000 --- a/website/api/cli/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "switchboardv2-cli", - "position": 40 -} diff --git a/website/api/cli/_config.md b/website/api/cli/_config.md deleted file mode 100644 index a0db7b6..0000000 --- a/website/api/cli/_config.md +++ /dev/null @@ -1,56 +0,0 @@ - -print cli config - -* [`sbv2 config print`](#sbv2-config-print) -* [`sbv2 config set [PARAM] [VALUE]`](#sbv2-config-set-param-value) - -## `sbv2 config print` - -print cli config - -``` -USAGE - $ sbv2 config print [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - print cli config - -EXAMPLES - $ sbv2 config:print -``` - -## `sbv2 config set [PARAM] [VALUE]` - -set a configuration option - -``` -USAGE - $ sbv2 config set [PARAM] [VALUE] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [-r] - -ARGUMENTS - PARAM (devnet-rpc|mainnet-rpc) configuration parameter to set - VALUE value of the param to set - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -r, --reset remove value or set to default rpc - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set a configuration option -``` diff --git a/website/api/cli/_crank.md b/website/api/cli/_crank.md deleted file mode 100644 index 88be0eb..0000000 --- a/website/api/cli/_crank.md +++ /dev/null @@ -1,209 +0,0 @@ - -interact with a switchboard crank account - -* [`sbv2 crank add aggregator [CRANKKEY] [AGGREGATORKEY]`](#sbv2-crank-add-aggregator-crankkey-aggregatorkey) -* [`sbv2 crank create [QUEUEKEY]`](#sbv2-crank-create-queuekey) -* [`sbv2 crank list [CRANKKEY]`](#sbv2-crank-list-crankkey) -* [`sbv2 crank pop [CRANKKEY]`](#sbv2-crank-pop-crankkey) -* [`sbv2 crank print [CRANKKEY]`](#sbv2-crank-print-crankkey) -* [`sbv2 crank push [CRANKKEY] [AGGREGATORKEY]`](#sbv2-crank-push-crankkey-aggregatorkey) -* [`sbv2 crank turn [CRANKKEY]`](#sbv2-crank-turn-crankkey) - -## `sbv2 crank add aggregator [CRANKKEY] [AGGREGATORKEY]` - -push an aggregator onto a crank - -``` -USAGE - $ sbv2 crank add aggregator [CRANKKEY] [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - CRANKKEY public key of the crank - AGGREGATORKEY public key of the aggregator - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - push an aggregator onto a crank - -ALIASES - $ sbv2 aggregator add crank - $ sbv2 crank add aggregator -``` - -## `sbv2 crank create [QUEUEKEY]` - -add a crank to an existing oracle queue - -``` -USAGE - $ sbv2 crank create [QUEUEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] [-n - ] [-r ] [--queueAuthority ] - -ARGUMENTS - QUEUEKEY public key of the oracle queue to create a crank on - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -n, --name= name of the crank for easier identification - -r, --maxRows= [default: 100] maximum number of rows a crank can support - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - --queueAuthority= alternative keypair to use for queue authority - -DESCRIPTION - add a crank to an existing oracle queue - -EXAMPLES - $ sbv2 queue:add:crank 5aYuxRdcB9GpWrEXVMBQp2R5uf94uoBiFdMEBwcmHuU4 -k ../authority-keypair.json -n crank-1 -``` - -## `sbv2 crank list [CRANKKEY]` - -list the pubkeys currently on the crank - -``` -USAGE - $ sbv2 crank list [CRANKKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [--force] [-f ] - -ARGUMENTS - CRANKKEY public key of the crank - -FLAGS - -f, --outputFile= output file to save aggregator pubkeys to - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --force overwrite output file if exists - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - list the pubkeys currently on the crank -``` - -## `sbv2 crank pop [CRANKKEY]` - -pop the crank - -``` -USAGE - $ sbv2 crank pop [CRANKKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - CRANKKEY public key of the crank - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - pop the crank -``` - -## `sbv2 crank print [CRANKKEY]` - -print deserialized switchboard crank account - -``` -USAGE - $ sbv2 crank print [CRANKKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - CRANKKEY public key of the crank account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - print deserialized switchboard crank account - -ALIASES - $ sbv2 crank print - -EXAMPLES - $ sbv2 crank:print 85L2cFUvXaeGQ4HrzP8RJEVCL7WvRrXM2msvEmQ82AVr -``` - -## `sbv2 crank push [CRANKKEY] [AGGREGATORKEY]` - -push an aggregator onto a crank - -``` -USAGE - $ sbv2 crank push [CRANKKEY] [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - CRANKKEY public key of the crank - AGGREGATORKEY public key of the aggregator - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - push an aggregator onto a crank - -ALIASES - $ sbv2 aggregator add crank - $ sbv2 crank add aggregator -``` - -## `sbv2 crank turn [CRANKKEY]` - -turn the crank and get rewarded if aggregator updates available - -``` -USAGE - $ sbv2 crank turn [CRANKKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - CRANKKEY public key of the crank to turn - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - turn the crank and get rewarded if aggregator updates available - -EXAMPLES - $ sbv2 crank:turn 85L2cFUvXaeGQ4HrzP8RJEVCL7WvRrXM2msvEmQ82AVr --keypair ../payer-keypair.json -``` diff --git a/website/api/cli/_help.md b/website/api/cli/_help.md deleted file mode 100644 index 10f8e7d..0000000 --- a/website/api/cli/_help.md +++ /dev/null @@ -1,24 +0,0 @@ - -Display help for sbv2. - -* [`sbv2 help [COMMAND]`](#sbv2-help-command) - -## `sbv2 help [COMMAND]` - -Display help for sbv2. - -``` -USAGE - $ sbv2 help [COMMAND] [-n] - -ARGUMENTS - COMMAND Command to show help for. - -FLAGS - -n, --nested-commands Include all nested commands in the output. - -DESCRIPTION - Display help for sbv2. -``` - -_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.12/src/commands/help.ts)_ diff --git a/website/api/cli/_job.md b/website/api/cli/_job.md deleted file mode 100644 index 2647f7f..0000000 --- a/website/api/cli/_job.md +++ /dev/null @@ -1,62 +0,0 @@ - -interact with a switchboard job account - -* [`sbv2 job create JOBDEFINITION`](#sbv2-job-create-jobdefinition) -* [`sbv2 job print [JOBKEY]`](#sbv2-job-print-jobkey) - -## `sbv2 job create JOBDEFINITION` - -create a job account - -``` -USAGE - $ sbv2 job create [JOBDEFINITION] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [-a ] [-n ] - -ARGUMENTS - JOBDEFINITION filesystem path to job definition - -FLAGS - -a, --authority= alternate keypair that will be the account authority - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -n, --name= name of the buffer account - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - create a job account -``` - -## `sbv2 job print [JOBKEY]` - -Print the deserialized Switchboard job account - -``` -USAGE - $ sbv2 job print [JOBKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - JOBKEY public key of the job account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the deserialized Switchboard job account - -ALIASES - $ sbv2 job print - -EXAMPLES - $ sbv2 job:print SzTvFZLz3hwjZFMwVWzuEnr1oUF6qyvXwXCvsqf7qeA -``` diff --git a/website/api/cli/_lease.md b/website/api/cli/_lease.md deleted file mode 100644 index 4bf37cd..0000000 --- a/website/api/cli/_lease.md +++ /dev/null @@ -1,107 +0,0 @@ - -interact with a switchboard lease account - -* [`sbv2 lease create [AGGREGATORKEY]`](#sbv2-lease-create-aggregatorkey) -* [`sbv2 lease extend [AGGREGATORKEY]`](#sbv2-lease-extend-aggregatorkey) -* [`sbv2 lease withdraw [AGGREGATORKEY]`](#sbv2-lease-withdraw-aggregatorkey) - -## `sbv2 lease create [AGGREGATORKEY]` - -fund and re-enable an aggregator lease - -``` -USAGE - $ sbv2 lease create [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [--amount ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator to extend a lease for - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --amount= token amount to load into the lease escrow. If decimals provided, amount will be normalized to - raw tokenAmount - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - fund and re-enable an aggregator lease - -ALIASES - $ sbv2 aggregator lease create - -EXAMPLES - $ sbv2 lease:create GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR --amount 1.5 --keypair ../payer-keypair.json -``` - -## `sbv2 lease extend [AGGREGATORKEY]` - -fund and re-enable an aggregator lease - -``` -USAGE - $ sbv2 lease extend [AGGREGATORKEY] --amount [-v] [-s] [--mainnetBeta] [-u ] [--programId - ] [-k ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator to extend a lease for - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --amount= (required) token amount to load into the lease escrow. If decimals provided, amount will be - normalized to raw tokenAmount - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - fund and re-enable an aggregator lease - -ALIASES - $ sbv2 aggregator lease extend - -EXAMPLES - $ sbv2 aggregator:lease:extend GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR --amount 1.1 --keypair ../payer-keypair.json -``` - -## `sbv2 lease withdraw [AGGREGATORKEY]` - -withdraw funds from an aggregator lease - -``` -USAGE - $ sbv2 lease withdraw [AGGREGATORKEY] --amount [-v] [-s] [--mainnetBeta] [-u ] [--programId - ] [-k ] [--withdrawAddress ] [-a ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator to extend a lease for - -FLAGS - -a, --authority= keypair delegated as the authority for managing the oracle account - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --amount= (required) token amount to withdraw from lease account. If decimals provided, amount will - be normalized to raw tokenAmount - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - --withdrawAddress= tokenAccount to withdraw to. If not provided, payer associated token account will be used - -DESCRIPTION - withdraw funds from an aggregator lease - -ALIASES - $ sbv2 aggregator lease withdraw - -EXAMPLES - $ sbv2 aggregator:lease:withdraw GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR --amount 1.1 --keypair ../payer-keypair.json -``` diff --git a/website/api/cli/_localnet.md b/website/api/cli/_localnet.md deleted file mode 100644 index 84657b4..0000000 --- a/website/api/cli/_localnet.md +++ /dev/null @@ -1,28 +0,0 @@ - -create a localnet switchboard environment - -* [`sbv2 localnet env`](#sbv2-localnet-env) - -## `sbv2 localnet env` - -create a localnet switchboard environment - -``` -USAGE - $ sbv2 localnet env [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] [--force] [-o - ] - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -o, --outputDir= output directory for scripts - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --force overwrite output file if existing - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - create a localnet switchboard environment -``` diff --git a/website/api/cli/_oracle.md b/website/api/cli/_oracle.md deleted file mode 100644 index 214abbd..0000000 --- a/website/api/cli/_oracle.md +++ /dev/null @@ -1,281 +0,0 @@ - -interact with a switchboard oracle account - -* [`sbv2 oracle balance [ORACLEKEY]`](#sbv2-oracle-balance-oraclekey) -* [`sbv2 oracle create [QUEUEKEY]`](#sbv2-oracle-create-queuekey) -* [`sbv2 oracle deposit [ORACLEKEY]`](#sbv2-oracle-deposit-oraclekey) -* [`sbv2 oracle nonce [ORACLEKEY]`](#sbv2-oracle-nonce-oraclekey) -* [`sbv2 oracle permission create [ORACLEKEY]`](#sbv2-oracle-permission-create-oraclekey) -* [`sbv2 oracle permission print [ORACLEKEY]`](#sbv2-oracle-permission-print-oraclekey) -* [`sbv2 oracle print [ORACLEKEY]`](#sbv2-oracle-print-oraclekey) -* [`sbv2 oracle print permission [ORACLEKEY]`](#sbv2-oracle-print-permission-oraclekey) -* [`sbv2 oracle withdraw [ORACLEKEY]`](#sbv2-oracle-withdraw-oraclekey) - -## `sbv2 oracle balance [ORACLEKEY]` - -check an oracles token balance - -``` -USAGE - $ sbv2 oracle balance [ORACLEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - ORACLEKEY public key of the oracle to check token balance - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - check an oracles token balance - -EXAMPLES - $ sbv2 oracle:balance 9CmLriMhykZ8xAoNTSHjHbk6SkuMhie1NCZn9P6LCuZ4 -``` - -## `sbv2 oracle create [QUEUEKEY]` - -create a new oracle account for a given queue - -``` -USAGE - $ sbv2 oracle create [QUEUEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] [-n - ] [-a ] [--enable] [--queueAuthority ] - -ARGUMENTS - QUEUEKEY public key of the oracle queue to join - -FLAGS - -a, --authority= keypair to delegate authority to for managing the oracle account - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -n, --name= name of the oracle for easier identification - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --enable enable oracle heartbeat permissions - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - --queueAuthority= alternative keypair to use for queue authority - -DESCRIPTION - create a new oracle account for a given queue - -EXAMPLES - $ sbv2 oracle:create GhYg3R1V6DmJbwuc57qZeoYG6gUuvCotUF1zU3WCj98U --keypair ../payer-and-authority-keypair.json - - $ sbv2 oracle:create GhYg3R1V6DmJbwuc57qZeoYG6gUuvCotUF1zU3WCj98U --name=oracle-1 --keypair ../payer-and-authority-keypair.json - - $ sbv2 oracle:create GhYg3R1V6DmJbwuc57qZeoYG6gUuvCotUF1zU3WCj98U --keypair ../payer-keypair.json --authority ../oracle-keypair.json -``` - -## `sbv2 oracle deposit [ORACLEKEY]` - -deposit tokens into an oracle's token wallet - -``` -USAGE - $ sbv2 oracle deposit [ORACLEKEY] --amount [-v] [-s] [--mainnetBeta] [-u ] [--programId ] - [-k ] - -ARGUMENTS - ORACLEKEY public key of the oracle to deposit funds into - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --amount= (required) token amount to load into the oracle escrow. If decimals provided, amount will be - normalized to raw tokenAmount - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - deposit tokens into an oracle's token wallet - -EXAMPLES - $ sbv2 oracle:deposit 6kPsQoufdugtHLjM4fH7Z2fNv7jLt5pgvwKHt5JvRhQ6 2500 --keypair ../payer-keypair.json -``` - -## `sbv2 oracle nonce [ORACLEKEY]` - -view an oracles nonce accounts - -``` -USAGE - $ sbv2 oracle nonce [ORACLEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - ORACLEKEY public key of the oracle to check token balance - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - view an oracles nonce accounts -``` - -## `sbv2 oracle permission create [ORACLEKEY]` - -create a permission account for an oracle - -``` -USAGE - $ sbv2 oracle permission create [ORACLEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - ORACLEKEY public key of the oracle account - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - create a permission account for an oracle -``` - -## `sbv2 oracle permission print [ORACLEKEY]` - -Print the permission account associated with a Switchboard oracle account - -``` -USAGE - $ sbv2 oracle permission print [ORACLEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - ORACLEKEY public key of the oracle account to fetch permission account and deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the permission account associated with a Switchboard oracle account - -ALIASES - $ sbv2 oracle permission print - $ sbv2 oracle print permission - -EXAMPLES - $ sbv2 oracle:permission:print 9CmLriMhykZ8xAoNTSHjHbk6SkuMhie1NCZn9P6LCuZ4 -``` - -## `sbv2 oracle print [ORACLEKEY]` - -Print the deserialized Switchboard oracle account - -``` -USAGE - $ sbv2 oracle print [ORACLEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - ORACLEKEY public key of the oracle account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the deserialized Switchboard oracle account - -ALIASES - $ sbv2 oracle print - -EXAMPLES - $ sbv2 oracle:print 9CmLriMhykZ8xAoNTSHjHbk6SkuMhie1NCZn9P6LCuZ4 -``` - -## `sbv2 oracle print permission [ORACLEKEY]` - -Print the permission account associated with a Switchboard oracle account - -``` -USAGE - $ sbv2 oracle print permission [ORACLEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - ORACLEKEY public key of the oracle account to fetch permission account and deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the permission account associated with a Switchboard oracle account - -ALIASES - $ sbv2 oracle permission print - $ sbv2 oracle print permission - -EXAMPLES - $ sbv2 oracle:permission:print 9CmLriMhykZ8xAoNTSHjHbk6SkuMhie1NCZn9P6LCuZ4 -``` - -## `sbv2 oracle withdraw [ORACLEKEY]` - -withdraw tokens from an oracle's token wallet - -``` -USAGE - $ sbv2 oracle withdraw [ORACLEKEY] --amount [-v] [-s] [--mainnetBeta] [-u ] [--programId ] - [-k ] [-f] [-w ] [-a ] - -ARGUMENTS - ORACLEKEY public key of the oracle to withdraw from - -FLAGS - -a, --authority= keypair delegated as the authority for managing the oracle account - -f, --force skip minStake balance check. your oracle may be removed from the queue - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - -w, --withdrawAccount= optional solana pubkey or keypair filesystem path to withdraw funds to. default - destination is oracle authority's token wallet - --amount= (required) token amount to withdraw from oracle escrow. If decimals provided, amount - will be normalized to raw tokenAmount - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - withdraw tokens from an oracle's token wallet - -EXAMPLES - $ sbv2 oracle:withdraw 6kPsQoufdugtHLjM4fH7Z2fNv7jLt5pgvwKHt5JvRhQ6 2500 --keypair ../oracle-keypair.json - - $ sbv2 oracle:withdraw 6kPsQoufdugtHLjM4fH7Z2fNv7jLt5pgvwKHt5JvRhQ6 2500 --keypair ../payer-keypair.json --authority ../oracle-keypair.json -w ByJs8E29jxvqf2KFLwfyiE2gUh5fivaS7aShcRMAsnzg -``` diff --git a/website/api/cli/_permission.md b/website/api/cli/_permission.md deleted file mode 100644 index b7e2163..0000000 --- a/website/api/cli/_permission.md +++ /dev/null @@ -1,88 +0,0 @@ - -create a permission account - -* [`sbv2 permission create [GRANTER] [GRANTEE]`](#sbv2-permission-create-granter-grantee) -* [`sbv2 permission print [PERMISSIONKEY]`](#sbv2-permission-print-permissionkey) -* [`sbv2 permission set [PERMISSIONKEY]`](#sbv2-permission-set-permissionkey) - -## `sbv2 permission create [GRANTER] [GRANTEE]` - -create a permission account - -``` -USAGE - $ sbv2 permission create [GRANTER] [GRANTEE] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - GRANTER public key of the account granting permission - GRANTEE public key of the account getting permissions - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - create a permission account -``` - -## `sbv2 permission print [PERMISSIONKEY]` - -Print the deserialized Switchboard permission account - -``` -USAGE - $ sbv2 permission print [PERMISSIONKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - PERMISSIONKEY public key of the permission account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the deserialized Switchboard permission account - -ALIASES - $ sbv2 permission print - -EXAMPLES - $ sbv2 permission:print 94XXM72K2aKu2wcuJaawV8njuGaFZvhy8iKgPxoa1tJk -``` - -## `sbv2 permission set [PERMISSIONKEY]` - -permit a grantee to use a granters resources - -``` -USAGE - $ sbv2 permission set [PERMISSIONKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [-a ] [--disable] - -ARGUMENTS - PERMISSIONKEY public key of the permission account - -FLAGS - -a, --authority= alternate keypair that is the granters authority - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --disable disable permissions - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - permit a grantee to use a granters resources -``` diff --git a/website/api/cli/_print.md b/website/api/cli/_print.md deleted file mode 100644 index e1f8cc0..0000000 --- a/website/api/cli/_print.md +++ /dev/null @@ -1,448 +0,0 @@ - -find and print a switchboard account by public key for a given cluster - -* [`sbv2 print [PUBLICKEY]`](#sbv2-print-publickey) -* [`sbv2 print aggregator [AGGREGATORKEY]`](#sbv2-print-aggregator-aggregatorkey) -* [`sbv2 print aggregator history [AGGREGATORKEY]`](#sbv2-print-aggregator-history-aggregatorkey) -* [`sbv2 print aggregator lease [AGGREGATORKEY]`](#sbv2-print-aggregator-lease-aggregatorkey) -* [`sbv2 print aggregator permission [AGGREGATORKEY]`](#sbv2-print-aggregator-permission-aggregatorkey) -* [`sbv2 print buffer [BUFFERRELAYERKEY]`](#sbv2-print-buffer-bufferrelayerkey) -* [`sbv2 print crank [CRANKKEY]`](#sbv2-print-crank-crankkey) -* [`sbv2 print job [JOBKEY]`](#sbv2-print-job-jobkey) -* [`sbv2 print oracle [ORACLEKEY]`](#sbv2-print-oracle-oraclekey) -* [`sbv2 print oracle permission [ORACLEKEY]`](#sbv2-print-oracle-permission-oraclekey) -* [`sbv2 print permission [PERMISSIONKEY]`](#sbv2-print-permission-permissionkey) -* [`sbv2 print program`](#sbv2-print-program) -* [`sbv2 print queue [QUEUEKEY]`](#sbv2-print-queue-queuekey) -* [`sbv2 print vrf [VRFKEY]`](#sbv2-print-vrf-vrfkey) - -## `sbv2 print [PUBLICKEY]` - -find a switchboard account by public key for a given cluster - -``` -USAGE - $ sbv2 print [PUBLICKEY] [-h] [-v] - -ARGUMENTS - PUBLICKEY public key of a switchboard account to lookup - -FLAGS - -h, --help Show CLI help. - -v, --verbose log everything - -DESCRIPTION - find a switchboard account by public key for a given cluster - -EXAMPLES - $ sbv2 print GhYg3R1V6DmJbwuc57qZeoYG6gUuvCotUF1zU3WCj98U -``` - -_See code: [dist/commands/print/index.ts](https://github.com/switchboard-xyz/switchboard-v2/blob/v0.2.25/dist/commands/print/index.ts)_ - -## `sbv2 print aggregator [AGGREGATORKEY]` - -Print the deserialized Switchboard aggregator account - -``` -USAGE - $ sbv2 print aggregator [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [--json] [--jobs] [-o] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -o, --oraclePubkeysData print the assigned oracles for the current round - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --jobs output job definitions - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - Print the deserialized Switchboard aggregator account - -ALIASES - $ sbv2 aggregator print - -EXAMPLES - $ sbv2 aggregator:print GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR -``` - -## `sbv2 print aggregator history [AGGREGATORKEY]` - -Print the history buffer associated with an aggregator account - -``` -USAGE - $ sbv2 print aggregator history [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to fetch permission account and deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the history buffer associated with an aggregator account - -ALIASES - $ sbv2 aggregator history print - $ sbv2 aggregator print history - -EXAMPLES - $ sbv2 aggregator:print:history 9CmLriMhykZ8xAoNTSHjHbk6SkuMhie1NCZn9P6LCuZ4 -``` - -## `sbv2 print aggregator lease [AGGREGATORKEY]` - -Print the lease account associated with a Switchboard aggregator account - -``` -USAGE - $ sbv2 print aggregator lease [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to fetch permission account and deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the lease account associated with a Switchboard aggregator account - -ALIASES - $ sbv2 aggregator lease print - $ sbv2 aggregator print lease - -EXAMPLES - $ sbv2 aggregator:lease:print 8SXvChNYFhRq4EZuZvnhjrB3jJRQCv4k3P4W6hesH3Ee -``` - -## `sbv2 print aggregator permission [AGGREGATORKEY]` - -Print the permission account associated with a Switchboard aggregator account - -``` -USAGE - $ sbv2 print aggregator permission [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to fetch permission account and deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the permission account associated with a Switchboard aggregator account - -ALIASES - $ sbv2 aggregator permission print - $ sbv2 aggregator print permission - -EXAMPLES - $ sbv2 aggregator:permission:print 9CmLriMhykZ8xAoNTSHjHbk6SkuMhie1NCZn9P6LCuZ4 -``` - -## `sbv2 print buffer [BUFFERRELAYERKEY]` - -Print the deserialized Switchboard buffer relayer account - -``` -USAGE - $ sbv2 print buffer [BUFFERRELAYERKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [--job] - -ARGUMENTS - BUFFERRELAYERKEY public key of the buffer relayer account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --job output job definitions - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the deserialized Switchboard buffer relayer account - -ALIASES - $ sbv2 buffer print - -EXAMPLES - $ sbv2 buffer:print 23GvzENjwgqqaLejsAtAWgTkSzWjSMo2LUYTAETT8URp -``` - -## `sbv2 print crank [CRANKKEY]` - -print deserialized switchboard crank account - -``` -USAGE - $ sbv2 print crank [CRANKKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - CRANKKEY public key of the crank account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - print deserialized switchboard crank account - -ALIASES - $ sbv2 crank print - -EXAMPLES - $ sbv2 crank:print 85L2cFUvXaeGQ4HrzP8RJEVCL7WvRrXM2msvEmQ82AVr -``` - -## `sbv2 print job [JOBKEY]` - -Print the deserialized Switchboard job account - -``` -USAGE - $ sbv2 print job [JOBKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - JOBKEY public key of the job account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the deserialized Switchboard job account - -ALIASES - $ sbv2 job print - -EXAMPLES - $ sbv2 job:print SzTvFZLz3hwjZFMwVWzuEnr1oUF6qyvXwXCvsqf7qeA -``` - -## `sbv2 print oracle [ORACLEKEY]` - -Print the deserialized Switchboard oracle account - -``` -USAGE - $ sbv2 print oracle [ORACLEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - ORACLEKEY public key of the oracle account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the deserialized Switchboard oracle account - -ALIASES - $ sbv2 oracle print - -EXAMPLES - $ sbv2 oracle:print 9CmLriMhykZ8xAoNTSHjHbk6SkuMhie1NCZn9P6LCuZ4 -``` - -## `sbv2 print oracle permission [ORACLEKEY]` - -Print the permission account associated with a Switchboard oracle account - -``` -USAGE - $ sbv2 print oracle permission [ORACLEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - ORACLEKEY public key of the oracle account to fetch permission account and deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the permission account associated with a Switchboard oracle account - -ALIASES - $ sbv2 oracle permission print - $ sbv2 oracle print permission - -EXAMPLES - $ sbv2 oracle:permission:print 9CmLriMhykZ8xAoNTSHjHbk6SkuMhie1NCZn9P6LCuZ4 -``` - -## `sbv2 print permission [PERMISSIONKEY]` - -Print the deserialized Switchboard permission account - -``` -USAGE - $ sbv2 print permission [PERMISSIONKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - PERMISSIONKEY public key of the permission account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the deserialized Switchboard permission account - -ALIASES - $ sbv2 permission print - -EXAMPLES - $ sbv2 permission:print 94XXM72K2aKu2wcuJaawV8njuGaFZvhy8iKgPxoa1tJk -``` - -## `sbv2 print program` - -print the deserialized switchboard program state account - -``` -USAGE - $ sbv2 print program [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - print the deserialized switchboard program state account - -ALIASES - $ sbv2 program print - -EXAMPLES - $ sbv2 program:print -``` - -## `sbv2 print queue [QUEUEKEY]` - -Print the deserialized Switchboard oraclequeue account - -``` -USAGE - $ sbv2 print queue [QUEUEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [--oracles] - -ARGUMENTS - QUEUEKEY public key of the oracle queue account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --oracles output oracles that are heartbeating on the queue - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the deserialized Switchboard oraclequeue account - -ALIASES - $ sbv2 queue print - -EXAMPLES - $ sbv2 queue:print GhYg3R1V6DmJbwuc57qZeoYG6gUuvCotUF1zU3WCj98U -``` - -## `sbv2 print vrf [VRFKEY]` - -Print the deserialized Switchboard VRF account - -``` -USAGE - $ sbv2 print vrf [VRFKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] [--json] - -ARGUMENTS - VRFKEY public key of the vrf account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - Print the deserialized Switchboard VRF account - -ALIASES - $ sbv2 vrf print - -EXAMPLES - $ sbv2 vrf:print -``` diff --git a/website/api/cli/_queue.md b/website/api/cli/_queue.md deleted file mode 100644 index 73cdbd7..0000000 --- a/website/api/cli/_queue.md +++ /dev/null @@ -1,132 +0,0 @@ - -interact with a switchboard oracle queue account - -* [`sbv2 queue create`](#sbv2-queue-create) -* [`sbv2 queue print [QUEUEKEY]`](#sbv2-queue-print-queuekey) -* [`sbv2 queue set rewards [QUEUEKEY] [REWARDS]`](#sbv2-queue-set-rewards-queuekey-rewards) -* [`sbv2 queue set vrf [QUEUEKEY]`](#sbv2-queue-set-vrf-queuekey) - -## `sbv2 queue create` - -create a custom queue - -``` -USAGE - $ sbv2 queue create [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] [--force] [-a - ] [-n ] [--minStake ] [-r ] [-c ] [--oracleTimeout ] [-o ] - [--queueSize ] [--unpermissionedFeeds] [--unpermissionedVrf] [--enableBufferRelayers] [-f ] - -FLAGS - -a, --authority= keypair to delegate authority to for creating permissions targeted at the queue - -c, --crankSize= [default: 100] size of the crank - -f, --outputFile= output queue schema to a json file - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -n, --name= [default: Custom Queue] name of the queue for easier identification - -o, --numOracles= number of oracles to add to the queue - -r, --reward= [default: 0] oracle rewards for successfully responding to an update request - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --enableBufferRelayers enable oracles to fulfill buffer relayer requests - --force overwrite output file if existing - --mainnetBeta WARNING: use mainnet-beta solana cluster - --minStake= [default: 0] minimum stake required by an oracle to join the queue - --oracleTimeout= [default: 180] number of oracles to add to the queue - --programId= alternative Switchboard program ID to interact with - --queueSize= [default: 100] maximum number of oracles the queue can support - --unpermissionedFeeds permit unpermissioned feeds - --unpermissionedVrf permit unpermissioned VRF accounts - -DESCRIPTION - create a custom queue - -ALIASES - $ sbv2 custom queue -``` - -## `sbv2 queue print [QUEUEKEY]` - -Print the deserialized Switchboard oraclequeue account - -``` -USAGE - $ sbv2 queue print [QUEUEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [--oracles] - -ARGUMENTS - QUEUEKEY public key of the oracle queue account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --oracles output oracles that are heartbeating on the queue - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - Print the deserialized Switchboard oraclequeue account - -ALIASES - $ sbv2 queue print - -EXAMPLES - $ sbv2 queue:print GhYg3R1V6DmJbwuc57qZeoYG6gUuvCotUF1zU3WCj98U -``` - -## `sbv2 queue set rewards [QUEUEKEY] [REWARDS]` - -set an oracle queue's rewards - -``` -USAGE - $ sbv2 queue set rewards [QUEUEKEY] [REWARDS] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] [-a ] - -ARGUMENTS - QUEUEKEY public key of the oracle queue - REWARDS token rewards for each assigned oracle per open round call - -FLAGS - -a, --authority= alternate keypair that is the authority for oracle queue - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set an oracle queue's rewards -``` - -## `sbv2 queue set vrf [QUEUEKEY]` - -set unpermissionedVrfEnabled - -``` -USAGE - $ sbv2 queue set vrf [QUEUEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] [-a - ] [--disable] - -ARGUMENTS - QUEUEKEY public key of the oracle queue to create a crank on - -FLAGS - -a, --authority= alternate keypair that is the authority for oracle queue - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --disable disable unpermissionedVrfEnabled - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - set unpermissionedVrfEnabled -``` diff --git a/website/api/cli/_sandbox.md b/website/api/cli/_sandbox.md deleted file mode 100644 index 7903344..0000000 --- a/website/api/cli/_sandbox.md +++ /dev/null @@ -1,29 +0,0 @@ - -sandbox - -* [`sbv2 sandbox [PLACEHOLDER]`](#sbv2-sandbox-placeholder) - -## `sbv2 sandbox [PLACEHOLDER]` - -sandbox - -``` -USAGE - $ sbv2 sandbox [PLACEHOLDER] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] [-n - ] - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -n, --name= name of the job account for easier identification - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - sandbox -``` - -_See code: [dist/commands/sandbox.ts](https://github.com/switchboard-xyz/switchboard-v2/blob/v0.2.25/dist/commands/sandbox.ts)_ diff --git a/website/api/cli/_test.md b/website/api/cli/_test.md deleted file mode 100644 index b53c894..0000000 --- a/website/api/cli/_test.md +++ /dev/null @@ -1,30 +0,0 @@ - -sandbox - -* [`sbv2 test [ORACLEKEY]`](#sbv2-test-oraclekey) - -## `sbv2 test [ORACLEKEY]` - -sandbox - -``` -USAGE - $ sbv2 test [ORACLEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - ORACLEKEY public key of the oracle to deposit funds into - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - sandbox -``` - -_See code: [dist/commands/test.ts](https://github.com/switchboard-xyz/switchboard-v2/blob/v0.2.25/dist/commands/test.ts)_ diff --git a/website/api/cli/_update.md b/website/api/cli/_update.md deleted file mode 100644 index dd7226f..0000000 --- a/website/api/cli/_update.md +++ /dev/null @@ -1,41 +0,0 @@ - -update the sbv2 CLI - -* [`sbv2 update [CHANNEL]`](#sbv2-update-channel) - -## `sbv2 update [CHANNEL]` - -update the sbv2 CLI - -``` -USAGE - $ sbv2 update [CHANNEL] [-a] [-v | -i] [--force] - -FLAGS - -a, --available Install a specific version. - -i, --interactive Interactively select version to install. This is ignored if a channel is provided. - -v, --version= Install a specific version. - --force Force a re-download of the requested version. - -DESCRIPTION - update the sbv2 CLI - -EXAMPLES - Update to the stable channel: - - $ sbv2 update stable - - Update to a specific version: - - $ sbv2 update --version 1.0.0 - - Interactively select version: - - $ sbv2 update --interactive - - See available versions: - - $ sbv2 update --available -``` - -_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/v3.0.0/src/commands/update.ts)_ diff --git a/website/api/cli/_version.md b/website/api/cli/_version.md deleted file mode 100644 index c41439f..0000000 --- a/website/api/cli/_version.md +++ /dev/null @@ -1,24 +0,0 @@ - - - -* [`sbv2 version`](#sbv2-version) - -## `sbv2 version` - -``` -USAGE - $ sbv2 version [--json] [--verbose] - -FLAGS - --verbose Show additional information about the CLI. - -GLOBAL FLAGS - --json Format output as json. - -FLAG DESCRIPTIONS - --verbose Show additional information about the CLI. - - Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using. -``` - -_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.1.1/src/commands/version.ts)_ diff --git a/website/api/cli/_vrf.md b/website/api/cli/_vrf.md deleted file mode 100644 index 3a261d7..0000000 --- a/website/api/cli/_vrf.md +++ /dev/null @@ -1,200 +0,0 @@ - -create a Switchboard VRF Account - -* [`sbv2 vrf create [QUEUEKEY]`](#sbv2-vrf-create-queuekey) -* [`sbv2 vrf create example [QUEUEKEY]`](#sbv2-vrf-create-example-queuekey) -* [`sbv2 vrf print [VRFKEY]`](#sbv2-vrf-print-vrfkey) -* [`sbv2 vrf request [VRFKEY]`](#sbv2-vrf-request-vrfkey) -* [`sbv2 vrf verify [VRFKEY]`](#sbv2-vrf-verify-vrfkey) -* [`sbv2 vrf watch [VRFKEY]`](#sbv2-vrf-watch-vrfkey) - -## `sbv2 vrf create [QUEUEKEY]` - -create a Switchboard VRF Account - -``` -USAGE - $ sbv2 vrf create [QUEUEKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [--vrfKeypair ] [--enable] [--authority ] [--queueAuthority ] [--callback | - --accountMeta | --callbackPid | --ixData ] - -ARGUMENTS - QUEUEKEY public key of the oracle queue to create VRF account for - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --accountMeta=... account metas for VRF callback - --authority= alternative keypair to use for VRF authority - --callback= filesystem path to callback json - --callbackPid= callback program ID - --enable enable vrf permissions - --ixData= serialized instruction data in bytes - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - --queueAuthority= alternative keypair to use for queue authority - --vrfKeypair= filesystem path of existing keypair to use for VRF Account - -DESCRIPTION - create a Switchboard VRF Account - -EXAMPLES - $ sbv2 vrf:create 9WZ59yz95bd3XwJxDPVE2PjvVWmSy9WM1NgGD2Hqsohw --keypair ../payer-keypair.json -v --enable --queueAuthority queue-authority-keypair.json --callbackPid 6MLk7G54uHZ7JuzNxpBAVENANrgM9BZ51pKkzGwPYBCE --ixData "[145,72,9,94,61,97,126,106]" -a "{"pubkey": "HpQoFL5kxPp2JCFvjsVTvBd7navx4THLefUU68SXAyd6","isSigner": false,"isWritable": true}" -a "{"pubkey": "8VdBtS8ufkXMCa6Yr9E4KVCfX2inVZVwU4KGg2CL1q7P","isSigner": false,"isWritable": false}" - - $ sbv2 vrf:create 9WZ59yz95bd3XwJxDPVE2PjvVWmSy9WM1NgGD2Hqsohw --keypair ../payer-keypair.json -v --enable --queueAuthority oracle-keypair.json --callbackPid 6MLk7G54uHZ7JuzNxpBAVENANrgM9BZ51pKkzGwPYBCE --ixData "[145,72,9,94,61,97,126,106]" -a "{"pubkey": "HYKi1grticLXPe5vqapUHhm976brwqRob8vqRnWMKWL5","isSigner": false,"isWritable": true}" -a "{"pubkey": "6vG9QLMgSvsfjvSpDxWfZ2MGPYGzEYoBxviLG7cr4go","isSigner": false,"isWritable": false}" - - $ sbv2 vrf:create 9WZ59yz95bd3XwJxDPVE2PjvVWmSy9WM1NgGD2Hqsohw --keypair ../payer-keypair.json -v --enable --queueAuthority queue-authority-keypair.json --callback callback-example.json -``` - -## `sbv2 vrf create example [QUEUEKEY]` - -create a VRF account for the client example program - -``` -USAGE - $ sbv2 vrf create example [QUEUEKEY] --vrfPid [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k - ] [--vrfKeypair ] [--enable] [--queueAuthority ] [--maxResult ] - -ARGUMENTS - QUEUEKEY public key of the oracle queue to create VRF account for - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --enable enable vrf permissions - --mainnetBeta WARNING: use mainnet-beta solana cluster - --maxResult= [default: 256000] the maximum VRF result - --programId= alternative Switchboard program ID to interact with - --queueAuthority= alternative keypair to use for queue authority - --vrfKeypair= filesystem path of existing keypair to use for VRF Account - --vrfPid= (required) program ID for the VRF example program - -DESCRIPTION - create a VRF account for the client example program - -EXAMPLES - $ sbv2 vrf:create:example 9WZ59yz95bd3XwJxDPVE2PjvVWmSy9WM1NgGD2Hqsohw --vrfPid 6MLk7G54uHZ7JuzNxpBAVENANrgM9BZ51pKkzGwPYBCE --keypair ../payer-keypair.json -v --enable --queueAuthority queue-authority-keypair.json -``` - -## `sbv2 vrf print [VRFKEY]` - -Print the deserialized Switchboard VRF account - -``` -USAGE - $ sbv2 vrf print [VRFKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] [--json] - -ARGUMENTS - VRFKEY public key of the vrf account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - Print the deserialized Switchboard VRF account - -ALIASES - $ sbv2 vrf print - -EXAMPLES - $ sbv2 vrf:print -``` - -## `sbv2 vrf request [VRFKEY]` - -request a new value for a VRF - -``` -USAGE - $ sbv2 vrf request [VRFKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - [--funderAuthority ] [--authority ] - -ARGUMENTS - VRFKEY public key of the VRF account to request randomness for - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --authority= alternative keypair that is the VRF authority - --funderAuthority= alternative keypair to pay for VRF request - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - request a new value for a VRF - -EXAMPLES - $ sbv2 vrf:create 9WZ59yz95bd3XwJxDPVE2PjvVWmSy9WM1NgGD2Hqsohw --keypair ../payer-keypair.json -v --enable --queueAuthority queue-authority-keypair.json --callbackPid 6MLk7G54uHZ7JuzNxpBAVENANrgM9BZ51pKkzGwPYBCE --ixData "[145,72,9,94,61,97,126,106]" -a "{"pubkey": "HpQoFL5kxPp2JCFvjsVTvBd7navx4THLefUU68SXAyd6","isSigner": false,"isWritable": true}" -a "{"pubkey": "8VdBtS8ufkXMCa6Yr9E4KVCfX2inVZVwU4KGg2CL1q7P","isSigner": false,"isWritable": false}" -``` - -## `sbv2 vrf verify [VRFKEY]` - -if ready, verify a VRF proof - -``` -USAGE - $ sbv2 vrf verify [VRFKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - VRFKEY public key of the VRF account to request randomness for - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - if ready, verify a VRF proof -``` - -## `sbv2 vrf watch [VRFKEY]` - -watch a vrf for a new value - -``` -USAGE - $ sbv2 vrf watch [VRFKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - VRFKEY public key of the vrf account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - watch a vrf for a new value - -ALIASES - $ sbv2 vrf watch - -EXAMPLES - $ sbv2 vrf:aggregator J7j9xX8JP2B2ErvUzuqGAKBGeggsxPyFXj5MqZcYDxfa -``` diff --git a/website/api/cli/_watch.md b/website/api/cli/_watch.md deleted file mode 100644 index fff91cd..0000000 --- a/website/api/cli/_watch.md +++ /dev/null @@ -1,65 +0,0 @@ - -watch an aggregator for a new value - -* [`sbv2 watch aggregator [AGGREGATORKEY]`](#sbv2-watch-aggregator-aggregatorkey) -* [`sbv2 watch vrf [VRFKEY]`](#sbv2-watch-vrf-vrfkey) - -## `sbv2 watch aggregator [AGGREGATORKEY]` - -watch an aggregator for a new value - -``` -USAGE - $ sbv2 watch aggregator [AGGREGATORKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - AGGREGATORKEY public key of the aggregator account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - watch an aggregator for a new value - -ALIASES - $ sbv2 aggregator watch - -EXAMPLES - $ sbv2 watch:aggregator J7j9xX8JP2B2ErvUzuqGAKBGeggsxPyFXj5MqZcYDxfa -``` - -## `sbv2 watch vrf [VRFKEY]` - -watch a vrf for a new value - -``` -USAGE - $ sbv2 watch vrf [VRFKEY] [-v] [-s] [--mainnetBeta] [-u ] [--programId ] [-k ] - -ARGUMENTS - VRFKEY public key of the vrf account to deserialize - -FLAGS - -k, --keypair= keypair that will pay for onchain transactions. defaults to new account authority if no - alternate authority provided - -s, --silent suppress cli prompts - -u, --rpcUrl= alternate RPC url - -v, --verbose log everything - --mainnetBeta WARNING: use mainnet-beta solana cluster - --programId= alternative Switchboard program ID to interact with - -DESCRIPTION - watch a vrf for a new value - -ALIASES - $ sbv2 vrf watch - -EXAMPLES - $ sbv2 vrf:aggregator J7j9xX8JP2B2ErvUzuqGAKBGeggsxPyFXj5MqZcYDxfa -``` diff --git a/website/api/cli/aggregator.mdx b/website/api/cli/aggregator.mdx deleted file mode 100644 index 110e918..0000000 --- a/website/api/cli/aggregator.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -sidebar_position: 20 -title: sbv2 aggregator ---- - -import Sbv2Aggregator from "./_aggregator.md"; - - diff --git a/website/api/cli/anchor.mdx b/website/api/cli/anchor.mdx deleted file mode 100644 index 465843e..0000000 --- a/website/api/cli/anchor.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -sidebar_position: 03 -title: sbv2 anchor ---- - -import Sbv2Anchor from "./_anchor.md"; - - diff --git a/website/api/cli/buffer.mdx b/website/api/cli/buffer.mdx deleted file mode 100644 index c8a90c9..0000000 --- a/website/api/cli/buffer.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -sidebar_position: 85 -title: sbv2 buffer ---- - -import Sbv2Buffer from "./_buffer.md"; - - diff --git a/website/api/cli/crank.mdx b/website/api/cli/crank.mdx deleted file mode 100644 index 37c6412..0000000 --- a/website/api/cli/crank.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -sidebar_position: 30 -title: sbv2 crank ---- - -import Sbv2Crank from "./_crank.md"; - - diff --git a/website/api/cli/job.mdx b/website/api/cli/job.mdx deleted file mode 100644 index d26f4be..0000000 --- a/website/api/cli/job.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -sidebar_position: 10 -title: sbv2 job ---- - -import Sbv2Job from "./_job.md"; - - diff --git a/website/api/cli/lease.mdx b/website/api/cli/lease.mdx deleted file mode 100644 index 7c13916..0000000 --- a/website/api/cli/lease.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -sidebar_position: 20 -title: sbv2 lease ---- - -import Sbv2Lease from "./_lease.md"; - - diff --git a/website/api/cli/localnet.mdx b/website/api/cli/localnet.mdx deleted file mode 100644 index 655dca7..0000000 --- a/website/api/cli/localnet.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -sidebar_position: 30 -title: sbv2 localnet ---- - -import Sbv2Localnet from "./_localnet.md"; - - diff --git a/website/api/cli/oracle.mdx b/website/api/cli/oracle.mdx deleted file mode 100644 index c30c8ff..0000000 --- a/website/api/cli/oracle.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -sidebar_position: 40 -title: sbv2 oracle ---- - -import Sbv2Oracle from "./_oracle.md"; - - diff --git a/website/api/cli/overview.mdx b/website/api/cli/overview.mdx deleted file mode 100644 index 19cc3b1..0000000 --- a/website/api/cli/overview.mdx +++ /dev/null @@ -1,143 +0,0 @@ ---- -sidebar_position: 1 -slug: /cli -title: Overview ---- - -# sbv2 - -[![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/switchboard-xyz/switchboard-v2/tree/main/cli) [![npm](https://img.shields.io/npm/v/@switchboard-xyz/switchboardv2-cli)](https://www.npmjs.com/package/@switchboard-xyz/switchboardv2-cli) ![Page Last Updated](./page-last-updated.svg) - -The Switchboard V2 CLI provides an easy to use interface to setup and manage Switchboard onchain accounts. - -## Install - -Run the following command: - -```bash npm2yarn -npm install -g @switchboard-xyz/switchboardv2-cli -``` - -## Overview - -**Logging** Most commands will have a `--silent`, `-s` flag that will suppress console output and only output a new account public key to assist in scripting. A `--verbose`, `-v` flag will do the opposite and log any debug or configuration information to help debug. - -**Help** All commands can be run with the `--help` flag to print the available arguments and flags for a given command. - -**Keypairs** The Switchboard V2 CLI lets you specify a keypair from an absolute or relative filesystem path as well as a Google Secret Manager secret. The following flags are common among most commands, with the exception of the print commands that require no keypairs: - -- `--keypair` is required for any command that submits an onchain transaction such as creating accounts, turning the crank, or updating an account config. This keypair will default as the authority if the authority flag is not provided. -- `--authority` is the keypair that is or will be the authority for a given account. The authority is responsible for authorizing new permissions, changing an account, or withdrawing from a token account. - -**Token Amounts** -Any commands that specify a token amount will be converted to the raw token amount if it contains a decimal. For example, wSOL has 9 decimal places so a CLI arguement of 1.5 would be interpretted as 1_500_000_000 tokens whereas 1 would be interpretted as 1 token. - -**Cluster** By default the CLI will target devnet unless the `--mainnetBeta` flag is provided. - -**RPC URL** The CLI will connect to the default solana endpoints unless `--rpcUrl` is provided. - -## Examples - -### Print - -```bash -# check account discriminator and print account information if found -sbv2 print PUBLICKEY -# print an oracle account by its public key -sbv2 print oracle ORACLEKEY -# print an aggregator account -sbv2 print aggregator AGGREGATORKEY -``` - -### Create a Queue - -```bash -sbv2 queue create \ - --name "My Queue" \ - --keypair "path/to/payer/keypair.json" \ - --authority "path/to/authority/keypair.json" \ - --minStake 0 \ - --reward 0 \ - --crankSize 0 \ - --oracleTimeout 300 \ - --numOracles 0 \ - --queueSize 25 \ - --outputFile "My_Switchboard_Queue.json" \ - --verbose -``` - -### Create Aggregator - -```bash -sbv2 aggregator create AGGREGATORKEY \ - --name "My Buffer" \ - --keypair "path/to/payer/keypair.json" \ - --batchSize 1 \ - --minOracles 1 \ - --minJobs 1 \ - --updateInterval 45 \ - --job "path/to/job-definition-1.json" \ - --job "path/to/job-definition-2.json" \ - --verbose -``` - -### Create Oracle - -```bash -sbv2 oracle create QUEUEKEY \ - --name "My Oracle" \ - --keypair "path/to/payer/keypair.json" \ - --authority "path/to/authority/keypair.json" \ - --enable \ - --verbose -``` - -### Create Crank - -```bash -sbv2 crank create QUEUEKEY \ - --name "My Crank" \ - --keypair "path/to/payer/keypair.json" \ - --authority "queue-authority.json" \ - --maxRows 1000 \ - --verbose -``` - -### Push to Crank - -```bash -sbv2 crank push CRANKKEY AGGREGATORKEY \ - --keypair "path/to/payer/keypair.json" -``` - -### Create Job - -```bash -sbv2 job create "job-directory/sysclockOffsetTask/sysclock.json" \ - --name "SysClock Drift" \ - --keypair "path/to/payer/keypair.json" -``` - -### Add Job to Aggregator - -```bash -sbv2 aggregator add job AGGREGATORKEY \ - --jobDefinition "job-directory/sysclockOffsetTask/sysclock.json" \ - --keypair "path/to/payer/keypair.json" \ - --verbose -# OR -sbv2 aggregator add job AGGREGATORKEY \ - --jobKey "6jXKur6RaBMewKyEE8YVGLwWXM15ZDygeoqgAZUW9y3r" \ - --keypair "path/to/payer/keypair.json" \ - --verbose -``` - - diff --git a/website/api/cli/page-last-updated.svg b/website/api/cli/page-last-updated.svg deleted file mode 100644 index 9a18314..0000000 --- a/website/api/cli/page-last-updated.svg +++ /dev/null @@ -1 +0,0 @@ -Page LastUpdated: May-20-2022Page LastUpdatedMay-20-2022 \ No newline at end of file diff --git a/website/api/cli/print.mdx b/website/api/cli/print.mdx deleted file mode 100644 index 2df84f6..0000000 --- a/website/api/cli/print.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -sidebar_position: 5 -title: sbv2 print ---- - -import Sbv2Print from "./_print.md"; - - diff --git a/website/api/cli/queue.mdx b/website/api/cli/queue.mdx deleted file mode 100644 index d5c9520..0000000 --- a/website/api/cli/queue.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -sidebar_position: 50 -title: sbv2 queue ---- - -import Sbv2Queue from "./_queue.md"; - - diff --git a/website/api/cli/switchboardv2-cli.svg b/website/api/cli/switchboardv2-cli.svg deleted file mode 100644 index b79a4c8..0000000 --- a/website/api/cli/switchboardv2-cli.svg +++ /dev/null @@ -1,20 +0,0 @@ - - npm: v0.1.8 - - - - - - - - - - - - - \ No newline at end of file diff --git a/website/api/cli/update.mdx b/website/api/cli/update.mdx deleted file mode 100644 index 7bcd8b7..0000000 --- a/website/api/cli/update.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -sidebar_position: 100 -title: sbv2 update ---- - -import Sbv2Update from "./_update.md"; - - diff --git a/website/api/cli/vrf.mdx b/website/api/cli/vrf.mdx deleted file mode 100644 index 4fb90c2..0000000 --- a/website/api/cli/vrf.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -sidebar_position: 80 -title: sbv2 vrf ---- - -import Sbv2Vrf from "./_vrf.md"; - - diff --git a/website/api/overview.mdx b/website/api/overview.mdx deleted file mode 100644 index 92565da..0000000 --- a/website/api/overview.mdx +++ /dev/null @@ -1,36 +0,0 @@ ---- -sidebar_position: 1 -id: api -slug: . -title: API Overview ---- - -import LibraryTable from "/docs/developers/_library_table.mdx"; -import SDK from "/docs/developers/_sdk.mdx"; -import IDL from "/docs/developers/_idl.mdx"; -import ExampleTable from "/docs/developers/_example_table.mdx"; -import MarkdownImage from "/src/components/MarkdownImage"; - -# Developer Resources - - -
- -## SDK - - - -## Anchor IDL - - - -## Libraries - - - -## Examples - - diff --git a/website/api/python-overview.mdx b/website/api/python-overview.mdx deleted file mode 100644 index 1241100..0000000 --- a/website/api/python-overview.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: python-overview -title: Python ---- - -## Usage - -## Examples diff --git a/website/api/rust-overview.mdx b/website/api/rust-overview.mdx deleted file mode 100644 index 477869f..0000000 --- a/website/api/rust-overview.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: rust-overview -title: Rust ---- - -## Usage - -## Examples diff --git a/website/api/switchboard-tasks.md b/website/api/switchboard-tasks.md deleted file mode 100644 index 7a434ae..0000000 --- a/website/api/switchboard-tasks.md +++ /dev/null @@ -1,487 +0,0 @@ ---- -sidebar_position: 8 -slug: /tasks -title: switchboard-tasks ---- - -# Switchboard Tasks - -![Page Last Updated](./task-page-last-updated.svg) - -Switchboard oracles read on-chain job accounts to determine how to fetch and respond to update request. An OracleJob is a collection of tasks that are chained together to arrive at a single numerical value. - -| Field | Type | Label | Description | -| ----- | ---- | -------- | ------------------------------------------------- | -| tasks | Task | repeated | The chain of tasks to perform for this OracleJob. | - -Switchboard tasks can be divided into the following categories: - -- [**Web2 Fetch**](#web2-fetch): Retrieve data from the web -- [**Web3 Fetch**](#web3-fetch): Retrieve on-chain data -- [**Parse**](#parse): Extract a value from a response -- [**Logic**](#logic): Perform some logical operation like if..else clauses -- [**Math**](#math): Perform a mathematical operation like taking the maximum value of a list or raising a value to an exponent. - -:::tip - -Check out the [**Job Directory**](/feed/directory) for examples! - -::: - -## 📦Web2 Fetch - -### 🛠HttpTask - -The adapter will report the text body of a successful HTTP request to the specified url, or return an error if the response status code is greater than or equal to 400. @return string representation of it's output. - -| Field | Type | Label | Description | -| ------- | ----------------- | -------- | ----------------------------------------------------------- | -| url | [string](#string) | optional | A string containing the URL to direct this HTTP request to. | -| method | [Method](#method) | optional | The type of HTTP request to make. | -| headers | [Header](#header) | repeated | A list of headers to add to this HttpTask. | -| body | [string](#string) | optional | A stringified body (if any) to add to this HttpTask. | - -#### Header - -An object that represents a header to add to an HTTP request. - -| Field | Type | Label | Description | -| ----- | ------ | -------- | ----------- | -| key | string | optional | | -| value | string | optional | | - -#### Method - -An enumeration representing the types of HTTP requests available to make. - -| Name | Number | Description | -| ------------- | ------ | -------------------------------------------- | -| METHOD_UNKOWN | 0 | Unset HTTP method will default to METHOD_GET | -| METHOD_GET | 1 | Perform an HTTP 'GET' request. | -| METHOD_POST | 2 | Perform an HTTP 'POST' request. | - -### 🛠WebsocketTask - -Opens and maintains a websocket for light speed data retrieval. - -| Field | Type | Label | Description | -| -------------------- | ----------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------- | -| url | [string](#string) | optional | The websocket url. | -| subscription | [string](#string) | optional | The websocket message to notify of a new subscription. | -| max_data_age_seconds | [int32](#int32) | optional | Minimum amount of time required between when the horses are taking out. | -| filter | [string](#string) | optional | Incoming message JSONPath filter. Example: "$[?(@.channel == 'ticker' && @.market == 'BTC/USD')]" | - -## 📦Web3 Fetch - -### 🛠AnchorFetchTask - -Load a parse an Anchor based solana account. - -| Field | Type | Label | Description | -| --------------- | ----------------- | -------- | --------------------------------------- | -| program_id | [string](#string) | optional | Owning program of the account to parse. | -| account_address | [string](#string) | optional | The account to parse. | - -### 🛠OracleTask - -Fetch the current price of a Solana oracle protocol. - -| Field | Type | Label | Description | -| -------------------------------- | ----------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| switchboard_address | [string](#string) | optional | Mainnet address of a Switchboard V2 feed. Switchboard is decentralized and allows anyone to build their own feed. A small subset of feeds is available here: https://switchboard.xyz/explorer | -| pyth_address | [string](#string) | optional | Mainnet address for a Pyth feed. A full list can be found here: https://pyth.network/price-feeds/ | -| chainlink_address | [string](#string) | optional | Mainnet address for a Chainlink feed. A full list can be found here: https://docs.chain.link/docs/solana/data-feeds-solana | -| pyth_allowed_confidence_interval | [double](#double) | optional | Value (as a percentage) that the lower bound confidence interval is of the actual value. Confidence intervals that are larger that this treshold are rejected. | - -### 🛠SolanaAccountDataFetchTask - -Fetch the account data in a stringified buffer format. - -| Field | Type | Label | Description | -| ------ | ----------------- | -------- | ---------------------------------------------------- | -| pubkey | [string](#string) | optional | The on-chain account to fetch the account data from. | - -### 🛠JupiterSwapTask - -Fetch the simulated price for a swap on JupiterSwap. - -| Field | Type | Label | Description | -| ----------------- | ----------------- | -------- | ----------------------------- | -| in_token_address | [string](#string) | optional | The input token address. | -| out_token_address | [string](#string) | optional | The output token address. | -| base_amount | [double](#double) | optional | The amount of tokens to swap. | - -### 🛠SerumSwapTask - -Fetch the latest swap price on Serum's orderbook - -| Field | Type | Label | Description | -| ------------------ | ----------------- | -------- | -------------------------------------- | -| serum_pool_address | [string](#string) | optional | The serum pool to fetch swap price for | - -### 🛠UniswapExchangeRateTask - -Fetch the swap price from UniSwap. - -| Field | Type | Label | Description | -| ----------------- | ----------------- | -------- | ----------------------------------------------- | -| in_token_address | [string](#string) | optional | The input token address. | -| out_token_address | [string](#string) | optional | The output token address. | -| in_token_amount | [double](#double) | optional | The amount of tokens to swap. | -| slippage | [double](#double) | optional | The allowable slippage in percent for the swap. | -| provider | [string](#string) | optional | The RPC provider to use for the swap. | - -### 🛠SushiSwapExchangeRateTask - -Fetch the swap price from SushiSwap. - -| Field | Type | Label | Description | -| ----------------- | ----------------- | -------- | ----------------------------------------------- | -| in_token_address | [string](#string) | optional | The input token address. | -| out_token_address | [string](#string) | optional | The output token address. | -| in_token_amount | [double](#double) | optional | The amount of tokens to swap. | -| slippage | [double](#double) | optional | The allowable slippage in percent for the swap. | -| provider | [string](#string) | optional | The RPC provider to use for the swap. | - -### 🛠PancakeswapExchangeRateTask - -Fetch the swap price from PancakeSwap. - -| Field | Type | Label | Description | -| ----------------- | ----------------- | -------- | ----------------------------------------------- | -| in_token_address | [string](#string) | optional | The input token address. | -| out_token_address | [string](#string) | optional | The output token address. | -| in_token_amount | [double](#double) | optional | The amount of tokens to swap. | -| slippage | [double](#double) | optional | The allowable slippage in percent for the swap. | -| provider | [string](#string) | optional | The RPC provider to use for the swap. | - -### 🛠DefiKingdomsTask - -Fetch the swap price from DefiKingdoms. - -| Field | Type | Label | Description | -| --------- | ----------------- | -------- | ------------------------------------- | -| provider | [string](#string) | optional | The RPC provider to use for the swap. | -| in_token | [Token](#token) | optional | The input token of the swap. | -| out_token | [Token](#token) | optional | The output token of the swap. | - -#### Token - -| Field | Type | Label | Description | -| -------- | ----------------- | -------- | ----------------------------------------- | -| address | [string](#string) | optional | The address of the token. | -| decimals | [int32](#int32) | optional | The number of decimal places for a token. | - -### 🛠MangoPerpTask - -Fetch the current price for a Mango perpetual market - -| Field | Type | Label | Description | -| ------------------- | ------ | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| perp_market_address | string | optional | Mainnet address for a mango perpetual market. A full list can be found here: https://github.com/blockworks-foundation/mango-client-v3/blob/main/src/ids.json | - -### 🛠LendingRateTask - -Fetch the lending rates for various Solana protocols - -| Field | Type | Label | Description | -| ---------- | ----------------- | -------- | ------------------------------------------------------------- | -| protocol | [string](#string) | optional | 01, apricot, francium, jet, larix, mango, port, solend, tulip | -| asset_mint | [string](#string) | optional | A token mint address supported by the chosen protocol | -| field | [Field](#field) | optional | | - -#### Field - -| Name | Number | Description | -| ------------------ | ------ | -------------------- | -| FIELD_DEPOSIT_RATE | 0 | deposit lending rate | -| FIELD_BORROW_RATE | 1 | borrow lending rate | - -### 🛠XStepPriceTask - -| Field | Type | Label | Description | -| ---------------------- | ------------------------- | -------- | ---------------------------------------------------------------------- | -| step_job | [MedianTask](#mediantask) | optional | median task containing the job definitions to fetch the STEP/USD price | -| step_aggregator_pubkey | string | optional | existing aggregator pubkey for STEP/USD | - -### 🛠SplTokenParseTask - -Fetch the JSON representation of an SPL token mint. - -| Field | Type | Label | Description | -| --------------------- | ----------------- | -------- | ----------------------------------------------------------- | -| token_account_address | [string](#string) | optional | The publicKey of a token account to fetch the mintInfo for. | -| mint_address | [string](#string) | optional | The publicKey of the token mint address. | - -### 🛠SplStakePoolTask - -Fetch the JSON representation of an SPL Stake Pool account. - -| Field | Type | Label | Description | -| ------ | ----------------- | -------- | --------------------------------- | -| pubkey | [string](#string) | optional | The pubkey of the SPL Stake Pool. | - -### 🛠LpExchangeRateTask - -Fetch the current swap price for a given liquidity pool - -| Field | Type | Label | Description | -| ---------------------------- | ----------------- | -------- | ------------------------------------------------------------------------------------------------------------------------- | -| in_token_address | [string](#string) | optional | Used alongside mercurial_pool_address to specify the input token for a swap. | -| out_token_address | [string](#string) | optional | Used alongside mercurial_pool_address to specify the output token for a swap. | -| mercurial_pool_address | [string](#string) | optional | Mercurial finance pool address. A full list can be found here: https://github.com/mercurial-finance/stable-swap-n-pool-js | -| saber_pool_address | [string](#string) | optional | Saber pool address. A full list can be found here: https://github.com/saber-hq/saber-registry-dist | -| orca_pool_token_mint_address | [string](#string) | optional | **Deprecated.** Orca pool address. | -| raydium_pool_address | [string](#string) | optional | The Raydium liquidity pool ammId. A full list can be found here: https://sdk.raydium.io/liquidity/mainnet.json | -| orca_pool_address | [string](#string) | optional | Pool address for an Orca LP pool or whirlpool. A full list of Orca LP pools can be found here: https://www.orca.so/pools | - -### 🛠LpTokenPriceTask - -Fetch LP token price info from a number of supported exchanges. - -| Field | Type | Label | Description | -| ---------------------- | ----------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| mercurial_pool_address | [string](#string) | optional | Mercurial finance pool address. A full list can be found here: https://github.com/mercurial-finance/stable-swap-n-pool-js | -| saber_pool_address | [string](#string) | optional | Saber pool address. A full list can be found here: https://github.com/saber-hq/saber-registry-dist | -| orca_pool_address | [string](#string) | optional | Orca pool address. A full list can be found here: https://www.orca.so/pools | -| raydium_pool_address | [string](#string) | optional | The Raydium liquidity pool ammId. A full list can be found here: https://sdk.raydium.io/liquidity/mainnet.json | -| price_feed_addresses | [string](#string) | repeated | A list of Switchboard aggregator accounts used to calculate the fair LP price. This ensures the price is based on the previous round to mitigate flash loan price manipulation. | -| price_feed_jobs | [OracleJob](#) | repeated | | -| use_fair_price | [bool](#bool) | optional | If enabled and price_feed_addresses provided, the oracle will calculate the fair LP price based on the liquidity pool reserves. See our blog post for more information: https://switchboardxyz.medium.com/fair-lp-token-oracles-94a457c50239 | - -## 📦Parse - -### 🛠JsonParseTask - -The adapter walks the path specified and returns the value found at that result. If returning -JSON data from the HttpGet or HttpPost adapters, you must use this adapter to parse the -response. - -| Field | Type | Label | Description | -| ------------------ | --------------------------------------- | -------- | -------------------------------------------------------------------------------------------------------------------------- | -| path | string | optional | JSONPath formatted path to the element. https://t.ly/uLtw https://www.npmjs.com/package/jsonpath-plus | -| aggregation_method | [AggregationMethod](#aggregationmethod) | optional | The technique that will be used to aggregate the results if walking the specified path returns multiple numerical results. | - -#### AggregationMethod - -The methods of combining a list of numerical results. - -| Name | Number | Description | -| ------ | ------ | -------------------------------------- | -| NONE | 0 | | -| MIN | 1 | Grab the minimum value of the results. | -| MAX | 2 | Grab the maximum value of the results. | -| SUM | 3 | Sum up all of the results. | -| MEAN | 4 | Average all of the results. | -| MEDIAN | 5 | Grab the median of the results. | - -### 🛠RegexExtractTask - -Find a pattern within a string of a previous task and extract a group number. - -| Field | Type | Label | Description | -| ------------ | ------ | -------- | ------------------------ | -| pattern | string | optional | Regex pattern to find. | -| group_number | int32 | optional | Group number to extract. | - -### 🛠BufferLayoutParseTask - -Return the deserialized value from a stringified buffer. - -| Field | Type | Label | Description | -| ------ | ----------------------------------- | -------- | ---------------------------------------------- | -| offset | [uint32](#uint32) | optional | The buffer offset to start deserializing from. | -| endian | [Endian](#endian) | optional | The endianness of the stored value. | -| type | [BufferParseType](#bufferparsetype) | optional | The type of value to deserialize. | - -#### BufferParseType - -| Name | Number | Description | -| ------ | ------ | ----------------------------------- | -| pubkey | 1 | A public key. | -| bool | 2 | A boolean. | -| u8 | 3 | An 8-bit unsigned value. | -| i8 | 4 | An 8-bit signed value. | -| u16 | 5 | A 16-bit unsigned value. | -| i16 | 6 | A 16-bit signed value. | -| u32 | 7 | A 32-bit unsigned value. | -| i32 | 8 | A 32-bit signed value. | -| f32 | 9 | A 32-bit IEEE floating point value. | -| u64 | 10 | A 64-bit unsigned value. | -| i64 | 11 | A 64-bit signed value. | -| f64 | 12 | A 64-bit IEEE floating point value. | -| u128 | 13 | A 128-bit unsigned value. | -| i128 | 14 | A 128-bit signed value. | - -#### Endian - -| Name | Number | Description | -| ------------- | ------ | ----------- | -| LITTLE_ENDIAN | 0 | | -| BIG_ENDIAN | 1 | | - -## 📦Logic - -### 🛠ConditionalTask - -This task will run the `attempt` subtasks in an effort to produce a valid numerical result. If -`attempt` fails to produce an acceptable result, `on_failure` subtasks will be run instead. - -| Field | Type | Label | Description | -| ---------- | ---- | -------- | ----------------------------------------------------------------------------------------------------- | -| attempt | Task | repeated | A list of subtasks to process in an attempt to produce a valid numerical result. | -| on_failure | Task | repeated | A list of subtasks that will be run if `attempt` subtasks are unable to produce an acceptable result. | - -## 📦Utils - -### 🛠CacheTask - -Execute a job and store the result in a variable to reference later. - -| Field | Type | Label | Description | -| ----------- | ----------------------- | -------- | --------------------------------------------------------------------------- | -| cache_items | [CacheItem](#cacheitem) | repeated | A list of cached variables to reference in the job with `${VARIABLE_NAME}`. | - -#### CacheItem - -| Field | Type | Label | Description | -| ------------- | ----------------- | -------- | -------------------------------------------------------------------------------------- | -| variable_name | [string](#string) | optional | The name of the variable to store in cache to reference later with `${VARIABLE_NAME}`. | -| job | [OracleJob](#) | optional | The OracleJob to execute to yield the value to store in cache. | - -### 🛠SysclockOffsetTask - -Return the difference between an oracle's clock and the current timestamp at `SYSVAR_CLOCK_PUBKEY`. - -### CronParseTask - -Return a timestamp from a crontab instruction. - -| Field | Type | Label | Description | -| ------------ | ----------------------- | -------- | ---------------------------------------------------------------- | -| cron_pattern | [string](#string) | optional | The cron pattern to parse | -| clock_offset | [int32](#int32) | optional | The timestamp offset to calculate the next run | -| clock | [ClockType](#ClockType) | optional | The type of clock to use, oracle or the solana cluster sysclock. | - -#### ClockType - -The type of clock. - -| Name | Number | Description | -| -------- | ------ | ------------------------------ | -| ORACLE | 0 | The oracles current clock. | -| SYSCLOCK | 1 | The solana cluster's sysclock. | - -### 🛠TpsTask - -Fetch the current transactions per second. - -## 📦Math - -### 🛠TwapTask - -Takes a twap over a set period for a certain aggregator. - -| Field | Type | Label | Description | -| -------------------------- | ------------------------------- | -------- | -------------------------------------------------------------------- | -| aggregator_pubkey | [string](#string) | optional | The target aggregator for the TWAP. | -| period | [int32](#int32) | optional | Period, in seconds, the twap should account for | -| weight_by_propagation_time | [bool](#bool) | optional | Weight samples by their propagation time | -| min_samples | [uint32](#uint32) | optional | Minimum number of samples in the history to calculate a valid result | -| ending_unix_timestamp | [int32](#int32) | optional | Ending unix timestamp to collect values up to | -| ending_unix_timestamp_task | [CronParseTask](#CronParseTask) | optional | Execute the task to get the ending unix timestamp | - -### 🛠MaxTask - -Returns the maximum value of all the results returned by the provided subtasks and subjobs. - -| Field | Type | Label | Description | -| ----- | -------------- | -------- | ------------------------------------------------------------------ | -| tasks | Task | repeated | A list of subtasks to process and produce a list of result values. | -| jobs | [OracleJob](#) | repeated | A list of subjobs to process and produce a list of result values. | - -### 🛠MeanTask - -Returns the mean of all the results returned by the provided subtasks and subjobs. - -| Field | Type | Label | Description | -| ----- | -------------- | -------- | ------------------------------------------------------------------ | -| tasks | Task | repeated | A list of subtasks to process and produce a list of result values. | -| jobs | [OracleJob](#) | repeated | A list of subjobs to process and produce a list of result values. | - -### 🛠MedianTask - -Returns the median of all the results returned by the provided subtasks and subjobs. Nested tasks must return a Number. - -| Field | Type | Label | Description | -| ----------------------- | --------------- | -------- | ------------------------------------------------------------------ | -| tasks | Task | repeated | A list of subtasks to process and produce a list of result values. | -| jobs | [OracleJob](#) | repeated | A list of subjobs to process and produce a list of result values. | -| min_successful_required | [int32](#int32) | optional | | - -### 🛠AddTask - -This task will add a numerical input by a scalar value or by another -aggregate. - -| Field | Type | Label | Description | -| ----------------- | ----------------- | -------- | -------------------------------------------------------------------------------- | -| scalar | [double](#double) | optional | Specifies a scalar to add by. | -| aggregator_pubkey | [string](#string) | optional | Specifies an aggregator to add by. | -| job | [OracleJob](#) | optional | A job whose result is computed before adding our numerical input by that result. | -| big | [string](#string) | optional | A stringified big.js. `Accepts variable expansion syntax.` | - -### 🛠SubtractTask - -This task will subtract a numerical input by a scalar value or by another -aggregate. - -| Field | Type | Label | Description | -| ----------------- | ----------------- | -------- | ------------------------------------------------------------------------------------- | -| scalar | [double](#double) | optional | Specifies a scalar to subtract by. | -| aggregator_pubkey | [string](#string) | optional | Specifies an aggregator to subtract by. | -| job | [OracleJob](#) | optional | A job whose result is computed before subtracting our numerical input by that result. | -| big | [string](#string) | optional | A stringified big.js. `Accepts variable expansion syntax.` | - -### 🛠MultiplyTask - -This task will multiply a numerical input by a scalar value or by another aggregator. - -| Field | Type | Label | Description | -| ----------------- | ----------------- | -------- | ------------------------------------------------------------------------------------- | -| scalar | [double](#double) | optional | Specifies a scalar to multiply by. | -| aggregator_pubkey | [string](#string) | optional | Specifies an aggregator to multiply by. | -| job | [OracleJob](#) | optional | A job whose result is computed before multiplying our numerical input by that result. | -| big | [string](#string) | optional | A stringified big.js. `Accepts variable expansion syntax.` | - -### 🛠DivideTask - -This task will divide a numerical input by a scalar value or by another -aggregate. - -| Field | Type | Label | Description | -| ----------------- | ----------------- | -------- | ---------------------------------------------------------------------------------- | -| scalar | [double](#double) | optional | Specifies a basic scalar denominator to divide by. | -| aggregator_pubkey | [string](#string) | optional | Specifies another aggregator resut to divide by. | -| job | [OracleJob](#) | optional | A job whose result is computed before dividing our numerical input by that result. | -| big | [string](#string) | optional | A stringified big.js. `Accepts variable expansion syntax.` | - -### 🛠PowTask - -Take the power of the working value. - -| Field | Type | Label | Description | -| ----------------- | ----------------- | -------- | ---------------------------------------------------------------- | -| scalar | [double](#double) | optional | Take the working value to the exponent of value. | -| aggregator_pubkey | [string](#string) | optional | Take the working value to the exponent of the aggregators value. | -| big | [string](#string) | optional | A stringified big.js. `Accepts variable expansion syntax.` | - -### 🛠ValueTask - -Returns a specified value. - -| Field | Type | Label | Description | -| ----------------- | ----------------- | -------- | ---------------------------------------------------------- | -| value | [double](#double) | optional | The value that will be returned from this task. | -| aggregator_pubkey | [string](#string) | optional | Specifies an aggregatorr to pull the value of. | -| big | [string](#string) | optional | A stringified big.js. `Accepts variable expansion syntax.` | diff --git a/website/api/task-page-last-updated.svg b/website/api/task-page-last-updated.svg deleted file mode 100644 index 5360674..0000000 --- a/website/api/task-page-last-updated.svg +++ /dev/null @@ -1 +0,0 @@ -Page LastUpdated: Jun-29-2022Page LastUpdatedJun-29-2022 \ No newline at end of file diff --git a/website/api/typescript-overview.mdx b/website/api/typescript-overview.mdx deleted file mode 100644 index ef2662d..0000000 --- a/website/api/typescript-overview.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -id: typescript-overview -title: Typescript ---- - -import { styled, ThemeProvider } from "@mui/system"; -import { Box, CssBaseline } from "@mui/material"; -import { FeatureCard } from "/src/components/FeatureCard"; -import { CardSet } from "/src/components/CardSet"; -import { theme } from "/src/components/theme"; -import { Grid, Typography } from "@mui/material"; -import { useColorMode } from "@docusaurus/theme-common"; -import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; -import Layout from "@theme/Layout"; -const LibrariesList = [ - { - title: "switchboard-v2", - image: "/img/icons/info.png", - description: "Switchboard V2 Typescript client", - linkTo: "https://docs.switchboard.xyz/api/ts", - }, - { - title: "sbv2-lite", - image: "/img/icons/info.png", - description: "Switchboard V2 Typescript client", - linkTo: "https://docs.switchboard.xyz/api/ts", - }, -]; - -## Libraries - - - -## Examples diff --git a/website/babel.config.js b/website/babel.config.js deleted file mode 100644 index 947f7f2..0000000 --- a/website/babel.config.js +++ /dev/null @@ -1,28 +0,0 @@ -const presets = [require.resolve("@docusaurus/core/lib/babel/preset")]; - -//mui.com/guides/minimizing-bundle-size/#option-2 -const plugins = [ - [ - "babel-plugin-import", - { - libraryName: "@mui/material", - libraryDirectory: "", - camel2DashComponentName: false, - }, - "core", - ], - [ - "babel-plugin-import", - { - libraryName: "@mui/icons-material", - libraryDirectory: "", - camel2DashComponentName: false, - }, - "icons", - ], -]; - -module.exports = { - presets, - plugins, -}; diff --git a/website/cSpell.json b/website/cSpell.json deleted file mode 100644 index 4bf9382..0000000 --- a/website/cSpell.json +++ /dev/null @@ -1,150 +0,0 @@ -{ - "version": "0.2", - "language": "en", - "words": [], - "ignoreWords": [ - "sol", - "oraclequeue", - "oclif", - "switchboard", - "switchboardv2-api", - "devnet", - "grafana", - "Kubernetes", - "kubernetes", - "blockhash", - "solana", - "Solana", - "Pagerduty", - "PAGERDUTY", - "twap", - "TWAP", - "unstyled", - "pypi", - "switchboardpy", - "crankers", - "incentivized", - "collateralized", - "Quickstart", - "LOADBALANCER", - "Permissionless", - "Permissioned", - "gcloud", - "heartbeating", - "heartbeated", - "disincentivizes", - "incentivizes", - "keypairs", - "solflare", - "sollet", - "Bignum", - "subjobs", - "raydium", - "orderbook", - "Protobuf", - "sint", - "Fixnum", - "ulong", - "sfixed", - "pubkeys", - "pubkey", - "proto", - "xstep", - "websockets", - "opentelemetry", - "Keypair", - "keypair", - "unpermissioned", - "funder", - "discluded", - "switchboardv", - "gethttpsforfree", - "letsencrypt", - "PROJECTNAME", - "localnet", - "Congraph", - "devicons", - "protos", - "Pricetags", - "Borsh", - "ecvrf", - "Deserialization", - "ebuf", - "repr", - "curr", - "Withdrawl", - "Invalide", - "lamports", - "Hashbuf", - "invertee", - "Ristretto", - "struct", - "Blockhashes", - "precisioned", - "permissioninitparams", - "setauthority", - "bytemuck", - "nocolor", - "requestrandomness", - "aggregatorkey", - "oraclekey", - "queuekey", - "jobKey", - "queuepermitaggregator", - "setrewards", - "saveresult", - "queuecreate", - "oraclecreate", - "oraclequeueinitparams", - "oraclewithdraw", - "oraclewithdrawparams", - "leaseinitparams", - "leasewithdrawparams", - "leaseextendparams", - "jobinitparams", - "setbatchsize", - "aggregatorupdate", - "aggregatorcreatejson", - "definitionfile", - "addjob", - "aggregatoraddjob", - "removejob", - "aggregatoremovejob", - "sethistorybuffer", - "setminjobs", - "setminoracles", - "crankinitparams", - "openround", - "Sysvar", - "AAAA", - "BADC", - "BACD", - "ADDA", - "CBCB", - "ABDC", - "DBBD", - "CACA", - "disincentivize", - "repush", - "repushed", - "Composability", - "pyth", - "chainlink", - "walkthrough", - "defi", - "sushiswap", - "solend", - "larix", - "mbps", - "genesys", - "syndica" - ], - "ignoreRegExpList": [ - "\\((.*)\\)", // Markdown links - "```[a-z]*\n[\\s\\S]*?\n```", // Markdown code blocks. h/t https://coderwall.com/p/r6b4xg/regex-to-match-github-s-markdown-code-blocks, - "\\`([^\\`].*?)\\`", // inline code blocks. h/t https://stackoverflow.com/questions/41274241/how-to-capture-inline-markdown-code-but-not-a-markdown-code-fence-with-regex - "\\{%.*%\\}", // liquid syntax - "/^\\s*```[\\s\\S]*?^\\s*```/gm", // Another attempt at markdown code blocks. https://github.com/streetsidesoftware/vscode-spell-checker/issues/202#issuecomment-377477473 - "^---[\\s\\S]*?---$" // YAML front-matter - ] -} diff --git a/website/docker-compose.yml b/website/docker-compose.yml deleted file mode 100644 index d04f25e..0000000 --- a/website/docker-compose.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: "3.8" -services: - docusaurus: - command: ["start"] - environment: - TZ: America/Los_Angeles - image: awesometic/docusaurus - ports: - - 3000:3000 # http - restart: always - user: 1000:1000 - volumes: - - .:/website diff --git a/website/docs/buffer-relayer/_category_.json b/website/docs/buffer-relayer/_category_.json deleted file mode 100644 index b83b1b0..0000000 --- a/website/docs/buffer-relayer/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "label": "Buffer Relayers", - "position": 50, - "collapsible": true -} diff --git a/website/docs/buffer-relayer/architecture.mdx b/website/docs/buffer-relayer/architecture.mdx deleted file mode 100644 index 27d2d83..0000000 --- a/website/docs/buffer-relayer/architecture.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -sidebar_position: 1 -slug: . -title: Architecture ---- - -# Buffer Relayer Architecture - -A buffer relayer enables a single oracle to fetch and publish a raw buffer on-chain. Currently buffer relayers support a maximum size of 500 bytes so it fits into a single transaction, although theoretically this could be expanded to ~10Mb and spread out across multiple transactions. If you need a buffer larger than 500 bytes, reach out to the Switchboard team. - -## Consensus - -A buffer relayer has no consensus mechanism in that whatever the oracle publishes will be the accepted result; so some degree of trust is needed between the requester and the oracle. Buffer relayers are provided for convenience so developers can easily route data on-chain and should not be used for securing sensitive systems. - -## Queue Permissions - -_Not all queues support buffer relayers._ A queue must explicitly set `queue.enableBufferRelayers` before oracles will respond to update request. - -A permission account is always required before use. If a queue has `queue.unpermissionedFeedsEnabled` then no assigned permissions are required. If a queue has not enabled unpermissioned feeds, then a buffer relayer is required to be granted **_PERMIT_ORACLE_QUEUE_USAGE_** from the `queue.authority` before oracles will respond to any update request. - -## Cost - -A buffer relayer must fund their `escrow` account in order to request an oracle to publish a buffer on-chain. Each update request deducts `queue.reward` from the buffers `escrow` account when the oracle responds on-chain. - - diff --git a/website/docs/dao.mdx b/website/docs/dao.mdx deleted file mode 100644 index 8be51e2..0000000 --- a/website/docs/dao.mdx +++ /dev/null @@ -1,454 +0,0 @@ ---- -sidebar_position: 80 -title: Switchboard DAO ---- - -# Switchboard DAO - -The Switchboard DAO operates a set of oracle queues and provide the mechanisms for stakeholders to contribute, join, and vote on new proposals. More information coming soon. - -import PublicKeyButton from "/src/components/PublicKeyButton"; -import MarkdownImage from "/src/components/MarkdownImage"; -import { Box, Typography, Grid } from "@mui/material"; -import ProgramStateAccountData from "/idl/accounts/SbState.md"; -import Link from "@docusaurus/Link"; - -## Mainnet-Beta - -### Permissionless Queue - -The permissionless queue does not require aggregators to have `PERMIT_ORACLE_QUEUE_USAGE` permissions before using a queue's resources. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Public Keys
- Oracle Queue - - -
- Authority - - -
- Mint - - -
- Oracle Buffer - - -
- Crank #1 - - -
-
- Mainnet Permissionless Queue Settings -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- unpermissionedFeedsEnabled - True
- unpermissionedVrfEnabled - True
- enableBufferRelayers - False
- slashingEnabled - False
- reward - 12500
- minStake - 0
- oracleTimeout - 180
-
- -### Permissioned Queue - -The permissioned queue requires aggregators to have `PERMIT_ORACLE_QUEUE_USAGE` permissions before using the queue's resources. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Public Keys
- Oracle Queue - - -
- Authority - - -
- Mint - - -
- Oracle Buffer - - -
- Crank #1 - - -
-
- Mainnet Permissioned Queue Settings -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- unpermissionedFeedsEnabled - False
- unpermissionedVrfEnabled - False
- enableBufferRelayers - False
- slashingEnabled - False
- reward - 12500
- minStake - 0
- oracleTimeout - 180
-
- -## Devnet - -### Permissionless Queue - -The permissionless queue does not require aggregators to have `PERMIT_ORACLE_QUEUE_USAGE` permissions before using a queue's resources. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Public Keys
- Oracle Queue - - -
- Authority - - -
- Mint - - -
- Oracle Buffer - - -
- Crank #1 - - -
-
- Devnet Permissionless Queue Settings -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- unpermissionedFeedsEnabled - True
- unpermissionedVrfEnabled - True
- enableBufferRelayers - False
- slashingEnabled - False
- reward - 12500
- minStake - 0
- oracleTimeout - 180
-
- -### Permissioned Queue - -The permissioned queue requires aggregators to have `PERMIT_ORACLE_QUEUE_USAGE` permissions before using the queue's resources. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Public Keys
- Oracle Queue - - -
- Authority - - -
- Mint - - -
- Oracle Buffer - - -
- Crank #1 - - -
-
- Devnet Permissioned Queue Settings -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- unpermissionedFeedsEnabled - False
- unpermissionedVrfEnabled - False
- enableBufferRelayers - False
- slashingEnabled - False
- reward - 12500
- minStake - 0
- oracleTimeout - 180
-
diff --git a/website/docs/developers/_category_.json b/website/docs/developers/_category_.json deleted file mode 100644 index 3cbbc5f..0000000 --- a/website/docs/developers/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "label": "Developers", - "position": 60, - "collapsible": true -} diff --git a/website/docs/developers/_example_table.mdx b/website/docs/developers/_example_table.mdx deleted file mode 100644 index 87f891d..0000000 --- a/website/docs/developers/_example_table.mdx +++ /dev/null @@ -1,26 +0,0 @@ -import MarkdownImage from "/src/components/MarkdownImage"; -import { Box, Typography, Grid } from "@mui/material"; -import Link from "@docusaurus/Link"; -import { VscGithubInverted } from "react-icons/vsc"; -import { FiType } from "react-icons/fi"; -import { SiTypescript } from "react-icons/si"; -import { SiJavascript } from "react-icons/si"; -import { SiPython } from "react-icons/si"; -import { SiRust } from "react-icons/si"; -import { SiPowershell } from "react-icons/si"; -import { VscJson } from "react-icons/vsc"; -import { GoLinkExternal } from "react-icons/go"; -import { SerumIcon } from "/src/components/icons/SerumIcon"; - - - Example repos showing how to integrate Switchboard V2 into your on-chain - programs or off-chain applications - - -| Example | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | -| anchor-feed-parser | Anchor example program demonstrating how to deserialize and read an onchain aggregator. | -| anchor-vrf-parser | Anchor example program demonstrating how to deserialize and read an onchain verifiable randomness function (VRF) account. | -| anchor-buffer-parser | Anchor example program demonstrating how to deserialize and read an onchain buffer relayer account. | -| feed-parser | Typescript example demonstrating how to read an aggregator account. | -| feed-walkthrough | Typescript example demonstrating how to create and manage your own oracle queue. | diff --git a/website/docs/developers/_idl.mdx b/website/docs/developers/_idl.mdx deleted file mode 100644 index 14fbf9d..0000000 --- a/website/docs/developers/_idl.mdx +++ /dev/null @@ -1,18 +0,0 @@ -import { Box, Typography, Grid } from "@mui/material"; -import Link from "@docusaurus/Link"; - - - - Switchboard's Anchor IDL contains a detailed description of the program - interfaces and schemas - - - - - - ⚓ Anchor IDL ⚓ - - - - -
\ No newline at end of file diff --git a/website/docs/developers/_library_table.mdx b/website/docs/developers/_library_table.mdx deleted file mode 100644 index f2f4664..0000000 --- a/website/docs/developers/_library_table.mdx +++ /dev/null @@ -1,28 +0,0 @@ -import MarkdownImage from "/src/components/MarkdownImage"; -import { Box, Typography, Grid } from "@mui/material"; -import Link from "@docusaurus/Link"; -import { VscGithubInverted } from "react-icons/vsc"; -import { FiType } from "react-icons/fi"; -import { SiTypescript } from "react-icons/si"; -import { SiJavascript } from "react-icons/si"; -import { SiPython } from "react-icons/si"; -import { SiRust } from "react-icons/si"; -import { SiPowershell } from "react-icons/si"; -import { VscJson } from "react-icons/vsc"; -import { GoLinkExternal } from "react-icons/go"; -import { SerumIcon } from "/src/components/icons/SerumIcon"; - - - Switchboard's libraries provide a client interface to interact with - Switchboard V2 on-chain - - -| Library | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | -| switchboard-tasks | Protobuf definitions for the various supported task definitions to build job definitions from. | -| switchboardv2-cli | A Command Line Interface (CLI) to interact with the Switchboardv2 program. | -| switchboardv2-api | A typescript library of utility functions to interact with the Switchboardv2 program. | -| sbv2-lite | A typescript "Lite" client to deserialize aggregator accounts. | -| sbv2-utils | Some utility functions to interact with Switchboard V2. | -| switchboardpy | A python library of utility functions to interact with the Switchboardv2 program. | -| switchboard-v2 | A rust library of utility functions to interact with the Switchboardv2 program on-chain. | diff --git a/website/docs/developers/_sdk.mdx b/website/docs/developers/_sdk.mdx deleted file mode 100644 index 7e51b89..0000000 --- a/website/docs/developers/_sdk.mdx +++ /dev/null @@ -1,22 +0,0 @@ -import { Box, Typography, Grid } from "@mui/material"; -import Link from "@docusaurus/Link"; -import { VscGithubInverted } from "react-icons/vsc"; - - - The Switchboard-V2 repository contains all of the libraries, examples, and - documentation to help you get started integrating Switchboard - - -
- - - - - -  @switchboard-xyz/switchboard-v2  - - - - - -
diff --git a/website/docs/developers/buffer-relayer.mdx b/website/docs/developers/buffer-relayer.mdx deleted file mode 100644 index 74f44e8..0000000 --- a/website/docs/developers/buffer-relayer.mdx +++ /dev/null @@ -1,75 +0,0 @@ ---- -sidebar_position: 50 -title: Buffer Relayers ---- - -import Tabs from "@theme/Tabs"; -import TabItem from "@theme/TabItem"; - -## Read a Buffer Relayer - - - - -```rust -// Rust code -``` - - - - -```ts -// Typescript code -``` - - - - -```bash -# CLI command -``` - - - - -## Create a Buffer Relayer - -- `bufferRelayerInit` - - - - -```ts -// Typescript code -``` - - - - -```bash -# CLI command -``` - - - - -## Request a Buffer Relayer Update - -- `bufferRelayerOpenRound` - - - - -```ts -// Typescript code -``` - - - - -```bash -# CLI command -``` - - - diff --git a/website/docs/developers/feed.mdx b/website/docs/developers/feed.mdx deleted file mode 100644 index 53ff642..0000000 --- a/website/docs/developers/feed.mdx +++ /dev/null @@ -1,371 +0,0 @@ ---- -sidebar_position: 30 -title: Data Feeds ---- - -import { Box, Typography, Grid } from "@mui/material"; -import Link from "@docusaurus/Link"; -import Tabs from "@theme/Tabs"; -import TabItem from "@theme/TabItem"; - - - -## Reading a Data Feed - - - - -```rust -use switchboard_v2::AggregatorAccountData; -use std::convert::TryInto; - -let feed_result = AggregatorAccountData::new(feed_account_info)?.get_result()?; - -let decimal: f64 = feed_result.try_into()?; -``` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - AggregatorAccount, - loadSwitchboardProgram, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -const program = await loadSwitchboardProgram("devnet", undefined, payer); - -const aggregatorAccount = new AggregatorAccount({ - program, - publicKey: aggregatorKey, -}); - -const latestResult = await aggregatorAccount.getLatestValue(); -``` - - - - -```bash -sbv2 aggregator print AGGREGATORKEY -# OR -sbv2 aggregator watch AGGREGATORKEY -``` - - - - -## Creating a Data Feed - -- `aggregatorInit` -- `leaseInit` -- `jobInit` -- `permissionInit` -- `aggregatorAddJob` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - AggregatorAccount, - loadSwitchboardProgram, - LeaseAccount, - OracleQueueAccount, - SwitchboardPermission, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -let authority: Keypair; // queue authority -const program = await loadSwitchboardProgram("devnet", undefined, payer); -const queueAccount = new OracleQueueAccount({ - program, - publicKey: queuePubkey, -}); - -// aggregator -const aggregatorAccount = await AggregatorAccount.create(program, { - name: Buffer.from("MY SOL/USD Feed"), - batchSize: 1, - minRequiredOracleResults: 1, - minRequiredJobResults: 1, - minUpdateDelaySeconds: 10, - queueAccount, - authority: authority.publicKey, -}); - -// permission -const permissionAccount = await PermissionAccount.create(program, { - authority: authority.publicKey, - granter: queueAccount.publicKey, - grantee: aggregatorAccount.publicKey, -}); -await aggregatorPermission.set({ - authority, - permission: SwitchboardPermission.PERMIT_ORACLE_QUEUE_USAGE, - enable: true, -}); - -// lease -const leaseContract = await LeaseAccount.create(program, { - loadAmount: new anchor.BN(0), - funder: tokenAccount, - funderAuthority: authority, - oracleQueueAccount: queueAccount, - aggregatorAccount, -}); - -// job -const tasks: OracleJob.Task[] = [ - OracleJob.Task.create({ - httpTask: OracleJob.HttpTask.create({ - url: `https://ftx.us/api/markets/SOL_USD`, - }), - }), - OracleJob.Task.create({ - jsonParseTask: OracleJob.JsonParseTask.create({ path: "$.result.price" }), - }), -]; -const jobData = Buffer.from( - OracleJob.encodeDelimited( - OracleJob.create({ - tasks, - }) - ).finish() -); -const jobKeypair = anchor.web3.Keypair.generate(); -const jobAccount = await JobAccount.create(program, { - data: jobData, - keypair: jobKeypair, - authority: authority.publicKey, -}); - -// add job to aggregator -await aggregatorAccount.addJob(jobAccount, authority); -``` - - - - -```bash -sbv2 aggregator create AGGREGATORKEY \ - --name "My Buffer" \ - --keypair "path/to/payer/keypair.json" \ - --batchSize 1 \ - --minOracles 1 \ - --minJobs 1 \ - --updateInterval 45 \ - --job "path/to/job-definition-1.json" \ - --job "path/to/job-definition-2.json" \ - --verbose -``` - - - - -## Funding a Data Feed - -- `leeaseExtend` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - AggregatorAccount, - loadSwitchboardProgram, - LeaseAccount, - OracleQueueAccount, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -let amount = new anchor.BN(1_000_000_000); -let authority: Keypair; // queue authority -const program = await loadSwitchboardProgram("devnet", undefined, payer); -const queueAccount = new OracleQueueAccount({ - program, - publicKey: queuePubkey, -}); -const mint = await queueAccount.loadMint(); - -const funderTokenAccount = ( - await mint.getOrCreateAssociatedAccountInfo(payer.publicKey) -).address; - -const signature = await leaseAccount.extend({ - loadAmount: amount, - funder: funderTokenAccount, - funderAuthority: payer, -}); -``` - - - - -```bash -sbv2 lease extend AGGREGATORKEY \ - --keypair "path/to/payer/keypair.json" \ - --authority "path/to/authority/keypair.json" \ - --amount 0.1 -``` - - - - -## Requesting a Feed Update - -- `openRound` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - AggregatorAccount, - loadSwitchboardProgram, - LeaseAccount, - OracleQueueAccount, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -let amount = new anchor.BN(1_000_000_000); -let authority: Keypair; // queue authority -const program = await loadSwitchboardProgram("devnet", undefined, payer); -const queueAccount = new OracleQueueAccount({ - program, - publicKey: queuePubkey, -}); -const mint = await queueAccount.loadMint(); - -const payoutWallet = ( - await mint.getOrCreateAssociatedAccountInfo(payer.publicKey) -).address; - -const aggregatorAccount = new AggregatorAccount({ - program, - publicKey: aggregatorKey, -}); - -const signature = await aggregatorAccount.openRound({ - queueAccount, - payoutWallet, -}); -``` - - - - -```bash -sbv2 aggregator update AGGREGATORKEY \ - --keypair "path/to/payer/keypair.json" \ -``` - - - - -## Push to Crank - -- `crankPush` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - AggregatorAccount, - CrankAccount, - loadSwitchboardProgram, - LeaseAccount, - OracleQueueAccount, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -const program = await loadSwitchboardProgram("devnet", undefined, payer); - -const aggregatorAccount = new AggregatorAccount({ - program, - publicKey: aggregatorKey, -}); -const aggregator = await aggregatorAccount.loadData(); - -const queueAccount = new OracleQueueAccount({ - program, - publicKey: aggregator.queuePubkey, -}); -const mint = await queueAccount.loadMint(); - -const crankAccount = new CrankAccount({ program, publicKey: crankKey }); -const crank = await crankAccount.loadData(); - -await crankAccount.push({ aggregatorAccount }); -``` - - - - -```bash -sbv2 crank push CRANKKEY AGGREGATORKEY \ - --keypair "path/to/payer/keypair.json" -``` - - - - -## Add History Buffer - -- `aggregatorSetHistoryBuffer` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - AggregatorAccount, - CrankAccount, - loadSwitchboardProgram, - LeaseAccount, - OracleQueueAccount, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -let authority: Keypair; // feed authority -const program = await loadSwitchboardProgram("devnet", undefined, payer); - -const aggregatorAccount = new AggregatorAccount({ - program, - publicKey: aggregatorKey, -}); -const aggregator = await aggregatorAccount.loadData(); - -const signature = await aggregatorAccount.setHistoryBuffer({ authority, size }); -``` - - - - -```bash -sbv2 aggregator set history AGGREGATORKEY SIZE \ - --keypair "path/to/payer/keypair.json" -``` - - - diff --git a/website/docs/developers/localnet.mdx b/website/docs/developers/localnet.mdx deleted file mode 100644 index ef25a6d..0000000 --- a/website/docs/developers/localnet.mdx +++ /dev/null @@ -1,149 +0,0 @@ ---- -sidebar_position: 5 -title: Localnet Integration ---- - -import Tabs from "@theme/Tabs"; -import TabItem from "@theme/TabItem"; - -You may wish to run a localnet version of Switchboard to watch how your program reacts to data feed updates. The following will walk through how to create your own Oracle Queue and Oracle and output some helper scripts to quickly load the environment in your tests. - -## Setup Switchboard Test Environment - -The following will create an Oracle Queue and Oracle with the provided keypair as the authority - - - - -```shell -sbv2 localnet:env \ - --keypair "../payer-keypair.json" \ - --outputDir ".switchboard" -``` - - - - -```typescript -import { SwitchboardTestEnvironment } from "@switchboard-xyz/sbv2-utils"; - -const testEnvironment = await SwitchboardTestEnvironment.create( - "../payer-keypair.json" -); -testEnvironment.writeAll(".switchboard"); -``` - - - - -In the specified `outputDir`, you will find: - -- **start-local-validator.sh**: Bash script which starts a local Solana validator with the Switchboard program, IDL, and our devnet environment pre-loaded -- **start-oracle.sh**: Bash script which starts a Switchboard oracle and start heartbeating on the localnet queue -- **docker-compose.switchboard.yml**: docker file with the Switchboard oracle environment -- **switchboard.env**: Env file with your Switchboard account public keys -- **switchboard.json**: JSON file with your Switchboard account public keys - -## Switchboard Test Context - -In your tests, you will need to load the `switchboard.env` file to build the SwitchboardTestContext. - -### Starting Test - -Before you run your test you will need a localnet Solana validator running with the Switchboard-V2 program loaded and your Switchboard oracle running and heartbeating. - -**_In Shell #1_** - -```bash -./.switchboard/start-local-validator.sh -``` - -**_In Shell #2_** - -```bash -./.switchboard/start-oracle.sh -``` - -**_In Shell #3_** - -```bash -anchor test --skip-local-validator -``` - -### loadFromEnv - -`SwitchboardTestContext.loadFromEnv` will look for `switchboard.env` or a `.switchboard` directory in the current directory or three levels up before throwing an error. - - - - -```typescript -import * as anchor from "@project-serum/anchor"; -import { SwitchboardTestContext } from "@switchboard-xyz/sbv2-utils"; -import chai from "chai"; -import "mocha"; - -describe("switchboard integration test", async () => { - const provider = anchor.AnchorProvider.env(); - anchor.setProvider(provider); - - let switchboard: SwitchboardTestContext; - - before(async () => { - // Optional, attempt to load the switchboard devnet PID - // If successful, then we can assume we're on devnet and can use the public permissionless queue - try { - switchboard = await SwitchboardTestContext.loadDevnetQueue(provider); - console.log("devnet detected"); - return; - } catch (error: any) { - console.log("Error: SBV2 Devnet - ", error.message); - } - - // Attempt to load switchboard.env or .switchboard directory - // Will look 3 levels up before failing - try { - switchboard = await SwitchboardTestContext.loadFromEnv(provider); - console.log("localnet detected"); - return; - } catch (error: any) { - console.log("Error: SBV2 Localnet - ", error.message); - } - - // If fails, throw error - throw new Error( - "Failed to load the SwitchboardTestContext from devnet or from a switchboard.env file" - ); - }); - - it("Your test here", async () => {}); -}); -``` - - - - -### createStaticFeed - - - - -```typescript -import * as anchor from "@project-serum/anchor"; -import { SwitchboardTestContext } from "@switchboard-xyz/sbv2-utils"; -import { AggregatorAccount } from "@switchboard-xyz/switchboard-v2"; - -// load the Switchboard env to dictate which queue to create feed for -const switchboard = await SwitchboardTestContext.loadFromEnv( - anchor.AnchorProvider.env() -); - -// create a static feed that will always resolve to 100 -// then call openRound and wait for the oracle to process the update -const aggregatorAccount: AggregatorAccount = await switchboard.createStaticFeed( - 100 -); -``` - - - diff --git a/website/docs/developers/oracle.mdx b/website/docs/developers/oracle.mdx deleted file mode 100644 index 58c9368..0000000 --- a/website/docs/developers/oracle.mdx +++ /dev/null @@ -1,157 +0,0 @@ ---- -sidebar_position: 20 -title: Oracles ---- - -import Tabs from "@theme/Tabs"; -import TabItem from "@theme/TabItem"; - -## Create - -- `oracleInit` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - loadSwitchboardProgram, - OracleAccount, - OracleQueueAccount, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -const program = await loadSwitchboardProgram("devnet", undefined, payer); - -const queueAccount = new OracleQueueAccount({ - program, - publicKey: queuePubkey, -}); - -// Create oracle -const oracleAccount = await OracleAccount.create(program, { - name: Buffer.from("My Oracle"), - queueAccount, -}); -``` - - - - -```bash -sbv2 oracle create QUEUEKEY \ - --name "My Oracle" \ - --keypair "path/to/payer/keypair.json" \ - --authority "path/to/authority/keypair.json" \ - --enable \ - --verbose -``` - - - - -## Oracle Deposit - -- `tokenTransfer` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - loadSwitchboardProgram, - OracleAccount, - OracleQueueAccount, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -let amount = new anchor.BN(1_000_000_000); -const program = await loadSwitchboardProgram("devnet", undefined, payer); - -const oracleAccount = new OracleAccount({ program, publicKey: oracleKey }); -const oracle = await oracleAccount.loadData(); - -const queueAccount = new OracleQueueAccount({ - program, - publicKey: oracle.queuePubkey, -}); -const mint = await queueAccount.loadMint(); -const funderTokenAccount = ( - await mint.getOrCreateAssociatedAccountInfo(payer.publicKey) -).address; - -const signature = await mint.transfer( - funderTokenAccount, - oracle.tokenAccount, - payer, - [], - amount.toNumber() -); -``` - - - - -```bash -sbv2 oracle deposit ORACLEKEY \ - --keypair "path/to/payer/keypair.json" \ - --amount 1.25 -``` - - - - -## Oracle Withdraw - -- `oracleWithdraw` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - loadSwitchboardProgram, - OracleAccount, - OracleQueueAccount, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -let amount = new anchor.BN(1_000_000_000); -const program = await loadSwitchboardProgram("devnet", undefined, payer); - -const oracleAccount = new OracleAccount({ program, publicKey: oracleKey }); -const oracle = await oracleAccount.loadData(); - -const queueAccount = new OracleQueueAccount({ - program, - publicKey: oracle.queuePubkey, -}); -const mint = await queueAccount.loadMint(); -const withdrawAccount = ( - await mint.getOrCreateAssociatedAccountInfo(payer.publicKey) -).address; - -const signature = await oracleAccount.withdraw({ - amount, - oracleAuthority: payer, - withdrawAccount, -}); -``` - - - - -```bash -sbv2 oracle withdraw ORACLEKEY \ - --keypair "path/to/payer/keypair.json" \ - --amount 1.25 -``` - - - diff --git a/website/docs/developers/queue.mdx b/website/docs/developers/queue.mdx deleted file mode 100644 index e65a891..0000000 --- a/website/docs/developers/queue.mdx +++ /dev/null @@ -1,151 +0,0 @@ ---- -sidebar_position: 10 -title: Oracle Queue ---- - -import Tabs from "@theme/Tabs"; -import TabItem from "@theme/TabItem"; - -## Create an Oracle Queue - -- `oracleQueueInit` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import * as spl from "@solana/spl-token"; -import { OracleQueueAccount } from "@switchboard-xyz/switchboard-v2"; - -const queueAccount = await OracleQueueAccount.create(program, { - name: Buffer.from("Queue-1"), - mint: spl.NATIVE_MINT, - slashingEnabled: false, - reward: new anchor.BN(0), // no token account needed - minStake: new anchor.BN(0), - authority: authority.publicKey, -}); -``` - - - - -```bash -sbv2 queue create \ - --name "My Queue" \ - --keypair "path/to/payer/keypair.json" \ - --authority "path/to/authority/keypair.json" \ - --minStake 0 \ - --reward 0 \ - --crankSize 0 \ - --oracleTimeout 300 \ - --numOracles 0 \ - --queueSize 25 \ - --outputFile "My_Switchboard_Queue.json" \ - --verbose -``` - - - - -## Assign Queue Permissions - -- `permissionSet` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - loadSwitchboardProgram, - OracleAccount, - OracleQueueAccount - PermissionAccount, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -let authority: Keypair; -const program = await loadSwitchboardProgram("devnet", undefined, payer); -const queueAccount = new OracleQueueAccount({ - program, - publicKey: queuePubkey, -}); -const oracleAccount = new OracleAccount({ - program, - publicKey: oraclePubkey, -}); - -// Create permission -const permissionAccount = await PermissionAccount.create(program, { - authority: authority.publicKey, - granter: queueAccount.publicKey, - grantee: oracleAccount.publicKey, -}); - -// Set permission -await oraclePermission.set({ - authority, - permission: SwitchboardPermission.PERMIT_ORACLE_HEARTBEAT, - enable: true, -}); -``` - - - - -```bash -sbv2 permission set PERMISSIONKEY \ - --keypair "payer-keypair.json" \ - --authority "queue-authority.json" -``` - - - - -## Create a Crank - -- `crankInit` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - CrankAccount, - loadSwitchboardProgram, - OracleQueueAccount, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; // also the authority -const program = await loadSwitchboardProgram("devnet", undefined, payer); -const queueAccount = new OracleQueueAccount({ - program, - publicKey: queuePubkey, -}); - -const crankAccount = await CrankAccount.create(program, { - name: Buffer.from("My Crank"), - maxRows: 1000, - queueAccount, -}); -``` - - - - -```bash -sbv2 crank create QUEUEKEY \ - --name "My Crank" \ - --keypair "payer-keypair.json" \ - --authority "queue-authority.json" \ - --maxRows 1000 \ - --verbose -``` - - - diff --git a/website/docs/developers/randomness.mdx b/website/docs/developers/randomness.mdx deleted file mode 100644 index 9b83145..0000000 --- a/website/docs/developers/randomness.mdx +++ /dev/null @@ -1,328 +0,0 @@ ---- -sidebar_position: 40 -title: Randomness ---- - -import { Box, Typography, Grid } from "@mui/material"; -import Link from "@docusaurus/Link"; -import Tabs from "@theme/Tabs"; -import TabItem from "@theme/TabItem"; - - - -## Reading a VRF Account - - - - -```rust -use switchboard_v2::VrfAccountData; - -let vrf = VrfAccountData::new(vrf_account_info)?; -let result_buffer = vrf.get_result()?; -if result_buffer == [0u8; 32] { - msg!("vrf buffer empty"); - return Ok(()); -} - -let value: &[u128] = bytemuck::cast_slice(&result_buffer[..]); -let result = value[0] % 256000 as u128; -``` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - loadSwitchboardProgram, - VrfAccount, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -const program = await loadSwitchboardProgram("devnet", undefined, payer); - -const vrfAccount = new VrfAccount({ - program, - publicKey: vrfKey, -}); -const vrf = await vrfAccount.loadData(); -console.log(vrf.currentRound.result); -``` - - - - -```bash -sbv2 vrf print VRFKEY -# OR -sbv2 vrf watch VRFKEY -``` - - - - -## Creating a VRF Account - -- `vrfInit` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - loadSwitchboardProgram, - OracleQueueAccount, - PermissionAccount, - SwitchboardPermission, - VrfAccount, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -const program = await loadSwitchboardProgram("devnet", undefined, payer); -const queueAccount = new queueAccount({ program, publicKey: queueKey }); -const queue = await queueAccount.loadData(); - -// load client program used for callback -const vrfClientProgram = anchor.workspace - .AnchorVrfParser as anchor.Program; -const vrfSecret = anchor.web3.Keypair.generate(); - -const vrfIxCoder = new anchor.BorshInstructionCoder(vrfClientProgram.idl); -const vrfClientCallback: Callback = { - programId: vrfClientProgram.programId, - accounts: [ - // ensure all accounts in updateResult are populated - { pubkey: vrfClientKey, isSigner: false, isWritable: true }, - { pubkey: vrfSecret.publicKey, isSigner: false, isWritable: false }, - ], - ixData: vrfIxCoder.encode("updateResult", ""), // pass any params for instruction here -}; - -// create VRF -const vrfAccount = await VrfAccount.create(program, { - queue: queueAccount, - callback: vrfClientCallback, - authority: vrfClientKey, // vrf authority - keypair: vrfSecret, -}); - -// create permission -const permissionAccount = await PermissionAccount.create(program, { - authority: queue.authority, - granter: queue.publicKey, - grantee: vrfAccount.publicKey, -}); - -// if queue has not enabled unpermissionedVrfEnabled, queue will need to grant permission -let queueAuthority: Keypair; -await permissionAccount.set({ - authority: queueAuthority, - permission: SwitchboardPermission.PERMIT_VRF_REQUESTS, - enable: true, -}); -``` - - - - -```bash -sbv2 vrf create QUEUEKEY \ - --keypair "path/to/payer/keypair.json" \ - --authority "path/to/authority/keypair.json" \ - --queueAuthority "path/to/queue-authority/keypair.json" \ - --vrfKeypair vrf-keypair.json \ - --callbackPid CALLBACKPROGRAMID \ - --ixData "[145,72,9,94,61,97,126,106]" \ - -a "{\"pubkey\": \"C7PVykaTT8xDt8D1bugNvAJP1mJnfK5h12PuqgghmCDZ\",\"isSigner\": false,\"isWritable\": true}" \ - -a "{\"pubkey\": \"BV7TXpXtnzYCFjoQCeGx8iMgfi9WB38tmirrDkun8P38\",\"isSigner\": false,\"isWritable\": false}" \ - --enable \ - --verbose -``` - - - - -## Request Randomness - -- `vrfRequestRandomness` - - - - -```rust -use crate::*; -use anchor_lang::prelude::*; -pub use switchboard_v2::{VrfAccountData, VrfRequestRandomness}; -use anchor_spl::token::Token; -use anchor_lang::solana_program::clock; - -#[derive(Accounts)] -#[instruction(params: RequestResultParams)] // rpc parameters hint -pub struct RequestResult<'info> { - #[account( - mut, - seeds = [ - STATE_SEED, - vrf.key().as_ref(), - authority.key().as_ref(), - ], - bump = state.load()?.bump, - has_one = vrf, - has_one = authority - )] - pub state: AccountLoader<'info, VrfClient>, - #[account(signer)] - pub authority: AccountInfo<'info>, - #[account(constraint = switchboard_program.executable == true)] - pub switchboard_program: AccountInfo<'info>, - #[account(mut, constraint = vrf.owner.as_ref() == switchboard_program.key().as_ref())] - pub vrf: AccountInfo<'info>, - #[account(mut, constraint = oracle_queue.owner.as_ref() == switchboard_program.key().as_ref())] - pub oracle_queue: AccountInfo<'info>, - pub queue_authority: UncheckedAccount<'info>, - #[account(constraint = data_buffer.owner.as_ref() == switchboard_program.key().as_ref())] - pub data_buffer: AccountInfo<'info>, - #[account(mut, constraint = permission.owner.as_ref() == switchboard_program.key().as_ref())] - pub permission: AccountInfo<'info>, - #[account(mut, constraint = escrow.owner == program_state.key())] - pub escrow: Account<'info, TokenAccount>, - #[account(mut, constraint = payer_wallet.owner == payer_authority.key())] - pub payer_wallet: Account<'info, TokenAccount>, - #[account(signer)] - pub payer_authority: AccountInfo<'info>, - #[account(address = solana_program::sysvar::recent_blockhashes::ID)] - pub recent_blockhashes: AccountInfo<'info>, - #[account(constraint = program_state.owner.as_ref() == switchboard_program.key().as_ref())] - pub program_state: AccountInfo<'info>, - #[account(address = anchor_spl::token::ID)] - pub token_program: Program<'info, Token>, -} - -#[derive(Clone, AnchorSerialize, AnchorDeserialize)] -pub struct RequestResultParams { - pub permission_bump: u8, - pub switchboard_state_bump: u8, -} - -impl RequestResult<'_> { - pub fn validate(&self, _ctx: &Context, _params: &RequestResultParams) -> Result<()> { - Ok(()) - } - - pub fn actuate(ctx: &Context, params: &RequestResultParams) -> Result<()> { - let client_state = ctx.accounts.state.load()?; - let bump = client_state.bump.clone(); - let max_result = client_state.max_result.clone(); - drop(client_state); - - let switchboard_program = ctx.accounts.switchboard_program.to_account_info(); - - let vrf_request_randomness = VrfRequestRandomness { - authority: ctx.accounts.state.to_account_info(), - vrf: ctx.accounts.vrf.to_account_info(), - oracle_queue: ctx.accounts.oracle_queue.to_account_info(), - queue_authority: ctx.accounts.queue_authority.to_account_info(), - data_buffer: ctx.accounts.data_buffer.to_account_info(), - permission: ctx.accounts.permission.to_account_info(), - escrow: ctx.accounts.escrow.clone(), - payer_wallet: ctx.accounts.payer_wallet.clone(), - payer_authority: ctx.accounts.payer_authority.to_account_info(), - recent_blockhashes: ctx.accounts.recent_blockhashes.to_account_info(), - program_state: ctx.accounts.program_state.to_account_info(), - token_program: ctx.accounts.token_program.to_account_info(), - }; - - let vrf_key = ctx.accounts.vrf.key.clone(); - let authority_key = ctx.accounts.authority.key.clone(); - - msg!("bump: {}", bump); - msg!("authority: {}", authority_key); - msg!("vrf: {}", vrf_key); - - let state_seeds: &[&[&[u8]]] = &[&[ - &STATE_SEED, - vrf_key.as_ref(), - authority_key.as_ref(), - &[bump], - ]]; - msg!("requesting randomness"); - vrf_request_randomness.invoke_signed( - switchboard_program, - params.switchboard_state_bump, - params.permission_bump, - state_seeds, - )?; - - emit!(RequestingRandomness{ - vrf_client: ctx.accounts.state.key(), - max_result: max_result, - timestamp: clock::Clock::get().unwrap().unix_timestamp - }); - - msg!("randomness requested successfully"); - Ok(()) - } -} - -``` - - - - -```ts -import * as anchor from "@project-serum/anchor"; -import { Keypair } from "@solana/web3.js"; -import { - loadSwitchboardProgram, - VrfAccount, -} from "@switchboard-xyz/switchboard-v2"; - -let payer: Keypair; -let authority: Keypair; -const program = await loadSwitchboardProgram("devnet", undefined, payer); - -const vrfAccount = new VrfAccount({ - program, - publicKey: vrfKey, -}); -const vrf = await vrfAccount.loadData(); - -const queueAccount = new OracleQueueAccount({ - program, - publicKey: vrf.queuePubkey, -}); -const queue = await queueAccount.loadData(); -const mint = await queueAccount.loadMint(); - -const payerTokenWallet = = ( - await mint.getOrCreateAssociatedAccountInfo(payer.publicKey) -).address; - -const signature = await vrfAccount.requestRandomness({ - authority, - payer: payerTokenWallet, - payerAuthority: payer, -}); -``` - - - - -```bash -sbv2 vrf request VRFKEY \ - --keypair "path/to/payer/keypair.json" -``` - - - -``` diff --git a/website/docs/developers/resources.mdx b/website/docs/developers/resources.mdx deleted file mode 100644 index 062df1b..0000000 --- a/website/docs/developers/resources.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -sidebar_position: 1 -slug: . -title: Developer Resources ---- - -import LibraryTable from "./_library_table.mdx"; -import SDK from "./_sdk.mdx"; -import IDL from "./_idl.mdx"; -import ExampleTable from "./_example_table.mdx"; -import MarkdownImage from "/src/components/MarkdownImage"; - -# Developer Resources - - -
- -## SDK - - - -## Anchor IDL - - - -## Getting Help - -- [Discord](http://discord.switchboard.xyz/) -- [Telegram](https://t.me/switchboardxyz) -- [Twitter @switchboard-xyz](https://twitter.com/switchboardxyz) - -
- -## Libraries - - - -## Examples - - diff --git a/website/docs/feed/_category_.json b/website/docs/feed/_category_.json deleted file mode 100644 index 483c75b..0000000 --- a/website/docs/feed/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "label": "Data Feeds", - "position": 30, - "collapsible": true -} diff --git a/website/docs/feed/architecture.mdx b/website/docs/feed/architecture.mdx deleted file mode 100644 index 869e8e4..0000000 --- a/website/docs/feed/architecture.mdx +++ /dev/null @@ -1,203 +0,0 @@ ---- -sidebar_position: 1 -slug: . -title: Architecture ---- - -# Data Feed Architecture - -import MarkdownImage from "/src/components/MarkdownImage"; -import { Box, Typography, Grid } from "@mui/material"; -import Link from "@docusaurus/Link"; - -An aggregator or data feed is what on-chain developers use when building smart contracts. A data feed is a collection of jobs that get aggregated to produce a single, deterministic result. Typically the first task in a job will fetch external data with subsequent tasks responsible for parsing the response and transforming the value into a single data type, like an integer or decimal. - -When an oracle is assigned to process a data feed update, the oracle executes the defined jobs, computes the weighted median of the job responses, and publishes the result on-chain. If sufficient oracles respond, the on-chain program computes the final result as the median of the assigned oracle responses. - -Data feeds published on Solana are public and there is no mechanism to prevent other users from reading and consuming the data. Because of this, Switchboard, by default, treats feeds as public utilities allowing anyone to contribute. This is by design as data feeds should be community controlled. If a program is relying on an oracle and the lease expires, any user is allowed to extend the lease, push on a crank, and keep the feed updating, but only if the feed config allows it. Switchboard envisions data feeds being community governed by the protocols supporting them. As a feed grows in popularity and is used across protocols, the feed maintenance cost can be spread across the protocols to reduce the economic burden on a single entity. - -## Configuration - - - -
    -
  • - Aggregator: Contains the data feed configuration, dictating how - data feed updates get requested, updated, and resolved on-chain. -
  • -
  • - Job Account: Stores the blueprints for how data is fetched - off-chain for a particular data source. -
  • -
  • - Permission Account: Permits a data feed to join an oracle queue. -
  • -
  • - Lease Contract: Pre-funded escrow contract to reward oracles for - their work. -
  • -
  • - Crank: Optional, owned by the queue and allows a data feed to be - updated at a regular interval. -
  • -
  • - History Buffer: Optional, allows a feed to store the last N - values. -
  • -
-
- - - -
- -
- -:::tip - -See [/idl/accounts/AggregatorAccountData](/idl/accounts/AggregatorAccountData) for the full list of an AggregatorAccount's configuration parameters. - -::: - -## Job Definitions - -An Aggregator Account stores a collection of Job Account public keys along with the hashes of the job definitions. This is to prevent malicious RPC nodes from providing incorrect task definitions to oracles before fulfillment. - -A Job Account is a collection of [Switchboard Tasks](/api/tasks) that get executed by an oracle sequentially. Each Job Account typically corresponds to a single data source. A data feed requires at least one job account and at most 16 job accounts. Switchboard Job Accounts can be used to source data from: - -- HTTP endpoints, public or private$^{[1]}$ -- Websockets -- On-Chain data from Solana, Ethereum, etc - - Anchor programs - - JupiterSwap - - Uniswap - - SushiSwap - - Saber - - ... and more - -$^{[1]}$ Endpoints requiring an API key require a [Private Queue](../queue/private-queues.mdx) to prevent leaking the API key on-chain - -### Job Weights - -A data feed can assign job weights to a job account which will be used when the oracle calculates the median across the job responses. This is useful to weight data sources by some metric such as liquidity or a reliability score. - -It is **strongly** recommended to utilize job weights as _not all data sources are created equally_. - -:::info - -Currently the only way to set a job weight is to remove and re-add the job account to a feed. - -::: - -### Lease Contract - -The LeaseContract is a pre-funded escrow account to reward oracles for fulfilling update request. The LeaseContract has a pre-specified `lease.withdrawAuthority` which is the only wallet allowed to withdraw funds from the lease escrow. Any user is able to contribute to a LeaseContract and keep the feed updating. - -When a new openRound is successfully requested for a data feed, the user who requested it is transferred `queue.reward` tokens from the feeds LeaseContract. This is to incentivize users and crank turners to keep feeds updating based on a feeds config. - -When a data feed result is accepted on-chain by a batch of oracles, the oracle rewards, as specified by `queue.reward`, are automatically deducted from the `lease.escrow` and transferred to an `oracle.tokenAccount`. - -## Requesting Updates - -A feed is updated when someone calls `aggregatorOpenRound` on-chain. If openRound is called before `aggregator.minUpdateDelaySeconds` have elapsed, the openRound call will fail and the user will forfeit their transaction fees. If successful, the user is rewarded for keeping the feed updating. - -### Periodic Updates - -Any data feed permitted to request updates on a queue is also permitted to join a queue's existing Crank, `aggregator.crankPubkey`. A Crank is the scheduling mechanism behind feeds that allow them to be periodically updated. The Crank is a buffer account that stores a collection of aggregator public keys, ordered by their next available update, with some level of jitter added to prevent a predictable oracle allocation cycle - -When a feeds Lease Contract is low on funds, it is automatically removed from the crank and must be manually repushed upon refunding the LeaseContract. - -A feed can set `aggregator.disableCrank` to prevent being pushed onto a Crank and draining it's lease. - -## Data Feed Cost - -Each data feed update cost can be calculated by the following equation: - -$T_{costPerUpdate}=(1 + numSuccess) × T_{queueReward}$ - -where, - -- `T` is the raw token amount in base units (_Ex: lamports or satoshis_) -- _`+1`_ is to reward the update requester for keeping the feed updating -- `numSuccess` is the number of successful oracle responses, which will always be between `[aggregator.minOracleResults, aggregator.oracleRequestBatchSize]` -- `queue.reward` is the queue's set oracle reward - -If an update round fails to receive `minOracleResults`, only the update requester receives funds from the lease escrow. - -### Variance Threshold - -A feed can set an `aggregator.varianceThreshold` to instruct an oracle to skip reporting a value on-chain if the percentage change between the current result and the `aggregator.previousConfirmedRoundResult` is not exceeded. This is a cost saving tool to conserve lease cost during low volatility. - -A feeds `aggregator.forceReportPeriod` is the compliment and instructs an oracle to always report a result if `aggregator.forceReportPeriod` seconds have elapsed since the last successful confirmed round. This can be thought of as the maximum allowable staleness for a feed. - -The two settings above can greatly increase the lifespan of a feed's lease but also makes it difficult to estimate the remaining time on a lease. - -Check out [@switchboard-xyz/lease-observer](https://github.com/switchboard-xyz/switchboard-v2/tree/main/packages/lease-observer) to get PagerDuty alerts when a lease crosses a low balance threshold. - -## History Buffer - -A history buffer account stores a set number of accepted results for an aggregator, and given Solana’s maximum account size of 10MB, the maximum number of samples a single history buffer can support is ~350,000 samples. An aggregator can only have a single history buffer associated with it. - -A history buffer has a static account size when it is initialized, equal to: `12 Bytes + (28 Bytes × Num Samples)`. Each time an aggregator value is updated on-chain, the associated history buffer is shifted to the right, and the last value is dropped. - -This feature allows Switchboard tasks to parse a history buffer and perform a set of calculations, such as the TwapTask. This allows feeds to reference other feeds and perform complex calculations based on historical samples. - -## Update Lifecycle - -Let's walk through what the feed update lifecycle looks like. - -### Update Request - -- Any user calls [aggregatorOpenRound](/idl/instructions/aggregatorOpenRound), either manually or via a crank turn -- sbv2 program checks if `aggregator.minUpdateDelaySeconds` have passed since the last openRound call -- sbv2 program checks if a LeaseContract has enough funds to reward the oracles for the next round -- sbv2 program assigns the next `aggregator.oracleRequestBatchSize` oracles to the update request and emits an [AggregatorOpenRoundEvent](/idl/events/AggregatorOpenRoundEvent) - -### Oracle Execution - -- Oracle watches the chain for an [AggregatorOpenRoundEvent](/idl/events/AggregatorOpenRoundEvent) with the oracle's public key assigned to the update -- Oracle fetches the feed and job account definitions from its RPC Provider -- Oracle verifies the job account definitions match the feeds `aggregator.jobHashes` -- Oracle executes the job definitions in parallel -- When an oracle receives `aggregator.minJobResults`, it calculates the weighted median based on the feeds `aggregator.jobWeights`. Note, this is not enforced on-chain and is purely up to the oracle to respect -- If a feed has configured a `aggregator.varianceThreshold` and `aggregator.forceReportPeriod` has not elapsed, the oracle calculates the percentage change between its calculated result and the previous confirmed round. If it does not exceed the feeds `aggregator.varianceThreshold`, the oracle drops the update request and waits for new update request -- If a feeds configuration dictate a new on-chain result, the oracle submits an [aggregatorSaveResult](https://docs.switchboard.xyz/idl/instructions/aggregatorSaveResult) transaction - -### Oracle Consensus - -- sbv2 program waits for `aggregator.minOracleResults` to be submitted by the assigned oracles -- When sufficient oracle responses, the sbv2 program computes the accepted value from the median of the oracle responses -- If a feed has a history buffer account, the accepted result is pushed onto the buffer -- Oracles that responded within `queue.varianceToleranceMultiplier` are rewarded `queue.reward` from the feed's LeaseContract -- If `queue.slashingEnabled`, oracles that responded outside the `queue.varianceToleranceMultiplier` are slashed `queue.reward` tokens from it's `oracle.tokenAccount` and transferred to the feed's `lease.escrow` -- If additional oracle responses are submitted after a value has been accepted, the median is recalculated based on the new response set, oracle rewards are redistributed, and the history buffer value is updated - -## Data Feed Composability - -Data feeds may reference other data feeds and build upon each other. It is **_strongly_** recommended that you own any feed that you reference in case of downstream impacts out of your control. While anyone can extend another feeds lease, a lease owner can always withdraw any lease funds and prevent future updates. - -As an example, you could construct the following feed definition: - -- Create a Switchboard feed that sources SOL/USD prices from a variety of exchanges, each weighted by their 7d volume, along with a history buffer -- Create a Switchboard feed that uses an OracleTask to fetch the Pyth SOL/USD price every 10 seconds, along with a history buffer -- Create a Switchboard feed that uses an OracleTask to fetch the Chainlink SOL/USD price every 10 seconds, along with a history buffer -- Finally, create a Switchboard feed that calculates the 1min TWAP of each source above and returns the median of the results - -This is just a small window into how Switchboard feeds can build on each other and let the downstream consumer configure their feeds to meet their own use cases. - -## More Information - -- [/api/tasks](/api/tasks) -- [/idl/accounts/AggregatorAccountData](/idl/accounts/AggregatorAccountData) -- [/idl/accounts/CrankAccountData](/idl/accounts/CrankAccountData) -- [/idl/accounts/AggregatorHistoryBuffer](/idl/accounts/AggregatorHistoryBuffer) -- [/idl/accounts/PermissionAccountData](/idl/accounts/PermissionAccountData) -- [/idl/accounts/JobAccountData](/idl/accounts/JobAccountData) -- [/idl/accounts/LeaseAccountData](/idl/accounts/LeaseAccountData) -- [feed-parser Typescript Example](https://github.com/switchboard-xyz/switchboard-v2/tree/main/packages/feed-parser) -- [feed-walkthrough Typescript Example](https://github.com/switchboard-xyz/switchboard-v2/tree/main/packages/feed-walkthrough) diff --git a/website/docs/feed/directory.mdx b/website/docs/feed/directory.mdx deleted file mode 100644 index d8736ba..0000000 --- a/website/docs/feed/directory.mdx +++ /dev/null @@ -1,1309 +0,0 @@ ---- -sidebar_position: 30 -title: Directory ---- - -This page includes some example jobs for building a data feed. You can view the expected JSON schema at **[/api/tasks](/api/tasks)**. - -Live on-chain examples can be found on our **[explorer](https://switchboard.xyz/explorer)**. - -import { IoPricetags } from "react-icons/io5"; -import { SerumIcon } from "/src/components/icons/SerumIcon"; -import { MangoIcon } from "/src/components/icons/MangoIcon"; -import { JupiterIcon } from "/src/components/icons/JupiterIcon"; -import { AlephIcon } from "/src/components/icons/AlephIcon"; -import { OrcaIcon } from "/src/components/icons/OrcaIcon"; -import { BiCylinder } from "react-icons/bi"; -import { MdOutlineSportsBasketball } from "react-icons/md"; -import { SiJpeg } from "react-icons/si"; -import { MdOutlineAccessTimeFilled } from "react-icons/md"; -import { FcMultipleInputs } from "react-icons/fc"; -import { GiPiggyBank } from "react-icons/gi"; -import { GiGrainBundle } from "react-icons/gi"; -import { SiAtom } from "react-icons/si"; - -## Exchange APIs - -Switchboard oracles can fetch the price of assets listed on various exchanges by using a combination of the httpTask, websocketTask, and the jsonParseTask. If the data is on a public API, Switchboard oracles can return it. - -
- - -### FtxUs - - - -```json title="FtxUs_BTC_USD.json" -{ - "name": "FtxUs BTC/USD", - "tasks": [ - { - "httpTask": { - "url": "https://ftx.us/api/markets/btc/usd" - } - }, - { - "jsonParseTask": { - "path": "$.result.price" - } - } - ] -} -``` - -
- -
- - -### FtxCom - - - -```json title="FtxCom_BTC_USD.json" -{ - "name": "FtxCom BTC/USD", - "tasks": [ - { - "websocketTask": { - "url": "wss://ftx.com/ws/", - "subscription": "{\"op\":\"subscribe\",\"channel\":\"ticker\",\"market\":\"BTC/USD\"}", - "maxDataAgeSeconds": 15, - "filter": "$[?(@.type == 'update' && @.channel == 'ticker' && @.market == 'BTC/USD')]" - } - }, - { - "medianTask": { - "tasks": [ - { - "jsonParseTask": { - "path": "$.data.bid" - } - }, - { - "jsonParseTask": { - "path": "$.data.ask" - } - }, - { - "jsonParseTask": { - "path": "$.data.last" - } - } - ] - } - } - ] -} -``` - -
- -
- - -### Coinbase - - - -```json title="Coinbase_BTC_USD.json" -{ - "name": "Coinbase BTC/USD", - "tasks": [ - { - "websocketTask": { - "url": "wss://ws-feed.pro.coinbase.com", - "subscription": "{\"type\":\"subscribe\",\"product_ids\":[\"BTC-USD\"],\"channels\":[\"ticker\",{\"name\":\"ticker\",\"product_ids\":[\"BTC-USD\"]}]}", - "maxDataAgeSeconds": 15, - "filter": "$[?(@.type == 'ticker' && @.product_id == 'BTC-USD')]" - } - }, - { - "jsonParseTask": { - "path": "$.price" - } - } - ] -} -``` - -
- -
- - -### BinanceUs - - - -```json title="BinanceUs_BTC_USD.json" -{ - "name": "BinanceUs BTC/USD", - "tasks": [ - { - "httpTask": { - "url": "https://www.binance.us/api/v3/ticker/price?symbol=BTCUSD" - } - }, - { - "jsonParseTask": { - "path": "$.price" - } - } - ] -} -``` - -
- -
- - -### BinanceCom - - - -```json title="BinanceCom_BTC_USD.json" -{ - "name": "BinanceCom BTC/USD", - "tasks": [ - { - "httpTask": { - "url": "https://www.binance.com/api/v3/ticker/price?symbol=BTCUSDT" - } - }, - { - "jsonParseTask": { - "path": "$.price" - } - }, - { - "multiplyTask": { - /* Mainnet USDT/USD Feed */ - "aggregatorPubkey": "5mp8kbkTYwWWCsKSte8rURjTuyinsqBpJ9xAQsewPDD" - } - } - ] -} -``` - -
- -
- - -### Bitfinex - - - -```json title="Bitfinex_BTC_USD.json" -{ - "name": "Bitfinex BTC/USD", - "tasks": [ - { - "httpTask": { - "url": "https://api-pub.bitfinex.com/v2/tickers?symbols=tBTCUSD" - } - }, - { - "medianTask": { - "tasks": [ - { - "jsonParseTask": { - "path": "$[0][1]" - } - }, - { - "jsonParseTask": { - "path": "$[0][3]" - } - }, - { - "jsonParseTask": { - "path": "$[0][7]" - } - } - ] - } - } - ] -} -``` - -
- -
- - -### Bitstamp - - - -```json title="Bitstamp_BTC_USD.json" -{ - "name": "Bitstamp BTC/USD", - "tasks": [ - { - "httpTask": { - "url": "https://www.bitstamp.net/api/v2/ticker/btcusd" - } - }, - { - "medianTask": { - "tasks": [ - { - "jsonParseTask": { - "path": "$.ask" - } - }, - { - "jsonParseTask": { - "path": "$.bid" - } - }, - { - "jsonParseTask": { - "path": "$.last" - } - } - ] - } - } - ] -} -``` - -
- -
- - -### Kraken - - - -```json title="Kraken_BTC_USD.json" -{ - "name": "Kraken BTC/USD", - "tasks": [ - { - "httpTask": { - "url": "https://api.kraken.com/0/public/Ticker?pair=XXBTZUSD" - } - }, - { - "medianTask": { - "tasks": [ - { - "jsonParseTask": { - "path": "$.result.XXBTZUSD.a[0]" - } - }, - { - "jsonParseTask": { - "path": "$.result.XXBTZUSD.b[0]" - } - }, - { - "jsonParseTask": { - "path": "$.result.XXBTZUSD.c[0]" - } - } - ] - } - } - ] -} -``` - -
- -
- - -### Okex - - - -```json title="Okex_BTC_USD.json" -{ - "name": "Okex BTC/USD", - "tasks": [ - { - "websocketTask": { - "url": "wss://ws.okex.com:8443/ws/v5/public", - "subscription": "{\"op\":\"subscribe\",\"args\":[{\"channel\":\"tickers\",\"instId\":\"BTC-USDT\"}]}", - "maxDataAgeSeconds": 15, - "filter": "$[?(@.event != 'subscribe' && @.arg.channel == 'tickers' && @.arg.instId == 'BTC-USDT' && @.data[0].instType == 'SPOT' && @.data[0].instId == 'BTC-USDT')]" - } - }, - { - "medianTask": { - "tasks": [ - { - "jsonParseTask": { - "path": "$.data[0].bidPx" - } - }, - { - "jsonParseTask": { - "path": "$.data[0].askPx" - } - }, - { - "jsonParseTask": { - "path": "$.data[0].last" - } - } - ] - } - }, - { - "multiplyTask": { - /* Mainnet USDT/USD Feed */ - "aggregatorPubkey": "5mp8kbkTYwWWCsKSte8rURjTuyinsqBpJ9xAQsewPDD" - } - } - ] -} -``` - -
- -
- - -### Huobi - - - -```json title="Huobi_BTC_USD.json" -{ - "name": "Huobi BTC/USD", - "tasks": [ - { - "httpTask": { - "url": "https://api.huobi.pro/market/detail/merged?symbol=btcusdt" - } - }, - { - "medianTask": { - "tasks": [ - { - "jsonParseTask": { - "path": "$.tick.bid[0]" - } - }, - { - "jsonParseTask": { - "path": "$.tick.ask[0]" - } - } - ] - } - }, - { - "multiplyTask": { - /* Mainnet USDT/USD Feed */ - "aggregatorPubkey": "5mp8kbkTYwWWCsKSte8rURjTuyinsqBpJ9xAQsewPDD" - } - } - ] -} -``` - -
- -
- - -### Mxc - - - -```json title="Mxc_BTC_USD.json" -{ - "name": "Mxc BTC/USD", - "tasks": [ - { - "httpTask": { - "url": "https://www.mxc.com/open/api/v2/market/ticker?symbol=BTC_USDT" - } - }, - { - "medianTask": { - "tasks": [ - { - "jsonParseTask": { - "path": "$.data[0].ask" - } - }, - { - "jsonParseTask": { - "path": "$.data[0].bid" - } - }, - { - "jsonParseTask": { - "path": "$.data[0].last" - } - } - ] - } - }, - { - "multiplyTask": { - /* Mainnet USDT/USD Feed */ - "aggregatorPubkey": "5mp8kbkTYwWWCsKSte8rURjTuyinsqBpJ9xAQsewPDD" - } - } - ] -} -``` - -
- -## Serum - -Switchboard can fetch the price of any asset listed on Serum's decentralized exchange. The Serum task will fetch the lowest ask, highest bid, and last fill price and return the median. If no last fill price is found, the Serum task will return the average of the lowest ask and highest bid. - -
- - -### BTC/USD Pool - - - -```json title="Serum_BTC_USD.json" -{ - "name": "Serum BTC/USD", - "tasks": [ - { - "serumSwapTask": { - /* Mainnet Serum BTC/USDC Pool */ - "serumPoolAddress": "A8YFbxQYFVqKZaoYJLLUVcQiWP7G2MeEgW5wsAQgMvFw" - } - } - ] -} -``` - -
- -
- - -### MNGO/USD Pool - - - -```json title="Serum_MNGO_USD.json" -{ - "name": "Serum MNGO/USD", - "tasks": [ - { - "serumSwapTask": { - /* Mainnet Serum MNGO/USDC Pool */ - "serumPoolAddress": "3d4rzwpy9iGdCZvgxcu7B1YocYffVLsQXPXkBZKt2zLc" - } - } - ] -} -``` - -
- -## OracleTask - -Switchboard can fetch the current price of a Solana oracle protocol - -
- - -### Switchboard SOL/USD - - - -```json title="Switchboard_SOL_USD.json" -{ - "name": "Switchboard SOL/USD", - "tasks": [ - { - "oracleTask": { - "switchboardAddress": "GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR" - } - } - ] -} -``` - -
- -
- - -### Pyth SOL/USD - - - -```json title="Pyth_SOL_USD.json" -{ - "name": "Pyth SOL/USD", - "tasks": [ - { - "oracleTask": { - "pythAddress": "H6ARHf6YXhGYeQfUzQNGk6rDNnLBQKrenN712K4AQJEG", - "pythAllowedConfidenceInterval": 0.002 - } - } - ] -} -``` - -
- -
- - -### Chainlink SOL/USD - - - -```json title="Chainlink_SOL_USD.json" -{ - "name": "Chainlink SOL/USD", - "tasks": [ - { - "oracleTask": { - "chainlinkAddress": "CcPVS9bqyXbD9cLnTbhhHazLsrua8QMFUHTutPtjyDzq" - } - } - ] -} -``` - -
- -## TWAP - -Aggregators can be initialized with a history buffer to store a buffer of accepted results. The TWAP task will parse the history buffer, filter the results within the specified period, and return the average. - -
- - -### BTC/USD 15min TWAP - - - -```json title="BTC_USD_15m_TWAP.json" -{ - "name": "BTC/USD 15min TWAP", - "tasks": [ - { - "twapTask": { - /* Mainnet BTC/USD Feed */ - "aggregatorPubkey": "8SXvChNYFhRq4EZuZvnhjrB3jJRQCv4k3P4W6hesH3Ee", - "period": 900 - } - } - ] -} -``` - -
- -
- - -### SOL/USD 30min TWAP - - - -```json title="SOL_USD_30m_TWAP.json" -{ - "name": "SOL/USD 30min TWAP", - "tasks": [ - { - "twapTask": { - /* Mainnet SOL/USD Feed */ - "aggregatorPubkey": "GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR", - "period": 1800 - } - } - ] -} -``` - -
- -## Aleph - -Switchboard can be used to fetch data from Aleph using an `httpTask`, where the url field is formatted as: - -> **<API SERVER>**/api/v0/aggregates/**<ADDRESS>**.json - -where, - -- **API SERVER** is an http endpoint such as `https://official.aleph.cloud` -- **ADDRESS** is a public key to query - -
- - -### Aggregates Example - - - -```json title="Aleph_Fetch.json" -{ - "name": "Aleph Aggregates Fetch", - "tasks": [ - { - "httpTask": { - "url": "https://api2.aleph.im/api/v0/aggregates/4upkSuPTUWJ7uk6TxzmAoqRbW2t1vPrUD7RWkYVNYMWz.json" - } - } - /** Additional tasks to parse the JSON response */ - ] -} -``` - -
- -## Lending Rates - -Switchboard oracles can resolve the lending and borrow rates for the following Solana lending programs: - -- Jet -- Solend -- Mango -- 01 -- Apricot -- Larix -- Port -- Tulip - -Thanks to JetProtocol for their work building the [defi-yield-ts](https://github.com/jet-lab/defi-yield-ts) library. - -A `field` of 1 represents a borrow rate and a `field` of 0 represents a lending rate. - -
- - -### Solend StSOL Borrow Rate - - - -```json title="Solend_StSol_Borrow_Rate.json" -{ - "name": "Solend stSOL Borrow Rate", - "tasks": [ - { - "lendingRateTask": { - "protocol": "solend", - "assetMint": "7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj", - "field": 1 - } - } - ] -} -``` - -
- -
- - -### Jet BTC Lending Rate - - - -```json title="Jet_Btc_Lending_Rate.json" -{ - "name": "JET BTC Lend Rate", - "tasks": [ - { - "lendingRateTask": { - "protocol": "jet", - "assetMint": "9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E", - "field": 0 - } - } - ] -} -``` - -
- -## JupiterSwap - -Switchboard can be used to fetch the best swap price using JupiterSwap. - -
- - -### JSOL to USDC Swap - - - -```json title="Jupiter_JSOL_to_USDC.json" -{ - "name": "JupiterSwap JSOL to USDC", - "tasks": [ - { - "jupiterSwapTask": { - /* JSOL mint address */ - "inTokenAddress": "7Q2afV64in6N6SeZsAAB81TJzwDoD6zpqmHkzi9Dcavn", - /* USDC mint address */ - "outTokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" - } - } - ] -} -``` - -
- -## OrcaSwap - -Switchboard can be used to fetch the best swap price using OrcaSwap. - -
- - -### GMT to USD Swap - - - -```json title="Orca_GMT_USD.json" -{ - "name": "OrcaSwap GMT to USD", - "tasks": [ - { - "lpExchangeRateTask": { - "orcaPoolTokenMintAddress": "CFxQF5kNAtbbDj298Xr47Sf4mkSyuzWpRH97hrdQ6kxi" - } - }, - { - "multiplyTask": { - "aggregatorPubkey": "BjUgj6YCnFBZ49wF54ddBVA9qu8TeqkFtkbqmZcee8uW" - } - } - ] -} -``` - -
- -## Mango Perps - -Switchboard oracles can be used to resolve the price on Mango's perpetual markets. You can find a list of market addresses in their [mango-client-v3](https://github.com/blockworks-foundation/mango-client-v3/blob/main/src/ids.json) repo. - -
- - -### Mango BTC Perps - - - -```json title="Mango_Perps_Btc.json" -{ - "tasks": [ - { - "mangoPerpMarketTask": { - "perpMarketAddress": "DtEcjPLyD4YtTBB4q8xwFZ9q49W89xZCZtJyrGebi5t8" - } - } - ] -} -``` - -
- -## LP Token Prices - -Switchboard oracles can fetch the price of LP tokens from Mercurial, Saber, Orca, and Raydium. If the `useFairPrice` flag is provided with a list of mainnet aggregators, the oracles will return the fair LP token price. See our [blog post](https://switchboardxyz.medium.com/fair-lp-token-oracles-94a457c50239) for more details on how this value is calculated. - -
- - -### Mercurial USDC/USDT/wUST - - - -```json title="Mercurial_USDC_USDT_wUST.json" -{ - "name": "LP Mercurial USDC/USDT/wUST", - "tasks": [ - { - "lpTokenPriceTask": { - /* Mainnet Mercurial 3Pool wUST Pool Address */ - "mercurialPoolAddress": "USD6kaowtDjwRkN5gAjw1PDMQvc9xRp8xW9GK8Z5HBA" - } - } - ] -} -``` - -You have the option of using the fair LP token price by providing the `useFairPrice` flag and providing a list of aggregators to use for the pool member prices. - -```json title="FairPrice_Mercurial_USDC_USDT_wUST.json" -{ - "name": "Fair Price LP Mercurial USDC/USDT/wUST", - "tasks": [ - { - "lpTokenPriceTask": { - "useFairPrice": true, - /* Mainnet Mercurial 3Pool wUST Pool Address */ - "mercurialPoolAddress": "USD6kaowtDjwRkN5gAjw1PDMQvc9xRp8xW9GK8Z5HBA", - "priceFeedAddresses": [ - /* Mainnet USDC/USD Feed */ - "BjUgj6YCnFBZ49wF54ddBVA9qu8TeqkFtkbqmZcee8uW", - /* Mainnet USDT/USD Feed */ - "ETAaeeuQBwsh9mC2gCov9WdhJENZuffRMXY2HgjCcSL9", - /* Mainnet wUST/USD Feed */ - "3RfJxApwV2tYB5mArdD7aRbBk7P6BQCSSFQzR2GXUzA2" - ] - } - } - ] -} -``` - -
- -
- - -### Saber USDT/USDC - - - -```json title="Saber_LP_Token_USDT_USDC.json" -{ - "name": "Saber USDT/USDC", - "tasks": [ - { - "lpTokenPriceTask": { - /* Mainnet Saber USDT/USDC Pool Address */ - "saberPoolAddress": "YAkoNb6HKmSxQN9L8hiBE5tPJRsniSSMzND1boHmZxe", - "priceFeedAddresses": [ - /* Mainnet USDT/USD Feed */ - "ETAaeeuQBwsh9mC2gCov9WdhJENZuffRMXY2HgjCcSL9", - /* Mainnet USDC/USD Feed */ - "BjUgj6YCnFBZ49wF54ddBVA9qu8TeqkFtkbqmZcee8uW" - ] - } - } - ] -} -``` - -You have the option of using the fair LP token price by providing the `useFairPrice` flag and providing a list of aggregators to use for the pool member prices. - -```json title="FairPrice_Saber_LP_Token_USDT_USDC.json" -{ - "name": "Fair Price Saber USDT/USDC", - "tasks": [ - { - "lpTokenPriceTask": { - "useFairPrice": true, - /* Mainnet Saber USDT/USDC Pool Address */ - "saberPoolAddress": "YAkoNb6HKmSxQN9L8hiBE5tPJRsniSSMzND1boHmZxe", - "priceFeedAddresses": [ - /* Mainnet USDT/USD Feed */ - "ETAaeeuQBwsh9mC2gCov9WdhJENZuffRMXY2HgjCcSL9", - /* Mainnet USDC/USD Feed */ - "BjUgj6YCnFBZ49wF54ddBVA9qu8TeqkFtkbqmZcee8uW" - ] - } - } - ] -} -``` - -
- -
- - -### Orca USDT/USDC - - - -```json title="Orca_USDT_USDC_LP.json" -{ - "name": "Orca LP USDT/USDC", - "tasks": [ - { - "lpTokenPriceTask": { - /* Mainnet Orca USDT/USDC Pool Address */ - "orcaPoolAddress": "H2uzgruPvonVpCRhwwdukcpXK8TG17swFNzYFr2rtPxy", - "priceFeedAddresses": [ - /* Mainnet USDC/USD Feed */ - "BjUgj6YCnFBZ49wF54ddBVA9qu8TeqkFtkbqmZcee8uW", - /* Mainnet USDT/USD Feed */ - "ETAaeeuQBwsh9mC2gCov9WdhJENZuffRMXY2HgjCcSL9" - ] - } - } - ] -} -``` - -
- -
- - -### Raydium SOL/USDC - - - -```json title="Raydium_SOL_USDC_LP.json" -{ - "name": "Raydium SOL/USDC", - "tasks": [ - { - "lpTokenPriceTask": { - /* Mainnet Raydium SOL/USDC Pool Address */ - "raydiumPoolAddress": "58oQChx4yWmvKdwLLZzBi4ChoCc2fqCUWBkwMihLYQo2", - "priceFeedAddresses": [ - /* Mainnet SOL/USD Feed */ - "GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR", - /* Mainnet USDC/USD Feed */ - "BjUgj6YCnFBZ49wF54ddBVA9qu8TeqkFtkbqmZcee8uW" - ] - } - } - ] -} -``` - -
- -## Commodities - -
- - -### Unleaded Fuel - - - -```json title="Average_Price_Unleaded_Fuel.json" -{ - "tasks": [ - { - "httpTask": { - "url": "https://gasprices.aaa.com/wp-admin/admin-ajax.php", - "method": 2, - "headers": [ - { - "key": "Content-Type", - "value": "application/x-www-form-urlencoded" - } - ], - "body": "action=states_cost_data&data%5BlocL%5D=US&data%5BlocR%5D=US" - } - }, - { - "jsonParseTask": { - "path": "$.data.unleaded.[0]" - } - } - ] -} -``` - -
- -
- - -### Gold - - - -```json title="Metals_live_Gold.json" -{ - "tasks": [ - { "httpTask": { "url": "https://api.metals.live/v1/spot/gold" } }, - { "jsonParseTask": { "path": "$[(@.length-1)].price" } } - ] -} -``` - -```json title="Asg_Gold.json" -{ - "tasks": [ - { "httpTask": { "url": "https://data-asg.goldprice.org/dbXRates/USD" } }, - { "jsonParseTask": { "path": "$.items[?(@.curr == \"USD\")].xauPrice" } } - ] -} -``` - -
- -
- - -### Silver - - - -```json title="Metals_live_Silver.json" -{ - "tasks": [ - { "httpTask": { "url": "https://api.metals.live/v1/spot/silver" } }, - { "jsonParseTask": { "path": "$[(@.length-1)].price" } } - ] -} -``` - -```json title="Asg_Silver.json" -{ - "tasks": [ - { "httpTask": { "url": "https://data-asg.goldprice.org/dbXRates/USD" } }, - { "jsonParseTask": { "path": "$.items[?(@.curr == \"USD\")].xagPrice" } } - ] -} -``` - -
- -## NFTs - -Switchboard oracles can be used to fetch the floor price of various NFTs. - -
- - -### Solana Monkey Business - - - -```json title="NFT_Solana_Monkey_Business.json" -{ - "name": "SMB Floor Price", - "tasks": [ - { - "httpTask": { - "url": "https://market.solanamonkey.business/api/fetchOffers?full=true" - } - }, - { - "jsonParseTask": { - "path": "$.offers[?(@.price)].price", - "aggregationMethod": "MIN" - } - } - ] -} -``` - -```json title="NFT_Solana_Monkey_Business.json" -{ - "name": "SMB Floor Price", - "tasks": [ - { - "httpTask": { - "url": "https://api.solanafloor.com/collections", - "method": "METHOD_POST" - } - }, - { - "jsonParseTask": { - "path": "$[?(@.code == 'SMB')].tokenFloor" - } - } - ] -} -``` - -
- -
- - -### DegenApe - - - -```json title="NFT_DegenApe_Floor_Price.json" -{ - "name": "DegenApe Floor Price", - "tasks": [ - { - "httpTask": { - "url": "https://qzlsklfacc.medianetwork.cloud/nft_for_sale?collection=degenape" - } - }, - { - "jsonParseTask": { - "path": "$[?(@.price)].price", - "aggregationMethod": "MIN" - } - } - ] -} -``` - -
- -## Sports - -Switchboard oracles can be used to resolve the outcome of events. The following examples will resolve to the following values: - -- **0** - No Result -- **1** - Home Team Win -- **2** - Away Team Win - -
- - -### European Premier League - - - -**ESPN** - -```json title="EPL_Man_United_v_Leicester_City_10_16_21.json" -{ - "name": "EPL MAN v LEI 10/16/2021", - "tasks": [ - { - "httpTask": { - "url": "https://site.api.espn.com/apis/site/v2/sports/soccer/eng.1/scoreboard/605965" - } - }, - { - "conditionalTask": { - "attempt": [ - { - "conditionalTask": { - "attempt": [ - { - "jsonParseTask": { - "path": "$.competitions[?(@.status.type.completed && @.id == '605965')].competitors[?(@.winner && @.homeAway == 'home')].id" - } - }, - { - "valueTask": { - "value": 1 - } - } - ], - "onFailure": [ - { - "jsonParseTask": { - "path": "$.competitions[?(@.status.type.completed && @.id == '605965')].competitors[?(@.winner && @.homeAway == 'away')].id" - } - }, - { - "valueTask": { - "value": 2 - } - } - ] - } - } - ], - "onFailure": [ - { - "conditionalTask": { - "attempt": [ - { - "jsonParseTask": { - "path": "$.competitions[?(@.status.type.completed && @.id == '605965')].id" - } - }, - { - "valueTask": { - "value": 0 - } - } - ] - } - } - ] - } - } - ] -} -``` - -**Yahoo** - -```json title="EPL_Man_United_v_Leicester_City_10_16_21.json" -{ - "name": "EPL MAN v LEI 10/16/2021", - "tasks": [ - { - "httpTask": { - "url": "https://sports.yahoo.com/soccer/premier-league/leicester-city-manchester-united-2247085" - } - }, - { - "regexExtractTask": { - "pattern": "root.App.main\\s+=\\s+(\\{.*\\})", - "groupNumber": 1 - } - }, - { - "conditionalTask": { - "attempt": [ - { - "conditionalTask": { - "attempt": [ - { - "jsonParseTask": { - "path": "$.context.dispatcher.stores.GamesStore.games[?(@.gameid == 'soccer.g.2247085' && @.status_type == 'final' && @.winning_team_id == @.home_team_id)].attendance" - } - }, - { - "valueTask": { - "value": 1 - } - } - ], - "onFailure": [ - { - "jsonParseTask": { - "path": "$.context.dispatcher.stores.GamesStore.games[?(@.gameid == 'soccer.g.2247085' && @.status_type == 'final' && @.winning_team_id == @.away_team_id)].attendance" - } - }, - { - "valueTask": { - "value": 2 - } - } - ] - } - } - ], - "onFailure": [ - { - "conditionalTask": { - "attempt": [ - { - "jsonParseTask": { - "path": "$.context.dispatcher.stores.GamesStore.games[?(@.gameid == 'soccer.g.2247085' && @.status_type == 'final')].attendance" - } - }, - { - "valueTask": { - "value": 0 - } - } - ] - } - } - ] - } - } - ] -} -``` - -
diff --git a/website/docs/feed/operator.mdx b/website/docs/feed/operator.mdx deleted file mode 100644 index ec49c0a..0000000 --- a/website/docs/feed/operator.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -sidebar_position: 15 -title: Feed Operator ---- - -This page gives an overview on how to configure and operate a Switchboard feed. - -## Job Consensus - -Job consensus refers to how individual oracles calculate their result from a feeds assigned job accounts. - -**_Job Diversity_** - -Data feeds should source data from a variety of sources when applicable. A feed relying on a single source is at the mercy of that sources uptime and responsiveness. - -**_Job Weights_** - -Data feeds should use job weights to calculate the weighted median, which is what the oracle submits on-chain as its final result. A data source that has the majority of an assets price action should be weighted higher than a dead exchange with questionable volume metrics. - -## Oracle Consensus - -Oracle consensus refers to how the final on-chain result is calculated from a batch of oracle responses. A feed's `aggregator.oracleRequestBatchSize` is the number of oracles assigned to a request, while `aggregator.minOracleResults` is the number of responses needed to accept a result. - -**_Increase oracleRequestBatchSize_** - -The quickest way to increase feed security is to request more oracles each update round because this requires a higher degree of oracle collusion in order to affect the accepted result. In reality, this increases the overall cost of a feed so its a careful consideration for feed operators when configuring a feed. - -**_ oracleRequestBatchSize $\neq$ minOracleResults _** - -The number of oracles assigned to an update request should always be less than the number of oracles required to respond. There are a variety of reasons that may cause an oracle response to fail, such as Solana network degradation, individual oracle network issues, or transaction spamming. Your feed's lease is only deducted when an oracle successfully responds and there is no penalty for an oracle who has timed out. - -## Feed Maintenance - -The primary maintenance for a feed is ensuring the lease contract has sufficient funds. The [@switchboard-xyz/lease-observer](https://github.com/switchboard-xyz/switchboard-v2/tree/main/packages/lease-observer) demonstrates how to emit PagerDuty events when a lease is low on funds. - -:::caution - -When a data feed's lease contract does not have enough funds, it will be automatically removed from its crank. When extending a feed's lease, make sure to also repush the feed back onto any cranks for updates to continue. - -::: - -You should also monitor the feed for staleness in case of downstream changes to a data sources endpoint. diff --git a/website/docs/feed/publisher/_category_.json b/website/docs/feed/publisher/_category_.json deleted file mode 100644 index 55d69cc..0000000 --- a/website/docs/feed/publisher/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "label": "Publisher", - "position": 50, - "collapsible": false -} diff --git a/website/docs/feed/publisher/_curation.mdx b/website/docs/feed/publisher/_curation.mdx deleted file mode 100644 index 43e257a..0000000 --- a/website/docs/feed/publisher/_curation.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -sidebar_position: 30 -title: Curation ---- - -# Job Curation - -- Job Accounts include an author wallet -- When a job account is used by a data feed, the job account creator is rewarded -- Curators rewarded for populating publisher catalog diff --git a/website/docs/feed/publisher/_job-builder.mdx b/website/docs/feed/publisher/_job-builder.mdx deleted file mode 100644 index 6459490..0000000 --- a/website/docs/feed/publisher/_job-builder.mdx +++ /dev/null @@ -1,9 +0,0 @@ ---- -sidebar_position: 20 -title: Job Builder ---- - -# Job Builder - -- Build jobs -- [/api/tasks](/api/tasks) diff --git a/website/docs/feed/publisher/overview.mdx b/website/docs/feed/publisher/overview.mdx deleted file mode 100644 index 1b53b58..0000000 --- a/website/docs/feed/publisher/overview.mdx +++ /dev/null @@ -1,184 +0,0 @@ ---- -sidebar_position: 10 -slug: . -title: Overview ---- - -import MarkdownImage from "/src/components/MarkdownImage"; -import { Box, Typography, Grid } from "@mui/material"; -import Link from "@docusaurus/Link"; - - - # publish.switchboard.xyz - - -The publisher site is a decentralized marketplace that allows anyone to build a data feed and deploy it on-chain. The site includes a directory of pre-defined feeds from popular sources such as FTX, Coinbase, or any permissionless Serum market. The publisher site streamlines the on-chain workflow and allows a user to configure a data feed from a convenient UI. - -## Connect - - - - - - - - The publisher site contains a Connect Wallet button in the top - right corner that allows you to connect your web wallet to Devnet or - Mainnet. - -
- - The publisher site currently supports the following wallets: - -
- - - -## Directory - -The publisher site includes some pre-defined sources to help developers publish data feeds. Pre-defined sources can be added to your basket by selecting them in the directory, from there you can toggle individual data sources to meet your on-chain needs. - - - -## Checkout - -During checkout, the publisher will create the necessary accounts for your data feed. - -### Lease - - - - - Automatic Updates - - - The Enable automatic updates checkbox determines whether your data - feed will be added to a crank. A crank allows data feeds to be updated at - regular intervals. Event based feeds should uncheck this box. - -
- - Update Interval - - - The update interval lets you configure how often and how long a data feed - should be updated for. This derives the total cost deposited into the - lease contract escrow account, which is used to fund oracles each time a - feed is updated. You can extend or terminate a lease at anytime. - -
-
- - - -
- -### Account Creation - - - - - - - - The Account Creation modal gives you a summary of your balance - changes before any on-chain transactions occur. Once you have verified the - total cost, hit Create Feed to submit the transactions. - -
- - After the accounts have been created, you will be redirected to the My - Feeds page to view your newly created data feeds. - -
- - By default, data feeds are added to the permissionless queue, where they - can begin updating immediately. Data feeds can be upgraded to the - permissioned queue by submitting a request to the Switchboard DAO. - -
-
- -## My Feeds - -The My Feeds page shows you a list of active data feeds associated with your wallet. - - - -
- -The publisher site lets you manage your on-chain feeds and currently lets you: - - - - - - -
    -
  • - View Feed Details: View the Aggregator configuration such as - current accepted result, oracle batch size, and associated Job account - public keys. -
  • -
  • - View In Explorer: View the Aggregator in Switchboard's explorer. -
  • -
  • - Track Feed History: Optionally, add an{" "} - aggregator history buffer to - track the last N recorded samples. -
  • -
  • - Extend Lease: Deposit funds in the feeds lease contract. -
  • -
  • - Terminate Lease: Withdraw remaining funds from a feeds lease - contract and if present, remove it from its crank. -
  • -
-
-
diff --git a/website/docs/introduction.mdx b/website/docs/introduction.mdx deleted file mode 100644 index b664d0e..0000000 --- a/website/docs/introduction.mdx +++ /dev/null @@ -1,35 +0,0 @@ ---- -sidebar_position: 1 -id: introduction -slug: /introduction ---- - -# Introduction - -> Switchboard is a community-driven, decentralized oracle network built on Solana that allows anyone to publish on-chain data for smart contract developers to reliably build upon. - -Switchboard is a community governed protocol — if additional on-chain data is needed, you will be able to publish it yourself after reading through these docs. - -Solana was chosen for its sub-second transaction speed, allowing faster refresh rates of on-chain data to help support it’s thriving developer ecosystem. Developing an oracle solution in this high-availability environment poses its own set of challenges that the Switchboard team is excited to solve! - -Switchboard gets its name from the early days of phone networks, when operators would shuffle telephone lines around a switchboard to complete a circuit and forward a dialer’s call to the next hop in the circuit. Similarly, Switchboard is responsible for how external data gets updated and routed through the Solana blockchain until it reaches its appropriate destination. - -## What is an Oracle - -Smart contracts are the building blocks of web3 and can be thought of as the logic behind programmable money, although their use cases extend well beyond just monetary transactions. A smart contract encapsulates some pre-defined logic allowing anonymous participants to interact without a trusted intermediary. More complex smart contracts might rely on external data from the web but blockchains do not have the capability of directly relaying this information. Enter oracles. - -Oracles are the gateway between a blockchain and the real world, providing the mechanisms to arrive at a reliable consensus for a single data point when given multiple sources. Oracles can then determine the most reliable value of the data point after examining the provided answer of each data source. In this way, oracles increase information integrity by removing the risk of a single point of failure or outlier. - -## Use Cases - -Oracle services have many applicable uses in blockchain based applications today, such as: - -- Determining the current price of an asset for collateralized lending -- Determining the state of a tracking number to auto settle funds on arrival -- Determining the current standings of the MLB for fantasy sports rankings - -Oracles can be used for a variety of data sets as long as there is a reliable way to source the information. - - - - diff --git a/website/docs/oracle/_category_.json b/website/docs/oracle/_category_.json deleted file mode 100644 index 6126258..0000000 --- a/website/docs/oracle/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "label": "Oracles", - "position": 20, - "collapsible": true -} diff --git a/website/docs/oracle/architecture.mdx b/website/docs/oracle/architecture.mdx deleted file mode 100644 index 7a13ad3..0000000 --- a/website/docs/oracle/architecture.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -sidebar_position: 1 -slug: . -title: Architecture ---- - -import OracleMetrics from "/idl/types/OracleMetrics.md"; - -# Oracle Architecture - -A Switchboard oracle is a Node.js container that sits between the Solana blockchain and the internet and waits for update requests from an oracle queue. An oracle queue assigns updates to oracles in a round robin fashion. - -An oracle account is a program derived address (PDA) between the oracle queue it’s being initialized for, as well as the oracles staking wallet. Before an oracle is granted permissions to use a queue, it must transfer the minimum stake amount, set by the queue, to its staking wallet. - -## Staking - -An oracle is required to transfer `queue.minStake` tokens to its staking wallet, `oracle.tokenAccount`, before being granted queue permissions. The minStake acts as an insurance policy to entice honest oracle behavior. - -## Heartbeat - -An oracle is required to heartbeat on-chain in order to join the queue and be assigned update request. An oracle must heartbeat before the queue's specified `queue.oracleTimeout` or it will be removed from the queue by the queue's garbage collector. - -## Metrics - -The oracle also tracks its performance, `oracle.metrics`. - - - -## Cost & Reward Estimations - -An oracle is required to submit an [aggregatorSaveResult](/idl/instructions/aggregatorSaveResult) transaction each time it updates a feed, which incurs a cost of 5000 lamports. This fee is set by the Solana network and is subject to change. - -$T_{perUpdate}=T_{queueReward} - 5000$ - -where, - -- `T` is the raw token amount in base units (_Ex: lamports or satoshis_) - -To estimate an oracles cost basis, you will need to know a queue's capacity (Oracles, Feeds, VRFs) and the average number of update request an oracle is assigned over a given time period. - -You will also need to factor in the oracle's heartbeat cost, which is 5000 lamports each. The number of heartbeats is dependent on its `queue.oracleTimeout`, which determines how often an oracle is required to heartbeat. - -## More Information - -- [/idl/accounts/OracleAccountData](/idl/accounts/OracleAccountData) diff --git a/website/docs/oracle/operator/_category_.json b/website/docs/oracle/operator/_category_.json deleted file mode 100644 index 8ed960e..0000000 --- a/website/docs/oracle/operator/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "label": "Oracle Operator", - "position": 10, - "collapsible": false -} diff --git a/website/docs/oracle/operator/docker.mdx b/website/docs/oracle/operator/docker.mdx deleted file mode 100644 index af68769..0000000 --- a/website/docs/oracle/operator/docker.mdx +++ /dev/null @@ -1,76 +0,0 @@ ---- -sidebar_position: 10 -title: Docker ---- - -# Docker - -You can run an oracle locally and assign it to your own oracle queue to test how your program may operate in production. Mainnet oracles should always be run in high availability environments with some set of monitoring capabilities. - -## Requirements - -- [Docker-Compose](https://docs.docker.com/compose/install/) or another container orchestration pipeline - -## Setup - -Create a docker-compose.yml file with the required environment variables, as defined in [Oracle Config](./#config). - -import Tabs from "@theme/Tabs"; -import TabItem from "@theme/TabItem"; - - - - -```yaml title="docker-compose.yml" -version: "3.3" -services: - switchboard: - image: "switchboardlabs/node:dev-v2-07-18-22" - network_mode: host - restart: always - secrets: - - PAYER_SECRETS - environment: - - LIVE=1 - - CLUSTER=devnet - - RPC_URL=${RPC_URL} - - ORACLE_KEY=${ORACLE_KEY} - - HEARTBEAT_INTERVAL=15 - volumes: - - ./configs.json:/configs.json -secrets: - PAYER_SECRETS: - file: /filesystem/path/to/keypair.json -``` - - - - -```yaml title="docker-compose.yml" -version: "3.3" -services: - switchboard: - image: "switchboardlabs/node:dev-v2-07-18-22 - network_mode: host - restart: always - environment: - - LIVE=1 - - CLUSTER=devnet - - RPC_URL=${RPC_URL} - - ORACLE_KEY=${ORACLE_KEY} - - HEARTBEAT_INTERVAL=15 - - GOOGLE_PAYER_SECRET_PATH=${GOOGLE_PAYER_SECRET_PATH} - - GCP_CONFIG_BUCKET=${GCP_CONFIG_BUCKET} -``` - - - - - -## Running - -Run the following command to start the container - -```bash -docker-compose up -``` diff --git a/website/docs/oracle/operator/gcp.mdx b/website/docs/oracle/operator/gcp.mdx deleted file mode 100644 index 2c62ceb..0000000 --- a/website/docs/oracle/operator/gcp.mdx +++ /dev/null @@ -1,543 +0,0 @@ ---- -sidebar_position: 20 -title: Google Cloud Platform ---- - -Before deploying the application, you must first provision a kubernetes cluster with the relevant credentials. There are no exotic requirements for this cluster and to date, it has be able to run on an auto pilot GKE cluster without issue. - -A Switchboard oracle can be run on any cloud provider who offers kubernetes services but this guide will currently be focused on Google Cloud. Feel free to contribute to our documentation if you are running an oracle on another provider. Here's some extra reading to learn more about kubernetes: - -- [What is Kubernetes?](https://cloud.google.com/learn/what-is-kubernetes) -- [Kubernetes Engine Quickstart](https://cloud.google.com/kubernetes-engine/docs/quickstart) - -## Requirements - -### Switchboard Helm Charts - -The repo below contains the kubernetes manifest to streamline the deployment. Clone the repo below to get started: - -```bash -git clone https://github.com/switchboard-xyz/switchboard-v2 -cd switchboard-v2/oracles/helm-deployment -``` - -### gcloud SDK - -You will need to install the google cloud SDK and have a Google Cloud Platform account - -- [Install gcloud SDK](https://cloud.google.com/sdk/docs/install) -- [Google Cloud Platform Registration](https://console.cloud.google.com/freetrial/signup/tos) - -Verify it installed correctly with the following command: - -```bash -gcloud --version -``` - -### Grafana Domain Name - -You will need a domain name to point your grafana instance at to monitor your oracle's metrics. During setup, you will create an external IP, which you will need to add to your domains DNS records. Finally we will provision a TLS certificate for your domain for enhanced security. - -## Environment - -You will need to collect the following environment variables to inject into the helm charts before deploying to Google Cloud Project. If you chose to use the automated deployment, an env file will be populated with most of these variables populated. - -
- - - GCP Environment Variables - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Env VariableDefinition
CLUSTER - - Required - -
- Type - String (devnet / mainnet-beta) -
- Description - Solana cluster you will be running an oracle on - (mainnet-beta/devnet) -
RPC_URL - - Required - -
- Type - URL -
- Description - Solana RPC URL that must be capable of supporting - websockets. The default RPC pools should be avoided at all cost as you - will quickly hit the rate limits and risk being slashed -
WS_URL - - Optional - -
- Type - URL -
- Default - RPC_URL -
- Description - Websocket URL to connect to a Solana RPC server. If - not provided, oracle will fallback to RPC_URL -
BACKUP_MAINNET_RPC - - Optional - -
- Type - URL -
- Default - https://api.mainnet-beta.solana.com -
- Description - Backup RPC URL in case of network congestion -
ORACLE_KEY - - Required - -
- Type - Public Key -
- Description - Public key of the oracle account that has been - granted permissions to use an oracle queue
-
HEARTBEAT_INTERVAL - - Optional - -
- Type - Number (seconds) -
- Default - 15 -
- Description - Seconds between oracle heartbeats. Queues have - different oracle heartbeat requirements. Recommended value is 15 -
SERVICE_ACCOUNT_BASE64 - - Required - -
- Type - Base64 encoded JSON file -
- Description - Base64 encoded JSON file containing the private key - for your service account that has access to your google secret keypair - and config bucket -
GOOGLE_PAYER_SECRET_PATH - - Required - -
- Type - GCP Resource Path -
- Description - Google cloud resource to manage your keypair - securely. -
GCP_CONFIG_BUCKET - - Optional - -
- Type - GCP Resource Path -
- Default - oracle-configs:configs.json -
- Description - Contains API keys for private API endpoints -
EXTERNAL_IP - - Required - -
- Type - IPv4 Address -
- Description - IP Address where your grafana instance will be - hosted to view metrics and oracle operating status -
GRAFANA_HOSTNAME - - Required - -
- Type - Fully Qualified Domain Name -
- Description - Hostname where your grafana instance will point to -
GRAFANA_ADMIN_PASSWORD - - Optional - -
- Type - String / Password -
- Default - Sbv2K8sPassword123@ -
- Description - Password to admin account that allows access to - your grafana instance. You can set this to whatever value you want. -
-
GRAFANA_TLS_CRT - - Required - -
- Type - Base64 encoded CRT file -
- Description - Base64 encoded string of your TLS certificate to - secure your grafana instance -
GRAFANA_TLS_KEY - - Required - -
- Type - Base64 encoded private key file -
- Description - Base64 encoded string of the private key used to - create your TLS certificate -
- -
- -## Setup - -The `oracles/helm-deployment` directory in the [Switchboard-V2 SDK](https://github.com/switchboard-xyz/switchboard-v2) contains a bash script to walk through the GCP setup and output the required variables to an env file. This script is provided as a convenience tool, you should understand all of the commands in the script before running. To automate the GCP setup, run the following command: - -```bash -./setup-gcloud.sh PROJECTNAME - -# ./setup-gcloud.sh Sbv2-Devnet-Oracle -``` - -- `PROJECTNAME` will be the name of your GCP project and must contain no spaces or special characters - -The script will walk-through the google cloud setup, create your gcp project, add your oracle keypair as a secret, create a service account and give it access to your keypair, then spin up a kubernetes cluster. The script will periodically prompt you for more information. - -Upon completion you will have a file `PROJECTNAME.env` containing: - -- PROJECT -- DEFAULT_REGION -- DEFAULT_ZONE -- CLUSTER_NAME -- EXTERNAL_IP -- SECRET_NAME -- GOOGLE_PAYER_SECRET_PATH -- GCP_CONFIG_BUCKET -- SERVICE_ACCOUNT_EMAIL -- SERVICE_ACCOUNT_BASE64 - -You will need to manually add: - -- CLUSTER -- RPC_URL -- BACKUP_MAINNET_RPC -- ORACLE_KEY -- GRAFANA_HOSTNAME -- GRAFANA_ADMIN_PASSWORD -- GRAFANA_TLS_CRT -- GRAFANA_TLS_KEY - -
- Manual GCP Setup Steps - -Login - -Login to your google cloud account: - -```bash -gcloud auth login -``` - -Project - -Create a new project - -```bash -gcloud projects create switchboard-oracle-cluster --name="Switchboard Oracle" -``` - -Set it as your default project - -```bash -gcloud config set project switchboard-oracle-cluster -``` - -[Google - gcloud projects create](https://cloud.google.com/sdk/gcloud/reference/projects/create) - -gCloud Config - -Set the default zone using [list of regions and zones](https://cloud.google.com/compute/docs/regions-zones#available) - -```bash -gcloud config set compute/zone us-west1-a # replace with your closest region -``` - -Set the default region using [list of regions and zones](https://cloud.google.com/compute/docs/regions-zones#available) - -```bash -gcloud config set compute/region us-west1 # replace with your closest region -``` - -[Google - Set default settings for the gcloud tool](https://cloud.google.com/kubernetes-engine/docs/quickstart#autopilot) - -Billing - -You will need to enable billing for the project before enabling any services: - -- https://console.cloud.google.com/billing/enable?project=switchboard-oracle-cluster - -[Google - APIs and billing](https://support.google.com/googleapi/answer/6158867?hl=en) - -Services - -Enable the relevant services: - -```bash -gcloud services enable compute.googleapis.com -gcloud services enable container.googleapis.com -gcloud services enable iamcredentials.googleapis.com -gcloud services enable secretmanager.googleapis.com -``` - -External IP - -You will need to reserve a static IP address for your grafana instance - -```bash -gcloud compute addresses create load-balancer --project=switchboard-oracle-cluster -gcloud compute addresses list -# NAME ADDRESS/RANGE -# load-balancer 123.123.123.123 ($LOADBALANCER_IP) -``` - -This will be your `$EXTERNAL_IP` - -[Google - Reserve a new static external IP address](https://cloud.google.com/compute/docs/ip-addresses/reserve-static-external-ip-address#reserve_new_static) - -Service Account - -You will need to create a service account to access our resources. - -```bash -gcloud iam service-accounts create svc-account --display-name="Oracle Service Account" -gcloud iam service-accounts list -``` - -Now save it to our filesystem - -```bash -gcloud iam service-accounts keys create secrets/svc-account.json --iam-account=svc-account@switchboard-oracle-cluster.iam.gserviceaccount.com -``` - -Now convert the json file to a base64 string to store in `$SERVICE_ACCOUNT_BASE64` - -```bash -base64 secrets/svc-account.json -``` - -[Google - Creating service account keys](https://cloud.google.com/iam/docs/creating-managing-service-account-keys) - -OraclePayerSecret - -You will need to store your solana keypair in Google Secret Manager for enhanced security. If you are using another keypair replace `--data-file` with your relevant path. - -```bash -gcloud secrets create oracle-payer-secret --replication-policy="automatic" --data-file=secrets/authority-keypair.json -``` - -You can view your `$GOOGLE_PAYER_SECRET_PATH` in the [GCP console](https://console.cloud.google.com/security/secret-manager/secret/oracle-payer-secret/versions&project=switchboard-oracle-cluster) or by running the command - -```bash -echo "$(gcloud secrets list --uri --filter=oracle-payer-secret | \ -cut -c41- | tr -d '\n')/versions/latest" -``` - -[Google - Creating a secret](https://cloud.google.com/secret-manager/docs/creating-and-accessing-secrets) - -Storage Bucket - -You can create a GCP storage bucket to store API keys. The following command will create a new storage bucket and give your service account permissions to read from it. You will need to use a unique name as storage bucket names are global to the entire GCP platform. - -```bash -gsutil mb -p switchboard-oracle-cluster -l us-west1 gs://switchboard-oracle-cluster-bucket -gsutil iam ch serviceAccount:svc-account@switchboard-oracle-cluster.iam.gserviceaccount.com:legacyBucketReader gs://switchboard-oracle-cluster-bucket -gsutil ls -# gs://switchboard-oracle-cluster-bucket/ -``` - -You can view your `$GCP_CONFIG_BUCKET` by running the command - -```bash -echo "$(gsutil ls | grep 'switchboard-oracle-cluster-bucket' | \ -sed -e 's/.*gs:\/\/\(.*\)\/.*/\1/' ):configs.json" -# switchboard-oracle-cluster-bucket:configs.json -``` - -[Google - Create storage buckets](https://cloud.google.com/storage/docs/creating-buckets#storage-create-bucket-gsutil) - -Kubernetes Cluster - -Finally you will need to create a new kubernetes cluster - -```bash -gcloud container clusters create-auto switchboard-cluster \ ---service-account=svc-account@switchboard-oracle-cluster.iam.gserviceaccount.com \ ---region us-west1 -``` - -then connect to it and store your credentials in your gCloud config - -```bash -gcloud container clusters get-credentials switchboard-cluster \ ---project switchboard-oracle-cluster \ ---region us-west1 -``` - -:::note -Remember to update the region to the same region you used for your static IP. -::: - -[Google - Create a GKE cluster](https://cloud.google.com/kubernetes-engine/docs/quickstart#autopilot) - -Wrapping Up - -You should now have an `PROJECTNAME.env` file containing - -- EXTERNAL_IP -- GOOGLE_PAYER_SECRET_PATH -- GCP_CONFIG_BUCKET -- SERVICE_ACCOUNT_BASE64 - -You will need to manually add: - -- CLUSTER -- RPC_URL -- BACKUP_MAINNET_RPC -- ORACLE_KEY -- GRAFANA_HOSTNAME -- GRAFANA_ADMIN_PASSWORD -- GRAFANA_TLS_CRT -- GRAFANA_TLS_KEY - -
- -## Grafana - -Grafana is a visualization tool to view your cluster's metrics. While this step is optional, it is recommended if you have no other monitoring or metric suite in place. - -### Domain Name - -You will need a domain name to host your grafana instance. In your domain management tool, add a DNS A record with a value of `$EXTERNAL_IP`. - -This value will be your `$GRAFANA_HOSTNAME` (i.e. grafana.switchboard.com) and will be used to provision a TLS certificate. - -### TLS Certificate - -The following steps will walk you through provisioning a TLS certificate for your domain from letsencrypt. The [helm-manifest repo](https://github.com/switchboard-xyz/helm-manifests) contains a script to walk through creating the neccessary keys and certificate signing request (CSR). - -```bash -./setup-grafana.sh PROJECTNAME DOMAIN EMAIL -``` - -- PROJECTNAME is the name of the env file to store variables -- DOMAIN is your $GRAFANA_HOSTNAME from above -- EMAIL is the email you will use for your certificate signing request - -When the necessary keys and CSR are generated, head over to [gethttpsforfree.com](https://gethttpsforfree.com.com) and walk through their steps to sign your certificate. Save the final output to the filename given by the script, then rerun the script. The script will save the env variables to `PROJECTNAME.env` and also output them to the console. - -Your `PROJECTNAME.env` file should now contain - -- GRAFANA_HOSTNAME -- GRAFANA_ADMIN_PASSWORD (You can set this to whatever value you want) -- GRAFANA_TLS_CRT -- GRAFANA_TLS_KEY - -## Deploy - -After completing the steps on this page you should have a `PROJECTNAME.env` file with each of the required variables defined. See [Google Cloud / Environment](#environment) for a list of all required variables that must be set. - -Run the following command to build the helm charts with your environment variables injected into the manifests: - -```bash -./build-helm.sh PROJECTNAME -``` - -### Deploy Helm Charts - -Run the command - -```bash -./deploy-helm.sh PROJECTNAME -``` - -When complete, you should see your cluster running in the Google Cloud Console. - -[Google - Observing your GKE clusters](https://cloud.google.com/stackdriver/docs/solutions/gke/observing) - -### Update - -If necessary, rebuild the charts to update any environment variables: - -```bash -./build-helm.sh PROJECTNAME -``` - -then redeploy the helm charts: - -```bash -./deploy-helm.sh PROJECTNAME -``` diff --git a/website/docs/oracle/operator/monitoring.mdx b/website/docs/oracle/operator/monitoring.mdx deleted file mode 100644 index 4ece216..0000000 --- a/website/docs/oracle/operator/monitoring.mdx +++ /dev/null @@ -1,86 +0,0 @@ ---- -sidebar_position: 30 -title: Monitoring ---- - -## Metrics - -The oracle uses open telemetry for emitting metrics. -As such, at the time of this writing, the oracle supports prometheus (as well as any wire-compatible solution like cortex, thanos or victoria metrics) and GCP monitoring. -This can be configured via the `$METRICS_EXPORTER` environmental variable ('prometheus' and 'gcp') - -If GCP monitoring is used, all data collection and visualization is handled by the platform although users are advised to closely watch billing. - -For users that are either not running on GCP or want a more cost effective solution, grafana and victoria metrics (prometheus compatible scraping+storage) manifests are provided in the kubernetes-manifests repo. - -
- List of metrics - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Metric NameDescription
switchboard_aggregator_variance - the ratio between the largest and smallest value from all aggregated - responses for a given job -
switchboard_heartbeat_failure_totala counter for every time there is a heartbeat failure
switchboard_job_failure_totala counter for every time there is a job failure
switchboard_job_success_total - a counter for every time there is a successful completion of a job -
switchboard_job_posting_totala counter for every time there is a job posting
switchboard_log_agea value recorder for the age of the job logs when processed
switchboard_node_aggregation_insufficient_responses_total - a counter for every time there is an insufficient number of aggregated - responses for a job -
switchboard_node_balance - each oracle will report its balance with a label indicating the public - key -
switchboard_save_result_failure_total - a counter for the number of times an oracle is unable to commit a - transaction to the blockchain -
scheduler_node_balancemost recent balance of the scheduler wallet
-
- -## Alerts - -Pagerduty allows you to get real time alerts on your oracle. You will need to sign up for an account and get an API key for access. - -`$PAGERDUTY_EVENT_KEY` is an optional environment variable to help you manage your cluster. You may wish to ignore this variable if you are comfortable with your own monitoring solutions - -- [Pagerduty - Generating API Keys](https://support.pagerduty.com/docs/generating-api-keys#section-events-api-keys) diff --git a/website/docs/oracle/operator/requirements.mdx b/website/docs/oracle/operator/requirements.mdx deleted file mode 100644 index 06be524..0000000 --- a/website/docs/oracle/operator/requirements.mdx +++ /dev/null @@ -1,299 +0,0 @@ ---- -sidebar_position: 1 -slug: . -title: Requirements ---- - -# Background - -A Switchboard oracle is a Node.js container that sits between the Solana blockchain and the internet and waits for update requests from its assigned oracle queue. - -You can find the latest Switchboard oracle image on [DockerHub](https://hub.docker.com/r/switchboardlabs/node/tags). - -## Hardware Requirements - -A Switchboard oracle should be hosted in a highly available environment with some level of redundancy and fail over to prevent outages, although oracles are not deducted for being offline. - -At the very minimum a node should have: - -- 4gb RAM -- 3.0 Ghz CPU -- 100+ Mbps connection - -## RPC Endpoint - -A Switchboard oracle should have a reliable RPC endpoint with no rate limiting in order to respond in a timely manner. RPC providers will need to have `--full-rpc-api` enabled in their validator config, along with the ability to support fetching 100 program accounts in a single getProgramAccounts request. - -Switchboard recommends the following RPC providers: - -- RPC Pool -- GenesysGo -- Syndica - -## Environment Variables - -```bash env title=".env" -# Solana Config -CLUSTER="" -RPC_URL="" -WS_URL="" -BACKUP_MAINNET_RPC="" -# Oracle Config -ORACLE_KEY="" -HEARTBEAT_INTERVAL=15 -GCP_CONFIG_BUCKET="" -UNWRAP_STAKE_THRESHOLD="" -# Keypair Config -PAYER_SECRET_PATH="" -PAYER_SECRETS="" -GOOGLE_PAYER_SECRET_PATH="" -# Monitoring Config -METRICS_EXPORTER -PAGERDUTY_EVENT_KEY="" -VERBOSE=1 -``` - -### Solana Config - - - - - - - - - - - - - - - - - - - - - - - - - - -
Env VariableDefinition
CLUSTER - - Required - -
- Type - String (devnet / mainnet-beta) -
- Description - Solana cluster you will be running an oracle on - (mainnet-beta/devnet) -
RPC_URL - - Required - -
- Type - URL -
- Description - Solana RPC URL that must be capable of supporting - websockets. The default RPC pools should be avoided at all cost as you - will quickly hit the rate limits and risk being slashed -
WS_URL - - Optional - -
- Type - URL -
- Default - RPC_URL -
- Description - Websocket URL to connect to a Solana RPC server. If - not provided, oracle will fallback to RPC_URL -
BACKUP_MAINNET_RPC - - Optional - -
- Type - URL -
- Default - https://api.mainnet-beta.solana.com -
- Description - Backup RPC URL in case of network congestion -
- -### Oracle Config - - - - - - - - - - - - - - - - - - - - - - - - - - -
Env VariableDefinition
ORACLE_KEY - - Required - -
- Type - Public Key -
- Description - Public key of the oracle account that has been - granted permissions to use an oracle queue
-
HEARTBEAT_INTERVAL - - Optional - -
- Type - Number (seconds) -
- Default - 30 -
- Description - Seconds between oracle heartbeats. Queues have - different oracle heartbeat requirements. Recommended value is 15 -
GCP_CONFIG_BUCKET - - Optional - -
- Type - GCP Resource Path -
- Default - Looks for configs.json in the current working - directory. If not found, no config is loaded. -
- Description - Contains API keys for private API endpoints -
UNWRAP_STAKE_THRESHOLD - - Optional - -
- Type - Number (SOL amount, Ex. 1.55) -
- Default - 0, disabled. -
- Description - The Solana balance amount to trigger an unwrap stake action. When an oracle's Solana balance falls below the set threshold, the node will automatically unwrap funds from the oracle's staking wallet, leaving at least 0.1 wSOL or 10% more than the queue's minimum stake requirement. -
- -### Keypair Config - -You must provide one of the following environment variables, which is the same keypair that is the authority for the given `$ORACLE_KEY` and will pay for any on-chain transactions. - - - - - - - - - - - - - - - - - - - - - - -
Env VariableDefinition
PAYER_SECRET_PATH - Type - Filesystem Path -
- Description - Local filesystem path to keypair file that will pay - for on-chain transactions and is the authority for the oracle -
PAYER_SECRETS - Type - Docker Secret -
- Description - Docker Secret path to keypair file that will pay - for on-chain transactions and is the authority for the oracle -
GOOGLE_PAYER_SECRET_PATH - Type - GCP Resource Path -
- Description - Google cloud resource to manage your keypair - securely. -
- -### Monitoring Config - - - - - - - - - - - - - - - - - - - - - - -
Env VariableDefinition
METRICS_EXPORTER - - Optional - -
- Type - prometheus / gcp / opentelemetry-collector* -
- Default - prometheus -
- Description - Dictates which metric suite to aggregate resource - metrics, as defined in: -
- Oracle - Monitoring -
- *opentelemetry-collector only supports the default endpoint - localhost:55681/v1/metric -
PAGERDUTY_EVENT_KEY - - Optional - -
- Type - String -
- Default - Paging disabled -
- Description - Token provided by pagerduty for sending pages about - various alerts. -
- Oracle - Alerts -
VERBOSE - - Optional - -
- Type - Flag (0 or 1) -
- Default - 0, normal logging -
- Description - Set to 1 to increase the level of logging -
diff --git a/website/docs/program.mdx b/website/docs/program.mdx deleted file mode 100644 index dfcef73..0000000 --- a/website/docs/program.mdx +++ /dev/null @@ -1,209 +0,0 @@ ---- -sidebar_position: 5 -id: program -slug: /program ---- - -import MarkdownImage from "/src/components/MarkdownImage"; -import { Box, Typography, Grid } from "@mui/material"; -import Link from "@docusaurus/Link"; -import ProgramStateAccountData from "/idl/accounts/SbState.md"; -import PublicKeyButton from "/src/components/PublicKeyButton"; - -# Program - -## Program State Account - - - -
- - The Program State Account is the top level account that is used to connect - independent oracle queues. - -
- - The Switchboard V2 program can support many oracle queue's, each acting as - independent networks with their own oracles, configuration, and security - model. - -
-
- - - -
- - - -## Deployment - -Below are the public keys associated with the Switchboard V2 deployment. - -### Mainnet-Beta - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Mainnet-Beta
- Program ID - - -
- Upgrade Authority - - -
- Program State Account - - -
- Program Authority - - -
- Mint - - -
- DAO Mint - - -
- tokenVault - - -
- idlAddress - - -
- programDataAddress - - -
- -### Devnet - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Devnet
- Program ID - - -
- Upgrade Authority - - -
- Program State Account - - -
- Program Authority - - -
- Mint - - -
- DAO Mint - - -
- tokenVault - - -
- idlAddress - - -
- programDataAddress - - -
diff --git a/website/docs/queue/_category_.json b/website/docs/queue/_category_.json deleted file mode 100644 index a28b265..0000000 --- a/website/docs/queue/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "label": "Oracle Queue", - "position": 10, - "collapsible": true -} diff --git a/website/docs/queue/architecture.mdx b/website/docs/queue/architecture.mdx deleted file mode 100644 index 1a5aece..0000000 --- a/website/docs/queue/architecture.mdx +++ /dev/null @@ -1,147 +0,0 @@ ---- -sidebar_position: 1 -slug: . -title: Architecture ---- - -import { Box, Typography, Grid } from "@mui/material"; -import MarkdownImage from "/src/components/MarkdownImage"; -import SwitchboardPermission from "/idl/types/SwitchboardPermission.md"; - -# Oracle Queue Architecture - -An oracle queue is an independent realm of oracles, responsible for allocating oracle resources for update requests from data feeds, randomness, or buffer relayers. Oracle queue's act as an aggregator for on-chain consumers looking to publish data on-chain by specifying an upfront reward a requester is required to pay when a new update is requested by an oracle. Oracles act as an off-chain compute resource that can be utilized by on-chain programs needing a decentralized way to source data. - -Each oracle queue is independent and maintain their own configurations, which dictates its degree of security. Queue's can require update requesters to be pre-approved to use a queues resources or allow any requester access to a queue. Queue's also specify a minimum stake oracles must maintain in their escrow wallet before joining a queue, which acts as a deposit to incentivize honest oracle behavior. - -Oracle queue's currently support update requests from the following resource types: - -| Resource Type | Description | -| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Data Feeds** | Utilize a batch of oracles to resolve a data point from a variety of source and determine the final result as the median of oracle responses
_Can be a price feed, sport result, or any data point found on the internet_ | -| **Randomness** | Utilize an oracle to publish and verify a Verifiable Randomness Function on-chain.
_Can be used for fair NFT launches, decentralized lottery, or any random assignment_ | -| **Buffer Relayer** | Utilize an oracle to relay and publish a buffer on-chain
_Can be used by programs needing a way to quickly source data on-chain that may not need as many security guarantees as a price feed _ | - -## Configuration - - - -
    -
  • - Oracle Queue: Contains the Oracle Queue's configuration - parameters that influence its security model. -
  • -
    -
  • - Oracle Queue Buffer: Stores the current list of oracles actively - heartbeating on-chain. -
  • -
    -
  • - Oracle: Off-chain resource used by a queue to fulfill update - request. -
  • -
    -
  • - Crank: Optional, Crank Account that permits data feeds to join - and request periodic updates. -
  • -
    -
  • - Crank Buffer: Stores the list of data feeds on a crank along with - their next allowed update time. -
  • -
-
- - - -
- -
- -:::tip - -See [/idl/accounts/OracleQueueAccountData](/idl/accounts/OracleQueueAccountData) for the full list of an OracleQueueAccount's configuration parameters. - -::: - -## Oracle Queue - -When creating a queue, an OracleQueueBuffer account must also be initialized with a size of 8 Bytes + (32 Bytes × `queue.maxSize`), where `queue.maxSize` is the maximum number of oracles the queue can support. The OracleQueueBuffer account `queue.dataBuffer` stores a list of oracle public keys in a round robin fashion, using `queue.currIdx` to track its position on the queue for allocating resource update request. Once a buffer is full, oracles must be removed before new oracles can join the network. An oracle can be assigned to many update request simultaneously but must continuously heartbeat on-chain to signal readiness. - -An oracle with **PermitOracleHeartbeat** permissions _MUST_ periodically heartbeat on the queue to signal readiness, which adds the oracle to the queue and allows it to be assigned resource update requests. Oracle positions are periodically swapped in the OracleQueueBuffer account to mitigate oracles being assigned the same update requests on each iteration of the queue. - -The queue uses `queue.gcIdx` to track its garbage collection index. When an oracle heartbeats on-chain, it passes the oracle account at index `queue.gcIdx`. If the oracle account has failed to heartbeat before `queue.oracleTimeout`, it is removed from the queue until its next successful heartbeat and will no longer be assigned resource update requests. - -## Access Control - -Oracle queue resources, such as oracles, aggregators, VRF accounts, or buffer relayer accounts, _MUST_ have an associated [PermissionAccount](/idl/accounts/PermissionAccountData) initialized before interacting with a queue. Permissions are granted by `queue.authority`, which could be a DAO controlled account to allow network participants to vote on new entrants. - -Oracles _MUST_ have **PermitOracleHeartbeat** permissions before heartbeating on a queue. This is to prevent a malicious actor from spinning up a plethora of oracles until it obtains the super majority, at which point it could misreport data feed results and cause honest oracles to be slashed. - -See the table below for the minimum required permissions for a resource based on the queues settings: - -| Queue Setting | False | True | -| ---------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------- | -| `unpermissionedFeedsEnabled` | Aggregators & Buffer Relayers _MUST_ have **PermitOracleQueueUsage** permissions before requesting an update | Aggregators & Buffer Relayers require no explicit permissions before requesting an update | -| `unpermissionedVrfEnabled` | VRF Accounts _MUST_ have **PermitVrfRequests** permissions before requesting an update | VRF Accounts require no explicit permissions before requesting an update | -| `enableBufferRelayers` | Buffer Relayers are _NOT_ permitted to request updates | Buffer Relayers are permitted to request updates | - - - -## Crank - -A queue can choose to create one or many cranks. A crank is a scheduling mechanism that allows data feeds to request periodic updates. A crank can be turned by anyone, and if successful, the crank turner will be rewarded for jump starting the system. - -A data feed is only permitted to join a crank if it has sufficient permissions (as detailed above) and the crank has available capacity. Data feeds on a crank are ordered by their next available update time with some level of jitter to mitigate oracles being assigned to the same update request upon each iteration of the queue, which makes them susceptible to a malicous oracle. The maximum update interval for a feed on a crank is based on its `aggregator.minUpdateDelaySeconds` and can be calculated by: - -$I_{Max} (seconds) = I_{minUpdateDelaySeconds} + [15\quad\% \quad I_{minUpdateDelaySeconds}]$ - -## Economic Security - -An oracle queue uses economic incentives to entice oracles to act honestly, which dictate a queue's security model. - -### Stake - -The queue's `queue.minStake` is the raw token amount in the token mints base unit (_Ex: lamports or satoshis_) required by an oracle to heartbeat on a queue. If an oracle's staking wallet falls below the minStake requirement, it is removed from the queue. - -DeFi protocols with a significant Total Value Locked (TVL) should require oracles with a higher minimum stake to fulfill their update request. Oracles with a higher degree of _skin-in-the-game_ have a greater incentive to respond honestly. - -### Reward - -The queue's specified `queue.reward` is the number of tokens an oracle or crank turner receives for successfully completing an on-chain action. For a crank turner this is turning the crank and invoking a data feed update. For an oracle this is responding to an update request within the reliable margin from the accepted result. - -Queues should reward oracles enough such that the economic incentive over the lifecycle of the feed exceeds the opportunity cost to attack a protocol consuming the feed. - -### Slashing - -A queue may set `queue.slashingEnabled` to true in order to dissuade oracles from responding to update request outside a set margin of error. - -A queue's `queue.varianceToleranceMultiplier` determines how many standard deviations an oracle must respond within before being slashed and forfeiting a portion of their stake. [Defaults to 2 std deviations] - -DeFi protocols with a significant TVL should require their feeds to be on a queue with slashing enabled. - -## Governance - -An oracle queue can be governed by its network participants to control the various queue configuration parameters, such as: - -- `queue.minStake` - require a higher up-front cost for oracles to entice honest behavior -- `queue.reward` - control the oracle reward payout for successfully fulfilling update request -- `queue.slashingEnabled` - to disincentivize malicious oracle behavior -- Permit new oracles to join the network - -## More Information - -- [/idl/accounts/OracleQueueAccountData](/idl/accounts/OracleQueueAccountData) -- [/idl/accounts/OracleQueueBuffer](/idl/accounts/OracleQueueBuffer) diff --git a/website/docs/queue/private-queues.mdx b/website/docs/queue/private-queues.mdx deleted file mode 100644 index 123799e..0000000 --- a/website/docs/queue/private-queues.mdx +++ /dev/null @@ -1,375 +0,0 @@ ---- -sidebar_position: 10 -title: Private Queues ---- - -A private queue is any Oracle Queue not controlled by the Switchboard DAO. - -Switchboard is architected to route off-chain data to an on-chain account. A publisher is responsible for building the job definition, which defines the task(s) the oracles must perform to fetch and transform external data. Sometimes a publisher may wish to bring private data on-chain using an API key which poses a set of challenges. In order for the oracle to retrieve the data, they need access to the publisher's API key. Blockchains are public so there is no easy way to conceal the API key on-chain. - -Switchboard provides the ability to create your own queue with your own set of oracles, allowing the oracles access to your API key so they can resolve the private endpoints. - -## Variable Expansion - -Oracles can be provided a `configs.json` file to store various configurations needed to execute job definitions. If an oracle encounters a job definition with a variable, it will parse the `configs.json` and embed the value in the job definition. API keys should be specified in the config under the Job Account public key to prevent a malicous feed from leaking an API key. - -```json title="configs.json" -{ - "jobVariables": { - // Pubkey of the Job account for which this variable expansion applies - "HtB62K71H49RJbATYpmB6UCMBXLK6G3Q5JtGveTMR8Mt": { - "VARIABLE_NAME": "abc123" - }, - // Global variable expansion that applies to any Job account. SEE CAUTION BELOW - "*": { - "GLOBAL_VARIABLE_NAME": "abc123" - } - } -} -``` - -:::danger - -**_Wildcard variables should only be used for testing purposes and never in production._** - -Private queue's should **_ALWAYS_** have `unpermissionedFeedsEnabled` set to false. Allowing unpermitted feeds could result in a malicious actor creating a job definition that leaks your sensitive API keys. - -::: - -## Example - -We'll be using [commodities-api](https://www.commodities-api.com) to resolve our data for this example. You will need to signup for an account to get a `COMMODITIES_API_KEY`. - -### Create a Queue - -First, we will need to create our own queue. The following command will create a queue with a single oracle and crank. - -```bash -sbv2 queue:create \ - --name "Private Queue" \ - --keypair ../payer-keypair.json \ - --authority ../payer-keypair.json \ - --numOracles 1 \ - --reward 0 \ - --outputFile "Private_Queue.json" -``` - -### Start Oracle - -Create a docker-compose file, replacing `ORACLE_KEY`, `RPC_URL`, and `PAYER_KEYPAIR` with the appropriate values. - -```yml title="docker-compose.yml" -version: "3.3" -services: - oracle: - image: "switchboardlabs/node:dev-v2-07-18-22" - network_mode: host - restart: always - secrets: - - PAYER_SECRETS - environment: - - LIVE=1 - - CLUSTER=devnet - - HEARTBEAT_INTERVAL=30 # Seconds - - ORACLE_KEY=${ORACLE_KEY} - - RPC_URL=${RPC_URL} - volumes: - - ./configs.json:/configs.json -secrets: - PAYER_SECRETS: - file: ${PAYER_KEYPAIR} -``` - -We need to embed the commodities-api key in our oracle's configs.json file. - -```json title="configs.json" -{ - "jobVariables": { - // Pubkey of the OracleJob account for which this variable expansion applies or *. - "*": { - "COMMODITIES_API_KEY": "YOUR_API_KEY_HERE" - } - } -} -``` - -Start the oracle - -```bash -docker-compose up -``` - -### Create WHEAT Aggregator - -Looking at their docs, we'll need to fetch data from the following endpoint and take the inverse. The aggregator definition will look like this: - -```json title="Wheat.json" -{ - "name": "WHEAT", - "metadata": "", - "oracleRequestBatchSize": 1, - "minOracleResults": 1, - "minJobResults": 1, - "minUpdateDelaySeconds": 900, - "jobs": [ - { - "name": "commodities-api WHEAT", - "tasks": [ - { - "httpTask": { - "url": "https://www.commodities-api.com/api/latest?access_key=${COMMODITIES_API_KEY}&base=USD&symbols=WHEAT" - } - }, - { - "jsonParseTask": { - "path": "$.data.rates.WHEAT" - } - }, - { - "powTask": { - "scalar": -1 - } - } - ] - } - ] -} -``` - -Now we need to create an aggregator and add this job definition to it. - -```bash -sbv2 aggregator:create:json wheat.json \ - --keypair ../payer-keypair.json \ - --queueKey QUEUE_KEY_OUTPUTTED_ABOVE \ - --outputFile Wheat_Aggregator.json -``` - -Now we can request an update from our running oracle - -```bash -sbv2 aggregator:update AGGREGATORKEY --keypair PAYERKEYPAIR -``` - -We should see the oracle respond to the job and update the on-chain value - -```bash -sbv2 aggregator:print AGGREGATORKEY -``` - -### Other Aggregator Definitions - -
- - - -#### Crude - - - -```json title="Crude.json" -{ - "name": "Crude WTIOIL", - "metadata": "", - "oracleRequestBatchSize": 1, - "minOracleResults": 1, - "minJobResults": 1, - "minUpdateDelaySeconds": 900, - "jobs": [ - { - "name": "commodities-api WTIOIL", - "tasks": [ - { - "httpTask": { - "url": "https://www.commodities-api.com/api/latest?access_key=${COMMODITIES_API_KEY}&base=USD&symbols=WTIOIL" - } - }, - { - "jsonParseTask": { - "path": "$.data.rates.WTIOIL" - } - }, - { - "powTask": { - "scalar": -1 - } - } - ] - } - ] -} -``` - -
- -
- - - -#### Gold - - - -```json title="Gold.json" -{ - "name": "Gold", - "metadata": "", - "oracleRequestBatchSize": 1, - "minOracleResults": 1, - "minJobResults": 1, - "minUpdateDelaySeconds": 900, - "jobs": [ - { - "name": "commodities-api XAU", - "tasks": [ - { - "httpTask": { - "url": "https://www.commodities-api.com/api/latest?access_key=${COMMODITIES_API_KEY}&base=USD&symbols=XAU" - } - }, - { - "jsonParseTask": { - "path": "$.data.rates.XAU" - } - }, - { - "powTask": { - "scalar": -1 - } - } - ] - } - ] -} -``` - -
- -
- - - -#### Silver - - - -```json title="Silver.json" -{ - "name": "Silver", - "metadata": "", - "oracleRequestBatchSize": 1, - "minOracleResults": 1, - "minJobResults": 1, - "minUpdateDelaySeconds": 900, - "jobs": [ - { - "name": "commodities-api XAG", - "tasks": [ - { - "httpTask": { - "url": "https://www.commodities-api.com/api/latest?access_key=${COMMODITIES_API_KEY}&base=USD&symbols=XAG" - } - }, - { - "jsonParseTask": { - "path": "$.data.rates.XAG" - } - }, - { - "powTask": { - "scalar": -1 - } - } - ] - } - ] -} -``` - -
- -
- - - -#### Nickel - - - -```json title="Nickel.json" -{ - "name": "Nickel", - "metadata": "", - "oracleRequestBatchSize": 1, - "minOracleResults": 1, - "minJobResults": 1, - "minUpdateDelaySeconds": 900, - "jobs": [ - { - "name": "commodities-api NI", - "tasks": [ - { - "httpTask": { - "url": "https://www.commodities-api.com/api/latest?access_key=${COMMODITIES_API_KEY}&base=USD&symbols=NI" - } - }, - { - "jsonParseTask": { - "path": "$.data.rates.NI" - } - }, - { - "powTask": { - "scalar": -1 - } - } - ] - } - ] -} -``` - -
- -
- - - -#### Coffee - - - -```json title="Coffee.json" -{ - "name": "Coffee", - "metadata": "", - "oracleRequestBatchSize": 1, - "minOracleResults": 1, - "minJobResults": 1, - "minUpdateDelaySeconds": 900, - "jobs": [ - { - "name": "commodities-api COFFEE", - "tasks": [ - { - "httpTask": { - "url": "https://www.commodities-api.com/api/latest?access_key=${COMMODITIES_API_KEY}&base=USD&symbols=COFFEE" - } - }, - { - "jsonParseTask": { - "path": "$.data.rates.COFFEE" - } - }, - { - "powTask": { - "scalar": -1 - } - } - ] - } - ] -} -``` - -
diff --git a/website/docs/randomness/_category_.json b/website/docs/randomness/_category_.json deleted file mode 100644 index 5135793..0000000 --- a/website/docs/randomness/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "label": "Randomness", - "position": 40, - "collapsible": true -} diff --git a/website/docs/randomness/architecture.mdx b/website/docs/randomness/architecture.mdx deleted file mode 100644 index 453f90f..0000000 --- a/website/docs/randomness/architecture.mdx +++ /dev/null @@ -1,114 +0,0 @@ ---- -sidebar_position: 1 -slug: . -title: Architecture -description: Learn how to use Switchboard's Verifiable Random Functions -keywords: [Switchboard, Solana, VRF, randomness, verifiable, proof] ---- - -# Randomness Architecture - -import MarkdownImage from "/src/components/MarkdownImage"; -import RandomnessInstructions from "/idl/_randomness_instructions.mdx"; -import { - Typography, - IconButton, - Box, - CardActionArea, - Card, - CardContent, -} from "@mui/material"; -import Link from "@docusaurus/Link"; -import GitHubIcon from "@mui/icons-material/GitHub"; -import VrfAccountData from "/idl/accounts/VrfAccountData.md"; -import VrfInit from "/idl/instructions/vrfInit.md"; -import vrfProveAndVerify from "/idl/instructions/vrfProveAndVerify.md"; -import VrfRequestRandomness from "/idl/instructions/vrfRequestRandomness.md"; - -import CallbackZC from "/idl/types/CallbackZC.md"; - -:::caution - -While Switchboard V2's oracle network is fully audited, the VRF implementation is currently unaudited software. Please use at your own risk. - -::: - -While true-randomness on some computers can be made possible via atmospheric noise and special hardware modules, such solutions on blockchains are not possible since they are virtual machines without physical hardware. Thus, pseudorandom-functions are needed to close this gap. **_You should be skeptical of teams claiming they offer true randomness._** - -Random numbers are crucial for many DeFi applications whether its fair NFT launches, gambling, gaming, or assigning user roles in a DAO. Without an element of randomness, each of the above could be exploited and the final outcome predicted. - -A Verifiable Random Function (VRF) is a public-key pseudorandom function that provides proofs that its outputs were calculated correctly. This means we can use a cryptographic keypair to generate a random number with a proof, which can then be validated by anyone to ensure the value was calculated correctly without the possibility of leaking the producer’s secret key. You can read more about VRF from the Algorand team, whose founder was one of the authors on the original VRF paper - [Algorand Releases First Open Source Code of Verifiable Random Functions](https://medium.com/algorand/algorand-releases-first-open-source-code-of-verifiable-random-function-93c2960abd61). - -Switchboard's VRF implementation uses the oracle authority secret key to publish the VRF proof on-chain. The on-chain proof verification is very computationally expensive and requires 276 instructions on-chain to fully verify. Once the proof is submitted on-chain anyone can turn the VRF crank to produce the pseduorandom result, although for simplicity and speed the Switchboard oracle that submitted the proof also submits the verification instructions. - -The final proof verification instruction invokes the VRF Account's specified callback, which allows developers to integrate pseduorandomness into their applications and be confident they are consuming the latest pseduorandom result. - -## Configuration - -:::tip - -See [/idl/accounts/VrfAccountData](/idl/accounts/VrfAccountData) for the full list of an AggregatorAccount's configuration parameters. - -::: - -## Integration - -Switchboard's VRF implementation allows the creator to specify a program callback that will be called each time a new proof is verified on-chain. - -### Callback - -When creating a VRF Account, the VRF `vrf.authority` _should_ specify a `vrf.callback` function that will be called by the oracle when a new randomness value is produced. - - - -### Pseudorandom Result - -The VRF function produces a **_u8[32]_** buffer, `vrf.result`, that can be transmuted to most data types using the [bytemuck crate](https://crates.io/crates/bytemuck). - -```rust -let result_buffer: [u8; 32]; -// get result buffer from parsed VRF Account -msg!("Result buffer is {:?}", result_buffer); -let value: &[u128] = bytemuck::cast_slice(&result_buffer[..]); -msg!("u128 buffer {:?}", value); -let result = value[0] % max_result as u128; -msg!("Current VRF Value [0 - {}) = {}!", max_result, result); -``` - -## Update Cost - -A VRF Account is required to have `0.002 wrapped SOL` in their `vrf.escrow` before requesting randomness. If the `vrf.escrow` has insufficient funds, the difference will be deducted from the requesters token wallet. The oracle fulfilling the crank will receive `0.002 / 277 wrapped SOL` upon submitting the proof, with the remaining amount being dispersed to the account who turned the VRF crank, which is typically the oracle. - -## Update Lifecycle - -### Update Request - -- The `vrf.authority` calls [vrfRequestRandomness](/idl/instructions/vrfRequestRandomness) -- sbv2 program checks if the request is valid by: - - The previous `vrf.status` is equal to **_StatusNone_**, **_StatusCallbackSuccess_**, or **_StatusVerifyFailure_** - - The previous `vrf.status` is equal to **_StatusRequesting_**, **_StatusVerifying_**, or **_StatusVerified_** and one minute has elapsed since the previous VRF request -- sbv2 program sets the current `vrf.status` to **_StatusRequesting_** -- sbv2 program checks the requester provided the required oracle reward and transfers it to `vrf.escrow` -- sbv2 program increments `vrf.counter` -- sbv2 program emits [VrfRequestRandomnessEvent](/idl/events/VrfRequestRandomnessEvent) - -### Oracle Execution - -- Oracle watches the chain for a [VrfRequestRandomnessEvent](/idl/events/VrfRequestRandomnessEvent) with the oracle's public key assigned to the update request -- Oracle calculates the VRF proof and submits a [vrfProveAndVerify](/idl/instructions/vrfProveAndVerify) instruction on-chain - - Oracle receives 1 / 277 of the reward -- sbv2 program sets the current `vrf.status` to **_StatusVerifying_** -- Oracle submits 276 × [vrfProveAndVerify](/idl/instructions/vrfProveAndVerify) instructions on-chain - - Invoker receives 1 / 277 of the reward per each successful instruction -- If proof verification fails, - - sbv2 program sets `vrf.status` to **_StatusVerifyFailure_** -- If proof verification succeeds, - - sbv2 program sets `vrf.status` to **_StatusVerified_** - - Oracle invokes `vrf.callback` - - If `vrf.callback` is successfully invoked, - - sbv2 program sets `vrf.status` to **_StatusCallbackSuccess_** - -## More Information - -- [/idl/accounts/VrfAccountData](/idl/accounts/VrfAccountData) -- [/developers/randomness](/developers/randomness) diff --git a/website/docs/security.mdx b/website/docs/security.mdx deleted file mode 100644 index cb71140..0000000 --- a/website/docs/security.mdx +++ /dev/null @@ -1,20 +0,0 @@ ---- -sidebar_position: 90 -title: Security ---- - -# Security - -## Audits - -The Switchboard V2 program and off-chain oracles were formally audited by Kudelski security on 01/19/2022. This did **_NOT_** include the verifiable randomness implementation, which is being audited currently. - -## Bug Bounty - -We will have more details on the Switchboard bug bounty program soon. - -## Contact - -Please send all security and bug bounty submissions to: - -- [security@switchboard.xyz](mailto:security@switchboard.xyz) diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js deleted file mode 100644 index 0f227cb..0000000 --- a/website/docusaurus.config.js +++ /dev/null @@ -1,262 +0,0 @@ -// @ts-check -// Note: type annotations allow type checking and IDEs autocompletion - -const math = require("remark-math"); -const katex = require("rehype-katex"); - -/** @type {import('@docusaurus/types').Config} */ -const config = { - title: "Switchboard", - tagline: "Community curated lightspeed data feeds on-chain", - url: - process.env.NODE_ENV === "production" - ? "https://docs.switchboard.xyz" - : "http://localhost", - baseUrl: "/", - onBrokenLinks: "throw", - onBrokenMarkdownLinks: "warn", - favicon: "img/favicon.ico", - organizationName: "switchboard-xyz", // Usually your GitHub org/user name. - projectName: "switchboard-v2", // Usually your repo name. - deploymentBranch: "gh-pages", - trailingSlash: false, - presets: [ - [ - "@docusaurus/preset-classic", - /** @type {import('@docusaurus/preset-classic').Options} */ - ({ - docs: { - routeBasePath: "/", - sidebarPath: require.resolve("./sidebars.js"), - // Automatically converts npm codeblocks to yarn - remarkPlugins: [ - [require("@docusaurus/remark-plugin-npm2yarn"), { sync: true }], - ], - remarkPlugins: [math], - rehypePlugins: [katex], - // editUrl: - // process.env.NODE_ENV === "production" - // ? process.env.CI_PROJECT_URL + "/-/edit/main/" - // : "/", - }, - pages: { - remarkPlugins: [require("@docusaurus/remark-plugin-npm2yarn")], - }, - theme: { - customCss: [ - // require.resolve("./static/api/sbv2-api/assets/style.css"), - // require.resolve("./static/api/sbv2-api/assets/highlight.css"), - // require.resolve("./static/api/sbv2-api/assets/icons.css"), - require.resolve("./src/css/custom.css"), - ], - }, - }), - ], - ], - stylesheets: [ - { - href: "https://cdn.jsdelivr.net/npm/katex@0.13.24/dist/katex.min.css", - type: "text/css", - integrity: - "sha384-odtC+0UGzzFL/6PNoE8rX/SPcQDXBJ+uRepguP4QkPCm2LBxH3FA3y+fKSiJ+AmM", - crossorigin: "anonymous", - }, - ], - plugins: [ - "my-loaders", - [ - "@docusaurus/plugin-content-docs", - { - id: "api", - path: "api", - routeBasePath: "api", - sidebarPath: require.resolve("./sidebarsAPI.js"), - }, - ], - [ - "@docusaurus/plugin-content-docs", - { - id: "idl", - path: "idl", - routeBasePath: "idl", - sidebarPath: require.resolve("./sidebarsIDL.js"), - }, - ], - ], - - themeConfig: - /** @type {import('@docusaurus/preset-classic').ThemeConfig} */ - ({ - algolia: { - appId: "XO84KDTPTB", - apiKey: "bc1bca7d93098a0d241c000cd8e900aa", - indexName: "switchboard", - }, - colorMode: { - disableSwitch: false, - respectPrefersColorScheme: true, - // switchConfig: { - // darkIcon: "🌜", - // lightIcon: "☀️", - // // React inline style object - // // see https://reactjs.org/docs/dom-elements.html#style - // darkIconStyle: { - // marginLeft: "2px", - // }, - // lightIconStyle: { - // marginLeft: "1px", - // }, - // }, - }, - // Only for code blocks - prism: { - theme: require("prism-react-renderer/themes/nightOwl"), - additionalLanguages: ["rust", "toml", "docker", "bash", "yaml"], - }, - navbar: { - title: "Switchboard Documentation", - hideOnScroll: false, - logo: { - alt: "Switchboard Logo", - src: "img/logo.svg", - srcDark: "img/logo_white.svg", - }, - items: [ - // Need to bring in Algolia DocSearch https://docsearch.algolia.com/ - { - type: "search", - position: "right", - }, - { - type: "doc", - docId: "introduction", - position: "left", - label: "Docs", - }, - { - to: "/idl/", - position: "left", - label: "IDL", - // activeBaseRegex: "docs/(next|v8)", - }, - { - type: "dropdown", - label: "APIs", - position: "left", - to: "/api/", - items: [ - { - label: "Task Protobufs", - to: "/api/tasks", - }, - { - label: "Command Line", - to: "/api/cli", - }, - { - label: "Solana Typescript", - to: "https://docs.switchboard.xyz/api/ts", - }, - { - label: "Solana Python", - to: "https://docs.switchboard.xyz/api/py", - }, - { - label: "Solana Rust", - to: "https://docs.rs/switchboard-v2/latest/switchboard_v2/", - }, - { - label: "Aptos Typescript", - to: "https://docs.switchboard.xyz/api/aptos", - }, - ], - }, - { - to: "https://publish.switchboard.xyz/", - label: "Publisher", - position: "right", - }, - { - to: "https://switchboardxyz.medium.com/", - label: "Blog", - position: "right", - }, - { - type: "localeDropdown", - position: "right", - }, - { - href: "https://github.com/switchboard-xyz", - label: "GitHub", - position: "right", - }, - ], - }, - i18n: { - defaultLocale: "en", - locales: ["en", "fr", "es"], - }, - footer: { - style: "dark", - links: [ - { - title: "DOCS", - items: [ - { - label: "Developer Resources", - to: "/developers", - }, - { - label: "Rust API Docs", - href: "https://docs.rs/switchboard-v2/latest/switchboard_v2/", - }, - { - label: "Client API Docs", - href: "https://docs.switchboard.xyz/api/ts", - }, - ], - }, - { - title: "COMMUNITY", - items: [ - { - label: "Discord", - href: "https://discord.com/invite/sNeGymrabT", - }, - { - label: "Twitter", - href: "https://twitter.com/switchboardxyz", - }, - { - label: "Telegram", - href: "https://t.me/switchboardxyz", - }, - { - label: "LinkedIn", - href: "https://www.linkedin.com/company/switchboardxyz", - }, - ], - }, - { - title: "MORE", - items: [ - { - label: "Medium", - href: "https://switchboardxyz.medium.com/", - }, - { - label: "Jobs", - href: "https://app.trinethire.com/companies/35264-switchboard-technology-labs/jobs", - }, - { - label: "GitHub", - href: "https://github.com/switchboard-xyz", - }, - ], - }, - ], - }, - }), -}; - -module.exports = config; diff --git a/website/idl/_AggregatorHistoryBuffer.md b/website/idl/_AggregatorHistoryBuffer.md deleted file mode 100644 index 2ad5388..0000000 --- a/website/idl/_AggregatorHistoryBuffer.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| ----- | --------------------------------------------------------- | ----------------------------------------------------- | -| data | [AggregatorHistoryRow](/idl/types/AggregatorHistoryRow)[] | An array of accepted on-chain values with a timestamp | diff --git a/website/idl/_CrankBuffer.md b/website/idl/_CrankBuffer.md deleted file mode 100644 index e676efa..0000000 --- a/website/idl/_CrankBuffer.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| ----- | --------------------------------- | -------------------------------------------------------------------------------------- | -| data | [CrankRow](/idl/types/CrankRow)[] | Buffer account storing a set number of accepted onchain results for a given aggregator | diff --git a/website/idl/_QueueBuffer.md b/website/idl/_QueueBuffer.md deleted file mode 100644 index 5a6652c..0000000 --- a/website/idl/_QueueBuffer.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| ----- | ----------- | ------------------------------------------------------ | -| data | publicKey[] | Buffer account storing an array of oracle public keys. | diff --git a/website/idl/_aggregator_instructions.mdx b/website/idl/_aggregator_instructions.mdx deleted file mode 100644 index 0f43f33..0000000 --- a/website/idl/_aggregator_instructions.mdx +++ /dev/null @@ -1,287 +0,0 @@ -import { FiType } from "react-icons/fi"; -import { SiTypescript } from "react-icons/si"; -import { SiJavascript } from "react-icons/si"; -import { SiPython } from "react-icons/si"; -import { SiRust } from "react-icons/si"; -import { SiPowershell } from "react-icons/si"; -import { VscJson } from "react-icons/vsc"; -import { GoLinkExternal } from "react-icons/go"; -import { SerumIcon } from "/src/components/icons/SerumIcon"; -import { FaBook } from "react-icons/fa"; -import { Typography } from "@mui/material"; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
InstructionAPI Resource(s)Description
- AggregatorInit - - - Publisher - -
- - Typescript - -
- - Python - -
- - CLI - -
- - Create a new AggregatorAccount with a specified configuration - -
- PermissionInit - - - Typescript - -
- - Python - -
-
- - Create a new PermissionAccount with an oracle queue as the grantee - -
- AggregatorAddJob - - - Typescript - -
- - CLI - -
- Add a job to an aggregator -
- AggregatorRemoveJob - - - Typescript - -
- - CLI - -
- Remove a job from an aggregator -
- AggregatorOpenRound - - - Typescript - -
- - Python - -
- - CLI - -
- - Open a new round and request a new result from a batch of oracles - -
- AggregatorSetAuthority - - - Typescript - - - Set an aggregator's authority -
- AggregatorSetBatchSize - - - Typescript - - - - Set the number of oracles that get assigned to an openRound call - -
- AggregatorSetHistoryBuffer - - - Typescript - -
- - Python - -
- - Set the history buffer assigned to an aggregator in order to store the - last N accepted results - -
- AggregatorSetMinJobs - - - Typescript - - - - Set the minimum jobs that must respond before an oracle reports a - result - -
- AggregatorSetMinOracles - - - Typescript - - - - Set the minimum oracles that must respond before a result is accepted - on-chain - -
- AggregatorSetQueue - - - Set the oracle queue an aggregator is assigned to - -
- AggregatorSetVarianceThreshold - - Set an aggregators variance threshold -
- AggregatorLock - - - Typescript - - - - Lock an aggregator's config and prevent future changes - -
diff --git a/website/idl/_category_.json b/website/idl/_category_.json deleted file mode 100644 index ca4c6e9..0000000 --- a/website/idl/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Anchor IDL", - "position": 5 -} diff --git a/website/idl/_crank_instructions.mdx b/website/idl/_crank_instructions.mdx deleted file mode 100644 index ffe922a..0000000 --- a/website/idl/_crank_instructions.mdx +++ /dev/null @@ -1,42 +0,0 @@ -import { FiType } from "react-icons/fi"; -import { SiTypescript } from "react-icons/si"; -import { SiJavascript } from "react-icons/si"; -import { SiPython } from "react-icons/si"; -import { SiRust } from "react-icons/si"; -import { SiPowershell } from "react-icons/si"; -import { VscJson } from "react-icons/vsc"; -import { GoLinkExternal } from "react-icons/go"; -import { SerumIcon } from "/src/components/icons/SerumIcon"; -import { FaBook } from "react-icons/fa"; -import { Typography } from "@mui/material"; - - - - - - - - - - - - - - - - -
InstructionAPI Resource(s)Description
- CrankInit - - - Typescript - -
- - Python - -
- - Create a new CrankAccount with a specified configuration - -
diff --git a/website/idl/_full_toc.md b/website/idl/_full_toc.md deleted file mode 100644 index f4f96e9..0000000 --- a/website/idl/_full_toc.md +++ /dev/null @@ -1,105 +0,0 @@ -- [Accounts](/program/accounts/) - - [AggregatorAccountData](/idl/accounts/AggregatorAccountData) - - [BufferRelayerAccountData](/idl/accounts/BufferRelayerAccountData) - - [CrankAccountData](/idl/accounts/CrankAccountData) - - [JobAccountData](/idl/accounts/JobAccountData) - - [LeaseAccountData](/idl/accounts/LeaseAccountData) - - [OracleAccountData](/idl/accounts/OracleAccountData) - - [OracleQueueAccountData](/idl/accounts/OracleQueueAccountData) - - [PermissionAccountData](/idl/accounts/PermissionAccountData) - - [SbState](/idl/accounts/SbState) - - [VrfAccountData](/idl/accounts/VrfAccountData) -- [Instructions](/program/instructions) - - [aggregatorAddJob](/idl/instructions/aggregatorAddJob) - - [aggregatorInit](/idl/instructions/aggregatorInit) - - [aggregatorLock](/idl/instructions/aggregatorLock) - - [aggregatorOpenRound](/idl/instructions/aggregatorOpenRound) - - [aggregatorRemoveJob](/idl/instructions/aggregatorRemoveJob) - - [aggregatorSaveResult](/idl/instructions/aggregatorSaveResult) - - [aggregatorSetAuthority](/idl/instructions/aggregatorSetAuthority) - - [aggregatorSetBatchSize](/idl/instructions/aggregatorSetBatchSize) - - [aggregatorSetForceReportPeriod](/idl/instructions/aggregatorSetForceReportPeriod) - - [aggregatorSetHistoryBuffer](/idl/instructions/aggregatorSetHistoryBuffer) - - [aggregatorSetMinJobs](/idl/instructions/aggregatorSetMinJobs) - - [aggregatorSetMinOracles](/idl/instructions/aggregatorSetMinOracles) - - [aggregatorSetQueue](/idl/instructions/aggregatorSetQueue) - - [aggregatorSetUpdateInterval](/idl/instructions/aggregatorSetUpdateInterval) - - [aggregatorSetVarianceThreshold](/idl/instructions/aggregatorSetVarianceThreshold) - - [bufferRelayerInit](/idl/instructions/bufferRelayerInit) - - [bufferRelayerOpenRound](/idl/instructions/bufferRelayerOpenRound) - - [bufferRelayerSaveResult](/idl/instructions/bufferRelayerSaveResult) - - [crankInit](/idl/instructions/crankInit) - - [crankPop](/idl/instructions/crankPop) - - [crankPush](/idl/instructions/crankPush) - - [jobInit](/idl/instructions/jobInit) - - [leaseExtend](/idl/instructions/leaseExtend) - - [leaseInit](/idl/instructions/leaseInit) - - [leaseSetAuthority](/idl/instructions/leaseSetAuthority) - - [leaseWithdraw](/idl/instructions/leaseWithdraw) - - [oracleHeartbeat](/idl/instructions/oracleHeartbeat) - - [oracleInit](/idl/instructions/oracleInit) - - [oracleQueueInit](/idl/instructions/oracleQueueInit) - - [oracleQueueSetRewards](/idl/instructions/oracleQueueSetRewards) - - [oracleQueueVrfConfig](/idl/instructions/oracleQueueVrfConfig) - - [oracleWithdraw](/idl/instructions/oracleWithdraw) - - [permissionInit](/idl/instructions/permissionInit) - - [permissionSet](/idl/instructions/permissionSet) - - [programConfig](/idl/instructions/programConfig) - - [programInit](/idl/instructions/programInit) - - [vaultTransfer](/idl/instructions/vaultTransfer) - - [vrfInit](/idl/instructions/vrfInit) - - [vrfProveAndVerify](/idl/instructions/vrfProveAndVerify) - - [vrfRequestRandomness](/idl/instructions/vrfRequestRandomness) -- [Events](/program/events) - - [AggregatorCrankEvictionEvent](/idl/events/AggregatorCrankEvictionEvent) - - [AggregatorInitEvent](/idl/events/AggregatorInitEvent) - - [AggregatorOpenRoundEvent](/idl/events/AggregatorOpenRoundEvent) - - [AggregatorValueUpdateEvent](/idl/events/AggregatorValueUpdateEvent) - - [BufferRelayerOpenRoundEvent](/idl/events/BufferRelayerOpenRoundEvent) - - [CrankLeaseInsufficientFundsEvent](/idl/events/CrankLeaseInsufficientFundsEvent) - - [CrankPopExpectedFailureEvent](/idl/events/CrankPopExpectedFailureEvent) - - [FeedPermissionRevokedEvent](/idl/events/FeedPermissionRevokedEvent) - - [GarbageCollectFailureEvent](/idl/events/GarbageCollectFailureEvent) - - [LeaseFundEvent](/idl/events/LeaseFundEvent) - - [LeaseWithdrawEvent](/idl/events/LeaseWithdrawEvent) - - [OracleBootedEvent](/idl/events/OracleBootedEvent) - - [OracleRewardEvent](/idl/events/OracleRewardEvent) - - [OracleSlashEvent](/idl/events/OracleSlashEvent) - - [OracleWithdrawEvent](/idl/events/OracleWithdrawEvent) - - [ProbationBrokenEvent](/idl/events/ProbationBrokenEvent) - - [VrfCallbackPerformedEvent](/idl/events/VrfCallbackPerformedEvent) - - [VrfProveEvent](/idl/events/VrfProveEvent) - - [VrfRequestEvent](/idl/events/VrfRequestEvent) - - [VrfRequestRandomnessEvent](/idl/events/VrfRequestRandomnessEvent) - - [VrfVerifyEvent](/idl/events/VrfVerifyEvent) -- [Types](/program/types) - - [AccountMetaBorsh](/idl/types/AccountMetaBorsh) - - [AccountMetaZC](/idl/types/AccountMetaZC) - - [AggregatorHistoryRow](/idl/types/AggregatorHistoryRow) - - [AggregatorRound](/idl/types/AggregatorRound) - - [BorshDecimal](/idl/types/BorshDecimal) - - [BufferRelayerRound](/idl/types/BufferRelayerRound) - - [Callback](/idl/types/Callback) - - [CallbackZC](/idl/types/CallbackZC) - - [CompletedPointZC](/idl/types/CompletedPointZC) - - [CrankRow](/idl/types/CrankRow) - - [EcvrfIntermediate](/idl/types/EcvrfIntermediate) - - [EcvrfProofZC](/idl/types/EcvrfProofZC) - - [EdwardsPointZC](/idl/types/EdwardsPointZC) - - [Error](/idl/types/Error) - - [FieldElementZC](/idl/types/FieldElementZC) - - [Hash](/idl/types/Hash) - - [Lanes](/idl/types/Lanes) - - [Lanes](/idl/types/Lanes) - - [OracleMetrics](/idl/types/OracleMetrics) - - [OracleResponseType](/idl/types/OracleResponseType) - - [ProjectivePointZC](/idl/types/ProjectivePointZC) - - [Scalar](/idl/types/Scalar) - - [Shuffle](/idl/types/Shuffle) - - [Shuffle](/idl/types/Shuffle) - - [SwitchboardDecimal](/idl/types/SwitchboardDecimal) - - [SwitchboardPermission](/idl/types/SwitchboardPermission) - - [VrfBuilder](/idl/types/VrfBuilder) - - [VrfRound](/idl/types/VrfRound) - - [VrfStatus](/idl/types/VrfStatus) -- [Errors](/program/errors) diff --git a/website/idl/_job_instructions.mdx b/website/idl/_job_instructions.mdx deleted file mode 100644 index f345c2b..0000000 --- a/website/idl/_job_instructions.mdx +++ /dev/null @@ -1,46 +0,0 @@ -import { FiType } from "react-icons/fi"; -import { SiTypescript } from "react-icons/si"; -import { SiJavascript } from "react-icons/si"; -import { SiPython } from "react-icons/si"; -import { SiRust } from "react-icons/si"; -import { SiPowershell } from "react-icons/si"; -import { VscJson } from "react-icons/vsc"; -import { GoLinkExternal } from "react-icons/go"; -import { SerumIcon } from "/src/components/icons/SerumIcon"; -import { FaBook } from "react-icons/fa"; -import { Typography } from "@mui/material"; - - - - - - - - - - - - - - - - -
InstructionAPI Resource(s)Description
- JobInit - - - Typescript - -
- - Python - -
- - CLI - -
- - Create a new JobAccount with a specified configuration - -
diff --git a/website/idl/_lease_instructions.mdx b/website/idl/_lease_instructions.mdx deleted file mode 100644 index 226457d..0000000 --- a/website/idl/_lease_instructions.mdx +++ /dev/null @@ -1,86 +0,0 @@ -import { FiType } from "react-icons/fi"; -import { SiTypescript } from "react-icons/si"; -import { SiJavascript } from "react-icons/si"; -import { SiPython } from "react-icons/si"; -import { SiRust } from "react-icons/si"; -import { SiPowershell } from "react-icons/si"; -import { VscJson } from "react-icons/vsc"; -import { GoLinkExternal } from "react-icons/go"; -import { SerumIcon } from "/src/components/icons/SerumIcon"; -import { FaBook } from "react-icons/fa"; -import { Typography } from "@mui/material"; - - - - - - - - - - - - - - - - - - - - - - - - - - -
InstructionAPI Resource(s)Description
- LeaseInit - - - Typescript - -
- - Python - -
- - Create a new LeaseAccount with a specified configuration - -
- LeaseExtend - - - Typescript - -
- - Python - -
- - CLI - -
- - Extend a lease and deposit more tokens to a LeaseAccounts escrow - wallet - -
- LeaseWithdraw - - - Typescript - -
- - Python - -
- - Extend a lease and deposit more tokens to a LeaseAccounts escrow - wallet - -
diff --git a/website/idl/_oracle_instructions.mdx b/website/idl/_oracle_instructions.mdx deleted file mode 100644 index 6c1778a..0000000 --- a/website/idl/_oracle_instructions.mdx +++ /dev/null @@ -1,132 +0,0 @@ -import { FiType } from "react-icons/fi"; -import { SiTypescript } from "react-icons/si"; -import { SiJavascript } from "react-icons/si"; -import { SiPython } from "react-icons/si"; -import { SiRust } from "react-icons/si"; -import { SiPowershell } from "react-icons/si"; -import { VscJson } from "react-icons/vsc"; -import { GoLinkExternal } from "react-icons/go"; -import { SerumIcon } from "/src/components/icons/SerumIcon"; -import { FaBook } from "react-icons/fa"; -import { Typography } from "@mui/material"; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
InstructionAPI Resource(s)Description
- OracleInit - - - Typescript - -
- - Python - -
- - CLI - -
- - Create a new OracleAccount with a specified configuration - -
- PermissionInit - - - Typescript - -
- - Python - -
- - Create a new PermissionAccount with an oracle queue as the grantee - -
- OracleHeartbeat - - - Typescript - - - - Heartbeat on-chain and signal an oracle is ready for update request - -
- OracleWithdraw - - - Typescript - -
- - Python - -
- - CLI - -
- Withdraw from an oracle's tokenAccount -
- AggregatorSaveResult - - - Typescript - - - - Respond to an aggregator update request after executing the assigned - job accounts - -
diff --git a/website/idl/_permission_instructions.mdx b/website/idl/_permission_instructions.mdx deleted file mode 100644 index b0f761f..0000000 --- a/website/idl/_permission_instructions.mdx +++ /dev/null @@ -1,60 +0,0 @@ -import { FiType } from "react-icons/fi"; -import { SiTypescript } from "react-icons/si"; -import { SiJavascript } from "react-icons/si"; -import { SiPython } from "react-icons/si"; -import { SiRust } from "react-icons/si"; -import { SiPowershell } from "react-icons/si"; -import { VscJson } from "react-icons/vsc"; -import { GoLinkExternal } from "react-icons/go"; -import { SerumIcon } from "/src/components/icons/SerumIcon"; -import { FaBook } from "react-icons/fa"; -import { Typography } from "@mui/material"; - - - - - - - - - - - - - - - - - - - - - -
InstructionAPI Resource(s)Description
- PermissionInit - - - Typescript - -
- - Python - -
- - Create a new PermissionAccount with a specified configuration - -
- PermissionSet - - - Typescript - - - - As the authority, set the permissions for a given PermissionAccount - -
diff --git a/website/idl/_queue_instructions.mdx b/website/idl/_queue_instructions.mdx deleted file mode 100644 index 0653edc..0000000 --- a/website/idl/_queue_instructions.mdx +++ /dev/null @@ -1,87 +0,0 @@ -import { FiType } from "react-icons/fi"; -import { SiTypescript } from "react-icons/si"; -import { SiJavascript } from "react-icons/si"; -import { SiPython } from "react-icons/si"; -import { SiRust } from "react-icons/si"; -import { SiPowershell } from "react-icons/si"; -import { VscJson } from "react-icons/vsc"; -import { GoLinkExternal } from "react-icons/go"; -import { SerumIcon } from "/src/components/icons/SerumIcon"; -import { FaBook } from "react-icons/fa"; -import { Typography } from "@mui/material"; - - - - - - - - - - - - - - - - - - - - - - - - - - -
InstructionAPI Resource(s)Description
- OracleQueueInit - - - Typescript - -
- - Python - -
- - CLI - -
- - Create a new OracleQueueAccount with a specified configuration - -
- OracleQueueSetRewards - - - Typescript - - - Set the rewards for an oracle queue -
- PermissionSet - - - Typescript - -
- - CLI - -
- - As the authority, set the permissions for a given PermissionAccount - -
diff --git a/website/idl/_randomness_instructions.mdx b/website/idl/_randomness_instructions.mdx deleted file mode 100644 index c251214..0000000 --- a/website/idl/_randomness_instructions.mdx +++ /dev/null @@ -1,88 +0,0 @@ -import { FiType } from "react-icons/fi"; -import { SiTypescript } from "react-icons/si"; -import { SiJavascript } from "react-icons/si"; -import { SiPython } from "react-icons/si"; -import { SiRust } from "react-icons/si"; -import { SiPowershell } from "react-icons/si"; -import { VscJson } from "react-icons/vsc"; -import { GoLinkExternal } from "react-icons/go"; -import { SerumIcon } from "/src/components/icons/SerumIcon"; -import { FaBook } from "react-icons/fa"; -import { Typography } from "@mui/material"; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
InstructionAPI Resource(s)Description
- VrfInit - - - Typescript - - - - Create a new VrfAccount with a specified configuration - -
- VrfProve - - - Typescript - - - -
- VrfVerify - - - Typescript - - - -
- VrfRequestRandomness - - - Typescript - -
- - Rust - -
- Request a new randomness value -
diff --git a/website/idl/_short_toc.md b/website/idl/_short_toc.md deleted file mode 100644 index dfc798b..0000000 --- a/website/idl/_short_toc.md +++ /dev/null @@ -1,5 +0,0 @@ -- [Accounts](/program/accounts/) -- [Instructions](/program/instructions) -- [Events](/program/events) -- [Types](/program/types) -- [Errors](/program/errors) diff --git a/website/idl/accounts/AggregatorAccountData.md b/website/idl/accounts/AggregatorAccountData.md deleted file mode 100644 index 83f96da..0000000 --- a/website/idl/accounts/AggregatorAccountData.md +++ /dev/null @@ -1,33 +0,0 @@ -Size: 3851 Bytes
Rent Exemption: 0.027693840 SOL

- -| Field | Type | Description | -| ---------------------------- | --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | -| name | u8[32] | Name of the aggregator to store on-chain. | -| metadata | u8[128] | Metadata of the aggregator to store on-chain. | -| reserved1 | u8[32] | Reserved. | -| queuePubkey | publicKey | Pubkey of the queue the aggregator belongs to. | -| oracleRequestBatchSize | u32 | Number of oracles assigned to an update request. | -| minOracleResults | u32 | Minimum number of oracle responses required before a round is validated. | -| minJobResults | u32 | Minimum number of job results before an oracle accepts a result. | -| minUpdateDelaySeconds | u32 | Minimum number of seconds required between aggregator rounds. | -| startAfter | i64 | unix_timestamp for which no feed update will occur before. | -| varianceThreshold | [SwitchboardDecimal](/idl/types/SwitchboardDecimal) | Change percentage required between a previous round and the current round. If variance percentage is not met, reject new oracle responses. | -| forceReportPeriod | i64 | Number of seconds for which, even if the variance threshold is not passed, accept new responses from oracles. | -| expiration | i64 | Timestamp when the feed is no longer needed. | -| consecutiveFailureCount | u64 | Counter for the number of consecutive failures before a feed is removed from a queue. If set to 0, failed feeds will remain on the queue. | -| nextAllowedUpdateTime | i64 | Timestamp when the next update request will be available. | -| isLocked | bool | Flag for whether an aggregators configuration is locked for editing. | -| crankPubkey | publicKey | Optional, public key of the crank the aggregator is currently using. Event based feeds do not need a crank. | -| latestConfirmedRound | [AggregatorRound](/idl/types/AggregatorRound) | Latest confirmed update request result that has been accepted as valid. | -| currentRound | [AggregatorRound](/idl/types/AggregatorRound) | Oracle results from the current round of update request that has not been accepted as valid yet. | -| jobPubkeysData | publicKey[16] | List of public keys containing the job definitions for how data is sourced off-chain by oracles. | -| jobHashes | [Hash](/idl/types/Hash)[16] | Used to protect against malicious RPC nodes providing incorrect task definitions to oracles before fulfillment. | -| jobPubkeysSize | u32 | Number of jobs assigned to an oracle. | -| jobsChecksum | u8[32] | Used to protect against malicious RPC nodes providing incorrect task definitions to oracles before fulfillment. | -| authority | publicKey | The account delegated as the authority for making account changes or withdrawing funds from a lease. | -| historyBuffer | publicKey | Optional, public key of a history buffer account storing the last N accepted results and their timestamps. | -| previousConfirmedRoundResult | [SwitchboardDecimal](/idl/types/SwitchboardDecimal) | The previous confirmed round result. | -| previousConfirmedRoundSlot | u64 | The slot when the previous confirmed round was opened. | -| disableCrank | bool | Whether an aggregator is permitted to join a crank. | -| jobWeights | u8[16] | Job weights used for the weighted median of the aggregator's assigned job accounts. | -| ebuf | u8[147] | Reserved. | diff --git a/website/idl/accounts/AggregatorHistoryBuffer.md b/website/idl/accounts/AggregatorHistoryBuffer.md deleted file mode 100644 index 7237416..0000000 --- a/website/idl/accounts/AggregatorHistoryBuffer.md +++ /dev/null @@ -1,21 +0,0 @@ -import AggregatorHistoryBuffer from "../\_AggregatorHistoryBuffer.md" -import AggregatorHistoryRow from "../types/AggregatorHistoryRow.md" - -Serialized buffer account storing a given number of accepted on-chain results for a single aggregator - -Size: 12 Bytes + (28 Bytes × Num Samples) -
-Rent Exemption: Dependent on number of samples to store. -
-         -10,000 samples:   1.949774400 SOL -
-         -200,000 samples: 38.976974400 SOL -

- - - -**AggregatorHistoryRow** - - diff --git a/website/idl/accounts/BufferRelayerAccountData.md b/website/idl/accounts/BufferRelayerAccountData.md deleted file mode 100644 index 16b5cd7..0000000 --- a/website/idl/accounts/BufferRelayerAccountData.md +++ /dev/null @@ -1,13 +0,0 @@ -| Field | Type | Description | -| --------------------- | --------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | -| name | u8[32] | Name of the buffer account to store on-chain. | -| queuePubkey | publicKey | Public key of the [OracleQueueAccountData](/idl/accounts/OracleQueueAccountData) that is currently assigned to fulfill buffer relayer update request | -| escrow | publicKey | Token account to reward oracles for completing update request | -| authority | publicKey | The account delegated as the authority for making account changes. | -| jobPubkey | publicKey | Public key of the [JobAccountData](/idl/accounts/JobAccountData) that defines how the buffer relayer is updated | -| jobHash | u8[32] | Used to protect against malicious RPC nodes providing incorrect task definitions to oracles before fulfillment | -| minUpdateDelaySeconds | u32 | Minimum delay between update request | -| isLocked | bool | Whether buffer relayer config is locked for further changes | -| currentRound | [BufferRelayerRound](/idl/types/BufferRelayerRound) | The current buffer relayer update round that is yet to be confirmed | -| latestConfirmedRound | [BufferRelayerRound](/idl/types/BufferRelayerRound) | The latest confirmed buffer relayer update round | -| result | bytes | The buffer holding the latest confirmed result | diff --git a/website/idl/accounts/CrankAccountData.md b/website/idl/accounts/CrankAccountData.md deleted file mode 100644 index fa9a2f4..0000000 --- a/website/idl/accounts/CrankAccountData.md +++ /dev/null @@ -1,12 +0,0 @@ -Size: 432 Bytes
Rent Exemption: 0.003897600 SOL

- -| Field | Type | Description | -| -------------- | --------- | ------------------------------------------------------------------------------------------------------------------------ | -| name | u8[32] | Name of the crank to store on-chain. | -| metadata | u8[64] | Metadata of the crank to store on-chain. | -| queuePubkey | publicKey | Public key of the oracle queue who owns the crank | -| pqSize | u32 | Number of aggregators added to the crank | -| maxRows | u32 | Maximum number of aggregators allowed to be added to a crank | -| jitterModifier | u8 | Pseudorandom value added to next aggregator update time | -| ebuf | u8[255] | Reserved | -| dataBuffer | publicKey | The public key of the CrankBuffer account holding a collection of Aggregator pubkeys and their next allowed update time. | diff --git a/website/idl/accounts/CrankBuffer.md b/website/idl/accounts/CrankBuffer.md deleted file mode 100644 index 35af768..0000000 --- a/website/idl/accounts/CrankBuffer.md +++ /dev/null @@ -1,19 +0,0 @@ -import CrankBuffer from "../\_CrankBuffer.md" -import CrankRow from "../types/CrankRow.md" - -Serialized buffer account storing the list of aggregators and their next update timestamp. - -Size: 8 Bytes + (48 Bytes × Num Aggregators) -
-Rent Exemption: Dependent on number of aggregators. -
-         -1,000 aggregators: 0.335026560 SOL - -

- - - -**CrankRow** - - diff --git a/website/idl/accounts/JobAccountData.md b/website/idl/accounts/JobAccountData.md deleted file mode 100644 index df9c6f1..0000000 --- a/website/idl/accounts/JobAccountData.md +++ /dev/null @@ -1,13 +0,0 @@ -Size: 181 Bytes
Rent Exemption: 0.002150640 SOL

- -| Field | Type | Description | -| -------------- | --------- | -------------------------------------------------------------------------------- | -| name | u8[32] | Name of the job to store on-chain. | -| metadata | u8[64] | Metadata of the job to store on-chain. | -| authority | publicKey | The account delegated as the authority for making account changes. | -| expiration | i64 | Timestamp when the job is considered invalid | -| hash | u8[32] | [Hash](/idl/types/Hash) of the serialized data to prevent tampering | -| data | bytes | Serialized protobuf containing the collection of task to retrieve data off-chain | -| referenceCount | u32 | The number of data feeds referencing the job account. | -| totalSpent | u64 | | -| createdAt | i64 | Timestamp when the job account was created. | diff --git a/website/idl/accounts/LeaseAccountData.md b/website/idl/accounts/LeaseAccountData.md deleted file mode 100644 index fe2e6f2..0000000 --- a/website/idl/accounts/LeaseAccountData.md +++ /dev/null @@ -1,14 +0,0 @@ -Size: 453 Bytes
Rent Exemption: 0.004043760 SOL

- -| Field | Type | Description | -| ----------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------ | -| escrow | publicKey | Public key of the token account holding the lease contract funds until rewarded to oracles for successfully processing updates | -| queue | publicKey | Public key of the oracle queue that the lease contract is applicable for | -| aggregator | publicKey | Public key of the aggregator that the lease contract is applicable for | -| tokenProgram | publicKey | Public key of the Solana token program ID | -| isActive | bool | Whether the lease contract is still active | -| crankRowCount | u32 | Index of an aggregators position on a crank | -| createdAt | i64 | Timestamp when the lease contract was created | -| updateCount | u128 | Counter keeping track of the number of updates for the given aggregator | -| withdrawAuthority | publicKey | Public key of keypair that may withdraw funds from the lease at any time | -| ebuf | u8[256] | Reserved | diff --git a/website/idl/accounts/OracleAccountData.md b/website/idl/accounts/OracleAccountData.md deleted file mode 100644 index 9d71630..0000000 --- a/website/idl/accounts/OracleAccountData.md +++ /dev/null @@ -1,13 +0,0 @@ -Size: 636 Bytes
Rent Exemption: 0.00531744 SOL

- -| Field | Type | Description | -| --------------- | ----------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| name | u8[32] | Name of the oracle to store on-chain. | -| metadata | u8[128] | Metadata of the oracle to store on-chain. | -| oracleAuthority | publicKey | The account delegated as the authority for making account changes or withdrawing funds from a staking wallet. | -| lastHeartbeat | i64 | Timestamp when the oracle last heartbeated | -| numInUse | u32 | Flag dictating if an oracle is active and has heartbeated before the queue's oracle timeout parameter | -| tokenAccount | publicKey | Stake account and reward/slashing wallet | -| queuePubkey | publicKey | Public key of the oracle queue who has granted it permission to use its resources | -| metrics | [OracleMetrics](/idl/types/OracleMetrics) | Oracle track record | -| ebuf | u8[256] | Reserved | diff --git a/website/idl/accounts/OracleQueueAccountData.md b/website/idl/accounts/OracleQueueAccountData.md deleted file mode 100644 index c1e0b8e..0000000 --- a/website/idl/accounts/OracleQueueAccountData.md +++ /dev/null @@ -1,27 +0,0 @@ -Size: 1269 Bytes
Rent Exemption: 0.009723120 SOL

- -| Field | Type | Description | -| ----------------------------- | --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| name | u8[32] | Name of the queue to store on-chain. | -| metadata | u8[64] | Metadata of the queue to store on-chain. | -| authority | publicKey | The account delegated as the authority for making account changes or assigning permissions targeted at the queue. | -| oracleTimeout | u32 | Time period we should remove an oracle after if no response. | -| reward | u64 | Rewards to provide oracles and round openers on this queue. | -| minStake | u64 | The minimum amount of stake oracles must present to remain on the queue. | -| slashingEnabled | bool | Whether slashing is enabled on this queue. | -| varianceToleranceMultiplier | [SwitchboardDecimal](/idl/types/SwitchboardDecimal) | The tolerated variance amount oracle results can have from the accepted round result before being slashed. slashBound = varianceToleranceMultiplier \* stdDeviation Default: 2 | -| feedProbationPeriod | u32 | After a feed lease is funded or re-funded, it must consecutively succeed N amount of times or its authorization to use the queue is auto-revoked. | -| currIdx | u32 | Current index of the oracle rotation. | -| size | u32 | Current number of oracles on a queue. | -| gcIdx | u32 | Garbage collection index. | -| consecutiveFeedFailureLimit | u64 | Consecutive failure limit for a feed before feed permission is revoked. | -| consecutiveOracleFailureLimit | u64 | Consecutive failure limit for an oracle before oracle permission is revoked. | -| unpermissionedFeedsEnabled | bool | Enabling this setting means data feeds do not need explicit permission to join the queue and request new values from its oracles. | -| unpermissionedVrfEnabled | bool | Enabling this setting means VRF accounts do not need explicit permission to join the queue and request new values from its oracles. | -| curatorRewardCut | [SwitchboardDecimal](/idl/types/SwitchboardDecimal) | Not implemented yet. Revenue percentage rewarded to job curators overall. | -| lockLeaseFunding | bool | Prevent new leases from being funded n this queue. Useful to turn down a queue for migrations, since authority is always immutable. | -| mint | publicKey | Token mint used for the oracle queue rewards and slashing. | -| enableBufferRelayers | bool | Whether oracles are permitted to fulfill buffer relayer update request. | -| ebuf | u8[968] | Reserved. | -| maxSize | u32 | Maximum number of oracles a queue can support. | -| dataBuffer | publicKey | The public key of the OracleQueueBuffer account holding a collection of Oracle pubkeys that haver successfully heartbeated before the queues `oracleTimeout`. | diff --git a/website/idl/accounts/OracleQueueBuffer.md b/website/idl/accounts/OracleQueueBuffer.md deleted file mode 100644 index 614eae0..0000000 --- a/website/idl/accounts/OracleQueueBuffer.md +++ /dev/null @@ -1,16 +0,0 @@ -import QueueBuffer from "../\_QueueBuffer.md" - -Serialized buffer account storing the list of oracle's for a queue. - -Size: 8 Bytes + (32 Bytes × Num Oracles) -
-Rent Exemption: Dependent on number of oracles. -
-         -1,000 oracles:   0.223666560 SOL -
-         -25,000 oracles: 5.568946560 SOL -

- - diff --git a/website/idl/accounts/PermissionAccountData.md b/website/idl/accounts/PermissionAccountData.md deleted file mode 100644 index c7b5ead..0000000 --- a/website/idl/accounts/PermissionAccountData.md +++ /dev/null @@ -1,10 +0,0 @@ -Size: 372 Bytes
Rent Exemption: 0.003480000 SOL

- -| Field | Type | Description | -| ----------- | --------- | --------------------------------------------------------------------------------------------------------------------- | -| authority | publicKey | The authority that is allowed to set permissions for this account. | -| permissions | u32 | The [SwitchboardPermission](/idl/types/SwitchboardPermission) enumeration assigned by the `granter` to the `grantee`. | -| granter | publicKey | Public key of account that is granting permissions to use its resources. | -| grantee | publicKey | Public key of account that is being assigned permissions to use a granters resources. | -| expiration | i64 | Timestamp when the permissions expire. | -| ebuf | u8[256] | Reserved. | diff --git a/website/idl/accounts/SbState.md b/website/idl/accounts/SbState.md deleted file mode 100644 index 74902e9..0000000 --- a/website/idl/accounts/SbState.md +++ /dev/null @@ -1,9 +0,0 @@ -Size: 1128 Bytes
Rent Exemption: 0.008741760 SOL

- -| Field | Type | Description | -| ---------- | --------- | --------------------------------------------------------------------------------------- | -| authority | publicKey | The account authority permitted to make account changes. | -| tokenMint | publicKey | The token mint used for oracle rewards, aggregator leases, and other reward incentives. | -| tokenVault | publicKey | Token vault used by the program to receive kickbacks. | -| daoMint | publicKey | The token mint used by the DAO. | -| ebuf | u8[992] | Reserved. | diff --git a/website/idl/accounts/VrfAccountData.md b/website/idl/accounts/VrfAccountData.md deleted file mode 100644 index 982c26c..0000000 --- a/website/idl/accounts/VrfAccountData.md +++ /dev/null @@ -1,16 +0,0 @@ -Size: 29058 Bytes
Rent Exemption: 0.203134560SOL

- -| Field | Type | Description | -| ------------ | -------------------------------------- | ------------------------------------------------------------------------------------------------------------------ | -| status | [VrfStatus](/idl/types/VrfStatus) | The current status of the VRF account. | -| counter | u128 | Incremental counter for tracking VRF rounds. | -| authority | publicKey | On-chain account delegated for making account changes. | -| oracleQueue | publicKey | The [OracleQueueAccountData](/idl/accounts/OracleQueueAccountData) that is assigned to fulfill VRF update request. | -| escrow | publicKey | The token account used to hold funds for VRF update request. | -| callback | [CallbackZC](/idl/types/CallbackZC) | The callback that is invoked when an update request is successfully verified. | -| batchSize | u32 | The number of oracles assigned to a VRF update request. | -| builders | [VrfBuilder](/idl/types/VrfBuilder)[8] | Struct containing the intermediate state between VRF crank actions. | -| buildersLen | u32 | The number of builders. | -| testMode | bool | | -| currentRound | [VrfRound](/idl/types/VrfRound) | Oracle results from the current round of update request that has not been accepted as valid yet | -| ebuf | u8[1024] | Reserved. | diff --git a/website/idl/accounts/_category_.json b/website/idl/accounts/_category_.json deleted file mode 100644 index e2b7df5..0000000 --- a/website/idl/accounts/_category_.json +++ /dev/null @@ -1 +0,0 @@ -{"label":"Accounts","position":10} \ No newline at end of file diff --git a/website/idl/accounts/overview.md b/website/idl/accounts/overview.md deleted file mode 100644 index 313b92e..0000000 --- a/website/idl/accounts/overview.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -sidebar_position: 1 -title: Overview -slug: . ---- - -- [AggregatorAccountData](/idl/accounts/AggregatorAccountData) -- [BufferRelayerAccountData](/idl/accounts/BufferRelayerAccountData) -- [CrankAccountData](/idl/accounts/CrankAccountData) -- [JobAccountData](/idl/accounts/JobAccountData) -- [LeaseAccountData](/idl/accounts/LeaseAccountData) -- [OracleAccountData](/idl/accounts/OracleAccountData) -- [OracleQueueAccountData](/idl/accounts/OracleQueueAccountData) -- [PermissionAccountData](/idl/accounts/PermissionAccountData) -- [SbState](/idl/accounts/SbState) -- [VrfAccountData](/idl/accounts/VrfAccountData) diff --git a/website/idl/descriptions.json b/website/idl/descriptions.json deleted file mode 100644 index f796660..0000000 --- a/website/idl/descriptions.json +++ /dev/null @@ -1,3247 +0,0 @@ -{ - "accounts": [ - { - "name": "AggregatorAccountData", - "description": "Size: 3851 Bytes
Rent Exemption: 0.027693840 SOL

", - "children": [ - { - "name": "name", - "description": "Name of the aggregator to store on-chain." - }, - { - "name": "metadata", - "description": "Metadata of the aggregator to store on-chain." - }, - { - "name": "reserved1", - "description": "Reserved." - }, - { - "name": "queuePubkey", - "description": "Pubkey of the queue the aggregator belongs to." - }, - { - "name": "oracleRequestBatchSize", - "description": "Number of oracles assigned to an update request." - }, - { - "name": "minOracleResults", - "description": "Minimum number of oracle responses required before a round is validated." - }, - { - "name": "minJobResults", - "description": "Minimum number of job results before an oracle accepts a result." - }, - { - "name": "minUpdateDelaySeconds", - "description": "Minimum number of seconds required between aggregator rounds." - }, - { - "name": "startAfter", - "description": "unix_timestamp for which no feed update will occur before." - }, - { - "name": "varianceThreshold", - "description": "Change percentage required between a previous round and the current round. If variance percentage is not met, reject new oracle responses." - }, - { - "name": "forceReportPeriod", - "description": "Number of seconds for which, even if the variance threshold is not passed, accept new responses from oracles." - }, - { - "name": "expiration", - "description": "Timestamp when the feed is no longer needed." - }, - { - "name": "consecutiveFailureCount", - "description": "Counter for the number of consecutive failures before a feed is removed from a queue. If set to 0, failed feeds will remain on the queue." - }, - { - "name": "nextAllowedUpdateTime", - "description": "Timestamp when the next update request will be available." - }, - { - "name": "isLocked", - "description": "Flag for whether an aggregators configuration is locked for editing." - }, - { - "name": "crankPubkey", - "description": "Optional, public key of the crank the aggregator is currently using. Event based feeds do not need a crank." - }, - { - "name": "latestConfirmedRound", - "description": "Latest confirmed update request result that has been accepted as valid." - }, - { - "name": "currentRound", - "description": "Oracle results from the current round of update request that has not been accepted as valid yet." - }, - { - "name": "jobPubkeysData", - "description": "List of public keys containing the job definitions for how data is sourced off-chain by oracles." - }, - { - "name": "jobHashes", - "description": "Used to protect against malicious RPC nodes providing incorrect task definitions to oracles before fulfillment." - }, - { - "name": "jobPubkeysSize", - "description": "Number of jobs assigned to an oracle." - }, - { - "name": "jobsChecksum", - "description": "Used to protect against malicious RPC nodes providing incorrect task definitions to oracles before fulfillment." - }, - { - "name": "authority", - "description": "The account delegated as the authority for making account changes or withdrawing funds from a lease." - }, - { - "name": "historyBuffer", - "description": "Optional, public key of a history buffer account storing the last N accepted results and their timestamps." - }, - { - "name": "previousConfirmedRoundResult", - "description": "The previous confirmed round result." - }, - { - "name": "previousConfirmedRoundSlot", - "description": "The slot when the previous confirmed round was opened." - }, - { - "name": "disableCrank", - "description": "Whether an aggregator is permitted to join a crank." - }, - { - "name": "jobWeights", - "description": "Job weights used for the weighted median of the aggregator's assigned job accounts." - }, - { - "name": "ebuf", - "description": "Reserved." - } - ] - }, - { - "name": "BufferRelayerAccountData", - "description": "", - "children": [ - { - "name": "name", - "description": "Name of the buffer account to store on-chain." - }, - { - "name": "queuePubkey", - "description": "Public key of the OracleQueueAccountData that is currently assigned to fulfill buffer relayer update request" - }, - { - "name": "escrow", - "description": "Token account to reward oracles for completing update request" - }, - { - "name": "authority", - "description": "The account delegated as the authority for making account changes." - }, - { - "name": "jobPubkey", - "description": "Public key of the JobAccountData that defines how the buffer relayer is updated" - }, - { - "name": "jobHash", - "description": "Used to protect against malicious RPC nodes providing incorrect task definitions to oracles before fulfillment" - }, - { - "name": "minUpdateDelaySeconds", - "description": "Minimum delay between update request" - }, - { - "name": "isLocked", - "description": "Whether buffer relayer config is locked for further changes" - }, - { - "name": "currentRound", - "description": "The current buffer relayer update round that is yet to be confirmed" - }, - { - "name": "latestConfirmedRound", - "description": "The latest confirmed buffer relayer update round" - }, - { - "name": "result", - "description": "The buffer holding the latest confirmed result" - } - ] - }, - { - "name": "CrankAccountData", - "description": "Size: 432 Bytes
Rent Exemption: 0.003897600 SOL

", - "children": [ - { - "name": "name", - "description": "Name of the crank to store on-chain." - }, - { - "name": "metadata", - "description": "Metadata of the crank to store on-chain." - }, - { - "name": "queuePubkey", - "description": "Public key of the oracle queue who owns the crank" - }, - { - "name": "pqSize", - "description": "Number of aggregators added to the crank" - }, - { - "name": "maxRows", - "description": "Maximum number of aggregators allowed to be added to a crank" - }, - { - "name": "jitterModifier", - "description": "Pseudorandom value added to next aggregator update time" - }, - { - "name": "ebuf", - "description": "Reserved" - }, - { - "name": "dataBuffer", - "description": " The public key of the CrankBuffer account holding a collection of Aggregator pubkeys and their next allowed update time." - } - ] - }, - { - "name": "JobAccountData", - "description": "Size: 181 Bytes
Rent Exemption: 0.002150640 SOL

", - "children": [ - { - "name": "name", - "description": "Name of the job to store on-chain." - }, - { - "name": "metadata", - "description": "Metadata of the job to store on-chain." - }, - { - "name": "authority", - "description": "The account delegated as the authority for making account changes." - }, - { - "name": "authorWallet", - "description": "An optional wallet for receiving kickbacks from job usage in feeds. Defaults to token vault." - }, - { - "name": "expiration", - "description": "Timestamp when the job is considered invalid" - }, - { - "name": "hash", - "description": "Hash of the serialized data to prevent tampering" - }, - { - "name": "data", - "description": "Serialized protobuf containing the collection of task to retrieve data off-chain" - }, - { - "name": "referenceCount", - "description": "The number of data feeds referencing the job account." - }, - { - "name": "totalSpent", - "description": "" - }, - { - "name": "createdAt", - "description": "Timestamp when the job account was created." - } - ] - }, - { - "name": "LeaseAccountData", - "description": "Size: 453 Bytes
Rent Exemption: 0.004043760 SOL

", - "children": [ - { - "name": "escrow", - "description": "Public key of the token account holding the lease contract funds until rewarded to oracles for successfully processing updates" - }, - { - "name": "queue", - "description": "Public key of the oracle queue that the lease contract is applicable for" - }, - { - "name": "aggregator", - "description": "Public key of the aggregator that the lease contract is applicable for" - }, - { - "name": "tokenProgram", - "description": "Public key of the Solana token program ID" - }, - { - "name": "isActive", - "description": "Whether the lease contract is still active" - }, - { - "name": "crankRowCount", - "description": "Index of an aggregators position on a crank" - }, - { - "name": "createdAt", - "description": "Timestamp when the lease contract was created" - }, - { - "name": "updateCount", - "description": "Counter keeping track of the number of updates for the given aggregator" - }, - { - "name": "withdrawAuthority", - "description": "Public key of keypair that may withdraw funds from the lease at any time" - }, - { - "name": "ebuf", - "description": "Reserved" - } - ] - }, - { - "name": "OracleAccountData", - "description": "Size: 636 Bytes
Rent Exemption: 0.00531744 SOL

", - "children": [ - { - "name": "name", - "description": "Name of the oracle to store on-chain." - }, - { - "name": "metadata", - "description": "Metadata of the oracle to store on-chain." - }, - { - "name": "oracleAuthority", - "description": "The account delegated as the authority for making account changes or withdrawing funds from a staking wallet." - }, - { - "name": "lastHeartbeat", - "description": "Timestamp when the oracle last heartbeated" - }, - { - "name": "numInUse", - "description": "Flag dictating if an oracle is active and has heartbeated before the queue's oracle timeout parameter" - }, - { - "name": "tokenAccount", - "description": "Stake account and reward/slashing wallet" - }, - { - "name": "queuePubkey", - "description": "Public key of the oracle queue who has granted it permission to use its resources" - }, - { - "name": "metrics", - "description": "Oracle track record" - }, - { - "name": "ebuf", - "description": "Reserved" - } - ] - }, - { - "name": "OracleQueueAccountData", - "description": "Size: 1269 Bytes
Rent Exemption: 0.009723120 SOL

", - "children": [ - { - "name": "name", - "description": "Name of the queue to store on-chain." - }, - { - "name": "metadata", - "description": "Metadata of the queue to store on-chain." - }, - { - "name": "authority", - "description": "The account delegated as the authority for making account changes or assigning permissions targeted at the queue." - }, - { - "name": "oracleTimeout", - "description": "Time period we should remove an oracle after if no response." - }, - { - "name": "reward", - "description": "Rewards to provide oracles and round openers on this queue." - }, - { - "name": "minStake", - "description": "The minimum amount of stake oracles must present to remain on the queue." - }, - { - "name": "slashingEnabled", - "description": "Whether slashing is enabled on this queue." - }, - { - "name": "varianceToleranceMultiplier", - "description": "The tolerated variance amount oracle results can have from the accepted round result before being slashed. slashBound = varianceToleranceMultiplier * stdDeviation Default: 2" - }, - { - "name": "feedProbationPeriod", - "description": "After a feed lease is funded or re-funded, it must consecutively succeed N amount of times or its authorization to use the queue is auto-revoked." - }, - { - "name": "currIdx", - "description": "Current index of the oracle rotation." - }, - { - "name": "size", - "description": "Current number of oracles on a queue." - }, - { - "name": "gcIdx", - "description": "Garbage collection index." - }, - { - "name": "consecutiveFeedFailureLimit", - "description": "Consecutive failure limit for a feed before feed permission is revoked." - }, - { - "name": "consecutiveOracleFailureLimit", - "description": "Consecutive failure limit for an oracle before oracle permission is revoked." - }, - { - "name": "unpermissionedFeedsEnabled", - "description": "Enabling this setting means data feeds do not need explicit permission to join the queue and request new values from its oracles." - }, - { - "name": "unpermissionedVrfEnabled", - "description": "Enabling this setting means VRF accounts do not need explicit permission to join the queue and request new values from its oracles." - }, - { - "name": "curatorRewardCut", - "description": "Not implemented yet. Revenue percentage rewarded to job curators overall." - }, - { - "name": "lockLeaseFunding", - "description": "Prevent new leases from being funded n this queue. Useful to turn down a queue for migrations, since authority is always immutable." - }, - { - "name": "mint", - "description": "Token mint used for the oracle queue rewards and slashing." - }, - { - "name": "enableBufferRelayers", - "description": "Whether oracles are permitted to fulfill buffer relayer update request." - }, - { - "name": "ebuf", - "description": "Reserved." - }, - { - "name": "maxSize", - "description": "Maximum number of oracles a queue can support." - }, - { - "name": "dataBuffer", - "description": "The public key of the OracleQueueBuffer account holding a collection of Oracle pubkeys that haver successfully heartbeated before the queues `oracleTimeout`." - } - ] - }, - { - "name": "PermissionAccountData", - "description": "Size: 372 Bytes
Rent Exemption: 0.003480000 SOL

", - "children": [ - { - "name": "authority", - "description": "The authority that is allowed to set permissions for this account." - }, - { - "name": "permissions", - "description": "The SwitchboardPermission enumeration assigned by the `granter` to the `grantee`." - }, - { - "name": "granter", - "description": "Public key of account that is granting permissions to use its resources." - }, - { - "name": "grantee", - "description": "Public key of account that is being assigned permissions to use a granters resources." - }, - { - "name": "expiration", - "description": "Timestamp when the permissions expire." - }, - { - "name": "ebuf", - "description": "Reserved." - } - ] - }, - { - "name": "SbState", - "description": "Size: 1128 Bytes
Rent Exemption: 0.008741760 SOL

", - "children": [ - { - "name": "authority", - "description": "The account authority permitted to make account changes." - }, - { - "name": "tokenMint", - "description": "The token mint used for oracle rewards, aggregator leases, and other reward incentives." - }, - { - "name": "tokenVault", - "description": "Token vault used by the program to receive kickbacks." - }, - { - "name": "daoMint", - "description": "The token mint used by the DAO." - }, - { - "name": "ebuf", - "description": "Reserved." - } - ] - }, - { - "name": "VrfAccountData", - "description": "Size: 29058 Bytes
Rent Exemption: 0.203134560SOL

", - "children": [ - { - "name": "status", - "description": "The current status of the VRF account." - }, - { - "name": "counter", - "description": "Incremental counter for tracking VRF rounds." - }, - { - "name": "authority", - "description": "On-chain account delegated for making account changes." - }, - { - "name": "oracleQueue", - "description": "The OracleQueueAccountData that is assigned to fulfill VRF update request." - }, - { - "name": "escrow", - "description": "The token account used to hold funds for VRF update request." - }, - { - "name": "callback", - "description": "The callback that is invoked when an update request is successfully verified." - }, - { - "name": "batchSize", - "description": "The number of oracles assigned to a VRF update request." - }, - { - "name": "builders", - "description": "Struct containing the intermediate state between VRF crank actions." - }, - { - "name": "buildersLen", - "description": "The number of builders." - }, - { - "name": "currentRound", - "description": "Oracle results from the current round of update request that has not been accepted as valid yet" - }, - { - "name": "ebuf", - "description": "Reserved." - } - ] - } - ], - "types": [ - { - "name": "AggregatorAddJobParams", - "description": "", - "children": [] - }, - { - "name": "AggregatorHistoryRow", - "description": "", - "children": [ - { - "name": "timestamp", - "description": "The timestamp of the sample." - }, - { - "name": "value", - "description": "The value of the sample." - } - ] - }, - { - "name": "AggregatorInitParams", - "description": "Parameters to create and initialize the AggregatorAccount.", - "children": [ - { - "name": "name", - "description": "Name of the aggregator to store on-chain." - }, - { - "name": "metadata", - "description": "Metadata of the aggregator to store on-chain." - }, - { - "name": "batchSize", - "description": "Number of oracles to request on aggregator update." - }, - { - "name": "minOracleResults", - "description": "Minimum number of oracle responses required before a round is validated." - }, - { - "name": "minJobResults", - "description": "Minimum number of feed jobs suggested to be successful before an oracle sends a response." - }, - { - "name": "minUpdateDelaySeconds", - "description": "Minimum number of seconds required between aggregator rounds." - }, - { - "name": "startAfter", - "description": "unix_timestamp for which no feed update will occur before." - }, - { - "name": "varianceThreshold", - "description": "Change percentage required between a previous round and the current round. If variance percentage is not met, reject new oracle responses." - }, - { - "name": "forceReportPeriod", - "description": "Number of seconds for which, even if the variance threshold is not passed, accept new responses from oracles." - }, - { - "name": "expiration", - "description": "unix_timestamp after which funds may be withdrawn from the aggregator. null/undefined/0 means the feed has no expiration." - }, - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - } - ] - }, - { - "name": "AggregatorLockParams", - "description": "", - "children": [] - }, - { - "name": "AggregatorOpenRoundParams", - "description": "", - "children": [ - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - }, - { - "name": "leaseBump", - "description": "" - }, - { - "name": "permissionBump", - "description": "" - }, - { - "name": "jitter", - "description": "" - } - ] - }, - { - "name": "AggregatorRemoveJobParams", - "description": "", - "children": [ - { - "name": "jobIdx", - "description": "" - } - ] - }, - { - "name": "AggregatorRound", - "description": "", - "children": [ - { - "name": "numSuccess", - "description": "Number of successful responses" - }, - { - "name": "numError", - "description": "Number of error responses" - }, - { - "name": "isClosed", - "description": "Whether an update request round has ended" - }, - { - "name": "roundOpenSlot", - "description": "Solana slot when the update request round was open" - }, - { - "name": "roundOpenTimestamp", - "description": "Timestamp when the update request round was open" - }, - { - "name": "result", - "description": "Maintains the current median of all successful round responses" - }, - { - "name": "stdDeviation", - "description": "Standard deviation of the accepted results in the round" - }, - { - "name": "minResponse", - "description": "Maintains the minimum oracle response this round" - }, - { - "name": "maxResponse", - "description": "Maintains the maximum oracle response this round" - }, - { - "name": "oraclePubkeysData", - "description": "Public keys of the oracles fulfilling this round" - }, - { - "name": "mediansData", - "description": "Represents all successful node responses this round. `NaN` if empty" - }, - { - "name": "currentPayout", - "description": "Rewards to provide oracles and round openers on this queue." - }, - { - "name": "mediansFulfilled", - "description": "Keeps track of which responses are fulfilled here" - }, - { - "name": "errorsFulfilled", - "description": "Keeps track of which errors are fulfilled here" - } - ] - }, - { - "name": "AggregatorSaveResultParams", - "description": "", - "children": [ - { - "name": "oracleIdx", - "description": "" - }, - { - "name": "error", - "description": "" - }, - { - "name": "value", - "description": "" - }, - { - "name": "jobsChecksum", - "description": "" - }, - { - "name": "minResponse", - "description": "" - }, - { - "name": "maxResponse", - "description": "" - }, - { - "name": "feedPermissionBump", - "description": "" - }, - { - "name": "oraclePermissionBump", - "description": "" - }, - { - "name": "leaseBump", - "description": "" - }, - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - } - ] - }, - { - "name": "AggregatorSetAuthorityParams", - "description": "", - "children": [] - }, - { - "name": "AggregatorSetBatchSizeParams", - "description": "Set the number of oracles to request an update from each round.", - "children": [ - { - "name": "batchSize", - "description": "Number of oracles to request on aggregator update." - } - ] - }, - { - "name": "AggregatorSetHistoryBufferParams", - "description": "", - "children": [] - }, - { - "name": "AggregatorSetMinJobsParams", - "description": "Set the minimum number of feed jobs suggested to be successful before an oracle sends a response.", - "children": [ - { - "name": "minJobResults", - "description": "Minimum number of feed jobs suggested to be successful before an oracle sends a response." - } - ] - }, - { - "name": "AggregatorSetMinOraclesParams", - "description": "Set the minimum number of oracle responses required before a round is validated.", - "children": [ - { - "name": "minOracleResults", - "description": "Minimum number of oracle responses required before a round is validated." - } - ] - }, - { - "name": "AggregatorSetQueueParams", - "description": "", - "children": [] - }, - { - "name": "AggregatorSetVarianceThresholdParams", - "description": "Set the change percentage required between a previous round and the current round. If variance percentage is not met, reject new oracle responses.", - "children": [ - { - "name": "varianceThreshold", - "description": "Change percentage required between a previous round and the current round. If variance percentage is not met, reject new oracle responses." - } - ] - }, - { - "name": "BorshDecimal", - "description": "", - "children": [ - { - "name": "mantissa", - "description": "The part of a floating-point number that represents the significant digits of that number, and that is multiplied by the base raised to the exponent to give the actual value of the number." - }, - { - "name": "scale", - "description": "The number of decimal places to move to the left to yield the actual value." - } - ] - }, - { - "name": "BufferRelayerRound", - "description": "", - "children": [ - { - "name": "numSuccess", - "description": "Number of successful responses" - }, - { - "name": "numError", - "description": "Number of error responses" - }, - { - "name": "roundOpenSlot", - "description": "Slot when the buffer relayer round was opened" - }, - { - "name": "roundOpenTimestamp", - "description": "Timestamp when the buffer relayer round was opened" - }, - { - "name": "oraclePubkey", - "description": "The public key of the oracle fulfilling the buffer relayer update request" - } - ] - }, - { - "name": "CallbackZC", - "description": "", - "children": [ - { - "name": "programId", - "description": "The program ID of the callback program being invoked." - }, - { - "name": "accounts", - "description": "The accounts being used in the callback instruction." - }, - { - "name": "accountsLen", - "description": "The number of accounts in the accounts array." - }, - { - "name": "ixData", - "description": "The serialized instruction data." - }, - { - "name": "ixDataLen", - "description": "The length of the instruction buffer." - } - ] - }, - { - "name": "Callback", - "description": "", - "children": [ - { - "name": "programId", - "description": "The program ID of the callback program being invoked." - }, - { - "name": "accounts", - "description": "The accounts being used in the callback instruction." - }, - { - "name": "ixData", - "description": "The serialized instruction data." - } - ] - }, - { - "name": "CrankInitParams", - "description": "Parameters to create and initialize the CrankAccount.", - "children": [ - { - "name": "name", - "description": "" - }, - { - "name": "metadata", - "description": "Metadata of the crank to store on-chain." - }, - { - "name": "crankSize", - "description": "" - } - ] - }, - { - "name": "CrankPopParams", - "description": "Pops an aggregator from the crank.", - "children": [ - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - }, - { - "name": "leaseBumps", - "description": "" - }, - { - "name": "permissionBumps", - "description": "" - }, - { - "name": "nonce", - "description": "" - }, - { - "name": "failOpenOnAccountMismatch", - "description": "" - } - ] - }, - { - "name": "CrankPushParams", - "description": "Pushes a new aggregator onto the crank.", - "children": [ - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - }, - { - "name": "permissionBump", - "description": "" - } - ] - }, - { - "name": "CrankRow", - "description": "", - "children": [ - { - "name": "pubkey", - "description": "Aggregator account pubkey" - }, - { - "name": "nextTimestamp", - "description": "Next aggregator update timestamp to order the crank by" - } - ] - }, - { - "name": "EcvrfVerifyParams", - "description": "", - "children": [ - { - "name": "proof", - "description": "" - }, - { - "name": "alpha", - "description": "" - } - ] - }, - { - "name": "Error", - "description": "", - "children": [ - { - "name": "InvalidPublicKey", - "description": "" - }, - { - "name": "SerializationError", - "description": "" - }, - { - "name": "DeserializationError", - "description": "" - }, - { - "name": "InvalidDataError", - "description": "" - } - ] - }, - { - "name": "Hash", - "description": "", - "children": [ - { - "name": "data", - "description": "The bytes used to derive the hash." - } - ] - }, - { - "name": "JobInitParams", - "description": "", - "children": [ - { - "name": "name", - "description": "An optional name to apply to the job account." - }, - { - "name": "expiration", - "description": "unix_timestamp of when funds can be withdrawn from this account." - }, - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - }, - { - "name": "data", - "description": "A serialized protocol buffer holding the schema of the job." - } - ] - }, - { - "name": "LeaseExtendParams", - "description": "Adds fund to a LeaseAccount. Note that funds can always be withdrawn by the withdraw authority if one was set on lease initialization.", - "children": [ - { - "name": "loadAmount", - "description": "" - }, - { - "name": "leaseBump", - "description": "" - }, - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - } - ] - }, - { - "name": "LeaseInitParams", - "description": "Parameters for initializing a LeaseAccount", - "children": [ - { - "name": "loadAmount", - "description": "Token amount to load into the lease escrow" - }, - { - "name": "withdrawAuthority", - "description": "This authority will be permitted to withdraw funds from this lease." - }, - { - "name": "leaseBump", - "description": "" - }, - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - } - ] - }, - { - "name": "LeaseWithdrawParams", - "description": "Parameters for withdrawing from a LeaseAccount", - "children": [ - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - }, - { - "name": "leaseBump", - "description": "" - }, - { - "name": "amount", - "description": "Token amount to withdraw from the lease escrow" - } - ] - }, - { - "name": "OracleHeartbeatParams", - "description": "Parameters to initiate a heartbeat for an OracleAccount, signifying oracle is still healthy.", - "children": [ - { - "name": "permissionBump", - "description": "" - } - ] - }, - { - "name": "OracleInitParams", - "description": "", - "children": [ - { - "name": "name", - "description": "Name of the oracle to store on-chain." - }, - { - "name": "metadata", - "description": "Metadata of the oracle to store on-chain." - }, - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - }, - { - "name": "oracleBump", - "description": "" - } - ] - }, - { - "name": "OracleMetrics", - "description": "", - "children": [ - { - "name": "consecutiveSuccess", - "description": "Number of consecutive successful update request" - }, - { - "name": "consecutiveError", - "description": "Number of consecutive update request that resulted in an error" - }, - { - "name": "consecutiveDisagreement", - "description": "Number of consecutive update request that resulted in a disagreement with the accepted median result" - }, - { - "name": "consecutiveLateResponse", - "description": "Number of consecutive update request that were posted on-chain late and not included in an accepted result" - }, - { - "name": "consecutiveFailure", - "description": "Number of consecutive update request that resulted in a failure" - }, - { - "name": "totalSuccess", - "description": "Total number of successful update request" - }, - { - "name": "totalError", - "description": "Total number of update request that resulted in an error" - }, - { - "name": "totalDisagreement", - "description": "Total number of update request that resulted in a disagreement with the accepted median result" - }, - { - "name": "totalLateResponse", - "description": "Total number of update request that were posted on-chain late and not included in an accepted result" - } - ] - }, - { - "name": "OracleQueueInitParams", - "description": "", - "children": [ - { - "name": "name", - "description": "Name of the queue to store on-chain." - }, - { - "name": "metadata", - "description": "Metadata of the queue to store on-chain." - }, - { - "name": "reward", - "description": "Rewards to provide oracles and round openers on this queue." - }, - { - "name": "minStake", - "description": "The minimum amount of stake oracles must present to remain on the queue." - }, - { - "name": "feedProbationPeriod", - "description": "After a feed lease is funded or re-funded, it must consecutively succeed N amount of times or its authorization to use the queue is auto-revoked." - }, - { - "name": "oracleTimeout", - "description": "Time period we should remove an oracle after if no response." - }, - { - "name": "slashingEnabled", - "description": "Whether slashing is enabled on this queue." - }, - { - "name": "varianceToleranceMultiplier", - "description": "The tolerated variance amount oracle results can have from the accepted round result before being slashed. slashBound = varianceToleranceMultiplier * stdDeviation Default: 2" - }, - { - "name": "consecutiveFeedFailureLimit", - "description": "Consecutive failure limit for a feed before feed permission is revoked." - }, - { - "name": "consecutiveOracleFailureLimit", - "description": "Consecutive failure limit for an oracle before oracle permission is revoked." - }, - { - "name": "queueSize", - "description": "The size of the queue." - }, - { - "name": "unpermissionedFeeds", - "description": "Enabling this setting means data feeds do not need explicit permission to join the queue." - } - ] - }, - { - "name": "OracleQueueSetRewardsParams", - "description": "Set the rewards to provide oracles and round openers on this queue.", - "children": [ - { - "name": "rewards", - "description": "Rewards to provide oracles and round openers on this queue." - } - ] - }, - { - "name": "OracleResponseType", - "description": "", - "children": [ - { - "name": "TypeSuccess", - "description": "" - }, - { - "name": "TypeError", - "description": "" - }, - { - "name": "TypeDisagreement", - "description": "" - }, - { - "name": "TypeNoResponse", - "description": "" - } - ] - }, - { - "name": "OracleWithdrawParams", - "description": "Parameters to withdraw stake and/or rewards from an OracleAccount.", - "children": [ - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - }, - { - "name": "permissionBump", - "description": "" - }, - { - "name": "amount", - "description": "" - } - ] - }, - { - "name": "PermissionInitParams", - "description": "", - "children": [ - { - "name": "permissionBump", - "description": "" - } - ] - }, - { - "name": "PermissionSetParams", - "description": "Parameters to set the permission in the PermissionAccount", - "children": [ - { - "name": "permission", - "description": "The SwitchboardPermission enumeration to set." - }, - { - "name": "enable", - "description": "Specifies whether to enable or disable the permission." - } - ] - }, - { - "name": "ProgramConfigParams", - "description": "", - "children": [ - { - "name": "token", - "description": "" - }, - { - "name": "bump", - "description": "" - } - ] - }, - { - "name": "ProgramInitParams", - "description": "", - "children": [ - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - } - ] - }, - { - "name": "SwitchboardDecimal", - "description": "A struct representing a floating point number on-chain.", - "children": [ - { - "name": "mantissa", - "description": "The part of a floating-point number that represents the significant digits of that number, and that is multiplied by the base, 10, raised to the power of scale to give the actual value of the number." - }, - { - "name": "scale", - "description": "The number of decimal places to move to the left to yield the actual value." - } - ] - }, - { - "name": "SwitchboardPermission", - "description": "", - "children": [ - { - "name": "None", - "description": "No permissions currently granted between granter and grantee." - }, - { - "name": "PermitOracleHeartbeat", - "description": "queue `authority` has permitted an Oracle Account to heartbeat on it's queue and receive update requests. Oracles _always_ need permissions to join a queue." - }, - { - "name": "PermitOracleQueueUsage", - "description": "queue `authority` has permitted an Aggregator Account to request updates from it's oracles or join an existing crank. **Note:** Not required if a queue has `unpermissionedFeedsEnabled`." - }, - { - "name": "PermitVrfRequests", - "description": "queue `authority` has permitted a VRF Account to request randomness from it's oracles. **Note:** Not required if a queue has `unpermissionedVrfEnabled`." - } - ] - }, - { - "name": "VaultTransferParams", - "description": "", - "children": [ - { - "name": "stateBump", - "description": "The SbState bump used to derive its public key." - }, - { - "name": "amount", - "description": "" - } - ] - }, - { - "name": "VrfBuilder", - "description": "", - "children": [ - { - "name": "producer", - "description": "" - }, - { - "name": "status", - "description": "" - }, - { - "name": "reprProof", - "description": "" - }, - { - "name": "proof", - "description": "" - }, - { - "name": "yPoint", - "description": "" - }, - { - "name": "stage", - "description": "" - }, - { - "name": "stage1Out", - "description": "" - }, - { - "name": "r1", - "description": "" - }, - { - "name": "r2", - "description": "" - }, - { - "name": "stage3Out", - "description": "" - }, - { - "name": "hPoint", - "description": "" - }, - { - "name": "sReduced", - "description": "" - }, - { - "name": "yPointBuilder", - "description": "" - }, - { - "name": "yRistrettoPoint", - "description": "" - }, - { - "name": "mulRound", - "description": "" - }, - { - "name": "hashPointsRound", - "description": "" - }, - { - "name": "mulTmp1", - "description": "" - }, - { - "name": "uPoint1", - "description": "" - }, - { - "name": "uPoint2", - "description": "" - }, - { - "name": "vPoint1", - "description": "" - }, - { - "name": "vPoint2", - "description": "" - }, - { - "name": "uPoint", - "description": "" - }, - { - "name": "vPoint", - "description": "" - }, - { - "name": "u1", - "description": "" - }, - { - "name": "u2", - "description": "" - }, - { - "name": "invertee", - "description": "" - }, - { - "name": "y", - "description": "" - }, - { - "name": "z", - "description": "" - }, - { - "name": "p1Bytes", - "description": "" - }, - { - "name": "p2Bytes", - "description": "" - }, - { - "name": "p3Bytes", - "description": "" - }, - { - "name": "p4Bytes", - "description": "" - }, - { - "name": "cPrimeHashbuf", - "description": "" - }, - { - "name": "m1", - "description": "" - }, - { - "name": "m2", - "description": "" - }, - { - "name": "txRemaining", - "description": "" - }, - { - "name": "verified", - "description": "" - }, - { - "name": "result", - "description": "" - } - ] - }, - { - "name": "VrfStatus", - "description": "", - "children": [ - { - "name": "StatusNone", - "description": "VRF Account has not requested randomness yet." - }, - { - "name": "StatusRequesting", - "description": "VRF Account has requested randomness but has yet to receive an oracle response." - }, - { - "name": "StatusVerifying", - "description": "VRF Account has received a VRF proof that has yet to be verified on-chain." - }, - { - "name": "StatusVerified", - "description": "VRF Account has successfully requested and verified randomness on-chain." - }, - { - "name": "StatusCallbackSuccess", - "description": "VRF Account's callback was invoked successfully." - }, - { - "name": "StatusVerifyFailure", - "description": "Failed to verify VRF proof." - } - ] - }, - { - "name": "VrfRound", - "description": "", - "children": [ - { - "name": "vrfProducer", - "description": "The oracle assigned to the VRF request." - }, - { - "name": "reprProof", - "description": "" - }, - { - "name": "proof", - "description": "" - }, - { - "name": "alpha", - "description": "" - }, - { - "name": "alphaLen", - "description": "" - }, - { - "name": "stage", - "description": "" - }, - { - "name": "ebuf", - "description": "" - } - ] - } - ], - "instructions": [ - { - "name": "aggregatorAddJob", - "description": "Add a new job to an aggregator to be performed on feed updates", - "children": [ - { - "name": "aggregator", - "description": "" - }, - { - "name": "authority", - "description": "" - }, - { - "name": "job", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "aggregatorInit", - "description": "Create and initialize the AggregatorAccount.", - "children": [ - { - "name": "aggregator", - "description": "The AggregatorAccountData being initialized." - }, - { - "name": "authority", - "description": "The aggregator authority delegated to make account changes." - }, - { - "name": "queue", - "description": "The OracleQueueAccountData the aggregator is being created for." - }, - { - "name": "authorWallet", - "description": "An optional wallet for receiving kickbacks from job usage in feeds. Defaults to token vault." - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "aggregatorLock", - "description": "Prevent new jobs from being added to the feed.", - "children": [ - { - "name": "aggregator", - "description": "" - }, - { - "name": "authority", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "aggregatorOpenRound", - "description": "Opens a new round for the aggregator and will provide an incentivize reward to the caller", - "children": [ - { - "name": "aggregator", - "description": "The AggregatorAccountData that is requesting a new result." - }, - { - "name": "lease", - "description": "The LeaseAccountData for an aggregator that is funding oracle rewards if a new value is successfully accepted on-chain." - }, - { - "name": "oracleQueue", - "description": "The OracleQueueAccountData that an aggregator has permissions for." - }, - { - "name": "queueAuthority", - "description": "The account delegated as the authority for the queue that can create permissions targeted at the queue." - }, - { - "name": "permission", - "description": "The PermissionAccountData that grants an aggregator permissions to use an oracle queue." - }, - { - "name": "escrow", - "description": "The escrow token account holding the oracle's reward if a new value is accepted on-chain successfully." - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "payoutWallet", - "description": "The token wallet that will receive a reward if an aggregator's config permits a new update request." - }, - { - "name": "tokenProgram", - "description": "The Solana token program account." - }, - { - "name": "dataBuffer", - "description": "The public key of the OracleQueueBuffer account holding a collection of Oracle pubkeys that haver successfully heartbeated before the queues `oracleTimeout`." - }, - { - "name": "tokenProgram", - "description": "The Solana token program ID." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "aggregatorRemoveJob", - "description": "Remove a job from an aggregator.", - "children": [ - { - "name": "aggregator", - "description": "" - }, - { - "name": "authority", - "description": "" - }, - { - "name": "job", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "aggregatorSaveResult", - "description": "Oracle saving result for a feed update request to an aggregator round.", - "children": [ - { - "name": "aggregator", - "description": "" - }, - { - "name": "oracle", - "description": "" - }, - { - "name": "oracleAuthority", - "description": "" - }, - { - "name": "oracleQueue", - "description": "" - }, - { - "name": "queueAuthority", - "description": "" - }, - { - "name": "feedPermission", - "description": "" - }, - { - "name": "oraclePermission", - "description": "" - }, - { - "name": "lease", - "description": "" - }, - { - "name": "escrow", - "description": "" - }, - { - "name": "tokenProgram", - "description": "The Solana token program account." - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "historyBuffer", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "aggregatorSetAuthority", - "description": "Change the aggregator authority.", - "children": [ - { - "name": "aggregator", - "description": "" - }, - { - "name": "authority", - "description": "" - }, - { - "name": "newAuthority", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "aggregatorSetBatchSize", - "description": "", - "children": [ - { - "name": "aggregator", - "description": "" - }, - { - "name": "authority", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "aggregatorSetHistoryBuffer", - "description": "", - "children": [ - { - "name": "aggregator", - "description": "" - }, - { - "name": "authority", - "description": "" - }, - { - "name": "buffer", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "aggregatorSetMinJobs", - "description": "Set the minimum number of feed jobs suggested to be successful before an oracle sends a response.", - "children": [ - { - "name": "aggregator", - "description": "" - }, - { - "name": "authority", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "aggregatorSetMinOracles", - "description": "Set the minimum number of oracle responses required before a round is validated.", - "children": [ - { - "name": "aggregator", - "description": "" - }, - { - "name": "authority", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "aggregatorSetQueue", - "description": "", - "children": [ - { - "name": "aggregator", - "description": "" - }, - { - "name": "authority", - "description": "" - }, - { - "name": "queue", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "aggregatorSetVarianceThreshold", - "description": "Set the change percentage required between a previous round and the current round. If variance percentage is not met, reject new oracle responses.", - "children": [ - { - "name": "aggregator", - "description": "" - }, - { - "name": "authority", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "crankInit", - "description": "Create and initialize the CrankAccount.", - "children": [ - { - "name": "crank", - "description": "" - }, - { - "name": "queue", - "description": "" - }, - { - "name": "buffer", - "description": "" - }, - { - "name": "payer", - "description": "" - }, - { - "name": "systemProgram", - "description": "The Solana system program account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "crankPop", - "description": "Pops an aggregator from the crank.", - "children": [ - { - "name": "crank", - "description": "" - }, - { - "name": "oracleQueue", - "description": "" - }, - { - "name": "queueAuthority", - "description": "The account delegated as the authority for making account changes or assigning permissions targeted at the queue." - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "payoutWallet", - "description": "" - }, - { - "name": "tokenProgram", - "description": "The Solana token program account." - }, - { - "name": "crankDataBuffer", - "description": "" - }, - { - "name": "queueDataBuffer", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "crankPush", - "description": "Pushes a new aggregator onto the crank.", - "children": [ - { - "name": "crank", - "description": "The crank to add a new aggregator to." - }, - { - "name": "aggregator", - "description": "The aggregator being pushed onto the crank." - }, - { - "name": "oracleQueue", - "description": "The crank and aggregators assigned oracle queue." - }, - { - "name": "queueAuthority", - "description": "The account delegated as the authority for making account changes or assigning permissions targeted at the queue." - }, - { - "name": "permission", - "description": "The aggregator's permission account." - }, - { - "name": "lease", - "description": "The aggregator's lease contract." - }, - { - "name": "escrow", - "description": "" - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "dataBuffer", - "description": "The crank buffer account holding an array of CrankRows." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "ecvrfVerify", - "description": "", - "children": [ - { - "name": "randomnessProducer", - "description": "" - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "jobInit", - "description": "Create and initialize the JobAccount.", - "children": [ - { - "name": "job", - "description": "" - }, - { - "name": "authorWallet", - "description": "An optional wallet for receiving kickbacks from job usage in feeds. Defaults to token vault." - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "leaseExtend", - "description": "Adds fund to a LeaseAccount. Note that funds can always be withdrawn by the withdraw authority if one was set on lease initialization.", - "children": [ - { - "name": "lease", - "description": "" - }, - { - "name": "aggregator", - "description": "" - }, - { - "name": "queue", - "description": "" - }, - { - "name": "funder", - "description": "" - }, - { - "name": "owner", - "description": "" - }, - { - "name": "escrow", - "description": "" - }, - { - "name": "tokenProgram", - "description": "The Solana token program account." - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "leaseInit", - "description": "Create and initialize the LeaseAccount.", - "children": [ - { - "name": "lease", - "description": "" - }, - { - "name": "queue", - "description": "" - }, - { - "name": "aggregator", - "description": "" - }, - { - "name": "funder", - "description": "" - }, - { - "name": "payer", - "description": "" - }, - { - "name": "systemProgram", - "description": "The Solana system program account." - }, - { - "name": "tokenProgram", - "description": "The Solana token program account." - }, - { - "name": "owner", - "description": "" - }, - { - "name": "escrow", - "description": "" - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "leaseWithdraw", - "description": "", - "children": [ - { - "name": "lease", - "description": "" - }, - { - "name": "escrow", - "description": "" - }, - { - "name": "aggregator", - "description": "" - }, - { - "name": "queue", - "description": "" - }, - { - "name": "withdrawAuthority", - "description": "" - }, - { - "name": "withdrawAccount", - "description": "" - }, - { - "name": "tokenProgram", - "description": "The Solana token program account." - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "oracleHeartbeat", - "description": "Initiates a heartbeat for an OracleAccount, signifying oracle is still healthy.", - "children": [ - { - "name": "oracle", - "description": "The OracleAccountData that is heartbeating on-chain." - }, - { - "name": "oracleAuthority", - "description": "The OracleAccountData authority that is permitted to heartbeat." - }, - { - "name": "tokenAccount", - "description": "The token wallet for the oracle." - }, - { - "name": "gcOracle", - "description": "The current garbage collection oracle that may be swapped in the buffer periodically." - }, - { - "name": "oracleQueue", - "description": "The OracleQueueAccountData that an oracle is heartbeating for." - }, - { - "name": "permission", - "description": "The PermissionAccountData that grants an oracle heartbeat permissions." - }, - { - "name": "dataBuffer", - "description": "The OracleQueueBuffer account holding a collection of Oracle pubkeys." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "oracleInit", - "description": "Create and initialize the OracleAccount.
Size: 636 Bytes
Rent Exemption: 0.00531744 SOL", - "children": [ - { - "name": "oracle", - "description": "" - }, - { - "name": "oracleAuthority", - "description": "" - }, - { - "name": "wallet", - "description": "" - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "queue", - "description": "" - }, - { - "name": "payer", - "description": "" - }, - { - "name": "systemProgram", - "description": "The Solana system program account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "oracleQueueInit", - "description": "Create and initialize the OracleQueueAccount.", - "children": [ - { - "name": "oracleQueue", - "description": "" - }, - { - "name": "authority", - "description": "The account delegated as the authority for making account changes or assigning permissions targeted at the queue." - }, - { - "name": "buffer", - "description": "" - }, - { - "name": "payer", - "description": "" - }, - { - "name": "systemProgram", - "description": "The Solana system program account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "oracleQueueSetRewards", - "description": "Set the rewards to provide oracles and round openers on this queue.", - "children": [ - { - "name": "queue", - "description": "" - }, - { - "name": "authority", - "description": "The account delegated as the authority for making account changes or assigning permissions targeted at the queue." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "oracleWithdraw", - "description": "Withdraw stake and/or rewards from an OracleAccount.", - "children": [ - { - "name": "oracle", - "description": "" - }, - { - "name": "oracleAuthority", - "description": "" - }, - { - "name": "tokenAccount", - "description": "" - }, - { - "name": "withdrawAccount", - "description": "" - }, - { - "name": "oracleQueue", - "description": "" - }, - { - "name": "permission", - "description": "" - }, - { - "name": "tokenProgram", - "description": "The Solana token program account." - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "payer", - "description": "" - }, - { - "name": "systemProgram", - "description": "The Solana system program account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "permissionInit", - "description": "Create and initialize the PermissionAccount.", - "children": [ - { - "name": "permission", - "description": "The permission account being initialized." - }, - { - "name": "authority", - "description": "The PermissionAccountData authority that can update an account's permissions." - }, - { - "name": "granter", - "description": "The account receiving the assigned permissions." - }, - { - "name": "grantee", - "description": "The account granting the assigned permissions." - }, - { - "name": "payer", - "description": "The account paying for the new permission account on-chain." - }, - { - "name": "systemProgram", - "description": "The Solana system program account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "permissionSet", - "description": "Sets the permission in the PermissionAccount", - "children": [ - { - "name": "permission", - "description": "The PermissionAccountData that is being updated." - }, - { - "name": "authority", - "description": "The PermissionAccountData authority that can update an account's permissions." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "programConfig", - "description": "", - "children": [ - { - "name": "authority", - "description": "The SbState authority that permits account changes." - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "programInit", - "description": "Create and initialize the SbState.", - "children": [ - { - "name": "state", - "description": "The SbState account being initialized." - }, - { - "name": "authority", - "description": "The account delegated as the program authority." - }, - { - "name": "tokenMint", - "description": "The token mint that is used for oracle rewards, aggregator leases, and other reward incentives." - }, - { - "name": "vault", - "description": "The token wallet for the program state account." - }, - { - "name": "payer", - "description": "The account paying for the new on-chain account." - }, - { - "name": "systemProgram", - "description": "The Solana system program account." - }, - { - "name": "tokenProgram", - "description": "The Solana token program account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "vaultTransfer", - "description": "", - "children": [ - { - "name": "state", - "description": "" - }, - { - "name": "authority", - "description": "" - }, - { - "name": "to", - "description": "" - }, - { - "name": "vault", - "description": "" - }, - { - "name": "tokenProgram", - "description": "The Solana token program account." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "vrfInit", - "description": "", - "children": [ - { - "name": "vrf", - "description": "The VrfAccountData that is being initialized." - }, - { - "name": "authority", - "description": "The VrfAccountData authority that can request new VRF results." - }, - { - "name": "oracleQueue", - "description": "The OracleQueueAccountData that the VRF account is joining." - }, - { - "name": "escrow", - "description": "The escrow token account for the programState's mint holding the oracle rewards for VRF update request." - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "tokenProgram", - "description": "The Solana token Program ID." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "vrfProve", - "description": "", - "children": [ - { - "name": "vrf", - "description": "The VrfAccountData that requested a new randomness result." - }, - { - "name": "oracle", - "description": "The OracleAccountData that is assigned to the VRF request." - }, - { - "name": "randomnessProducer", - "description": "The randomness producer for the VRF request, specific to the Oracle assigned to the VRF request." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "vrfRequestRandomness", - "description": "", - "children": [ - { - "name": "authority", - "description": "The VrfAccountData authority that is permitted to request randomness." - }, - { - "name": "vrf", - "description": "The VrfAccountData that is requesting a new randomness result." - }, - { - "name": "oracleQueue", - "description": "The OracleQueueAccountData that the VRF Account is assigned to." - }, - { - "name": "queueAuthority", - "description": "The Oracle Queue's authority." - }, - { - "name": "dataBuffer", - "description": "The OracleQueueBuffer account holding a collection of Oracle pubkeys." - }, - { - "name": "permission", - "description": "The permission account that allows a VRF Account to request randomness." - }, - { - "name": "escrow", - "description": "The escrow token account holding the oracle's reward if successful." - }, - { - "name": "payerWallet", - "description": "The payer wallet who is funding the VRF request." - }, - { - "name": "payerAuthority", - "description": "The payer wallet's authority who can approve token transfers." - }, - { - "name": "recentBlockhashes", - "description": "The Solana account holding the most recent blockhashes for the VRF proof." - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "tokenProgram", - "description": "The Solana token Program ID." - }, - { - "name": "params", - "description": "" - } - ] - }, - { - "name": "vrfVerify", - "description": "", - "children": [ - { - "name": "vrf", - "description": "The VRF Account to verify the proof for." - }, - { - "name": "callbackPid", - "description": "The VRF Account's callback program ID." - }, - { - "name": "tokenProgram", - "description": "The Solana token Program ID." - }, - { - "name": "escrow", - "description": "The escrow token account holding the oracle's reward if successful." - }, - { - "name": "programState", - "description": "The Switchboard SbState account." - }, - { - "name": "oracle", - "description": "The Oracle Account verifying the VRF proof." - }, - { - "name": "oracleAuthority", - "description": "The Oracle authority who is permitted to make on-chain transactions." - }, - { - "name": "oracleWallet", - "description": "The Oracle's token wallet receiving the VRF reward if successful." - }, - { - "name": "params", - "description": "" - } - ] - } - ], - "events": [ - { - "name": "AggregatorInitEvent", - "description": "New aggregator created on-chain", - "children": [ - { - "name": "feedPubkey", - "description": "Public key of the newly created aggregator" - } - ] - }, - { - "name": "AggregatorOpenRoundEvent", - "description": "OpenRound successfully called on an aggregator", - "children": [ - { - "name": "feedPubkey", - "description": "Public key of the aggregator requesting a new result" - }, - { - "name": "oraclePubkeys", - "description": "Oracles assigned to the update request" - }, - { - "name": "jobPubkeys", - "description": "Job accounts associated with an aggregator containing the job definitions" - }, - { - "name": "remainingFunds", - "description": "Remaining funds in the aggregators lease contract" - }, - { - "name": "queueAuthority", - "description": "The account delegated as the authority for making account changes or assigning permissions targeted at the queue." - } - ] - }, - { - "name": "AggregatorValueUpdateEvent", - "description": "", - "children": [ - { - "name": "feedPubkey", - "description": "" - }, - { - "name": "value", - "description": "" - }, - { - "name": "slot", - "description": "" - }, - { - "name": "timestamp", - "description": "" - }, - { - "name": "oraclePubkeys", - "description": "" - }, - { - "name": "oracleValues", - "description": "" - } - ] - }, - { - "name": "CrankLeaseInsufficientFundsEvent", - "description": "", - "children": [ - { - "name": "feedPubkey", - "description": "" - }, - { - "name": "leasePubkey", - "description": "" - } - ] - }, - { - "name": "CrankPopExpectedFailureEvent", - "description": "", - "children": [ - { - "name": "feedPubkey", - "description": "" - }, - { - "name": "leasePubkey", - "description": "" - } - ] - }, - { - "name": "FeedPermissionRevokedEvent", - "description": "", - "children": [ - { - "name": "feedPubkey", - "description": "" - }, - { - "name": "timestamp", - "description": "" - } - ] - }, - { - "name": "GarbageCollectFailureEvent", - "description": "", - "children": [ - { - "name": "queuePubkey", - "description": "" - } - ] - }, - { - "name": "LeaseFundEvent", - "description": "", - "children": [ - { - "name": "leasePubkey", - "description": "" - }, - { - "name": "funder", - "description": "" - }, - { - "name": "amount", - "description": "" - }, - { - "name": "timestamp", - "description": "" - } - ] - }, - { - "name": "LeaseWithdrawEvent", - "description": "", - "children": [ - { - "name": "leasePubkey", - "description": "" - }, - { - "name": "walletPubkey", - "description": "" - }, - { - "name": "previousAmount", - "description": "" - }, - { - "name": "newAmount", - "description": "" - }, - { - "name": "timestamp", - "description": "" - } - ] - }, - { - "name": "OracleBootedEvent", - "description": "", - "children": [ - { - "name": "queuePubkey", - "description": "" - }, - { - "name": "oraclePubkey", - "description": "" - } - ] - }, - { - "name": "OracleRewardEvent", - "description": "", - "children": [ - { - "name": "feedPubkey", - "description": "" - }, - { - "name": "leasePubkey", - "description": "" - }, - { - "name": "oraclePubkey", - "description": "" - }, - { - "name": "walletPubkey", - "description": "" - }, - { - "name": "amount", - "description": "" - }, - { - "name": "roundSlot", - "description": "" - }, - { - "name": "timestamp", - "description": "" - } - ] - }, - { - "name": "OracleSlashEvent", - "description": "", - "children": [ - { - "name": "feedPubkey", - "description": "" - }, - { - "name": "leasePubkey", - "description": "" - }, - { - "name": "oraclePubkey", - "description": "" - }, - { - "name": "walletPubkey", - "description": "" - }, - { - "name": "amount", - "description": "" - }, - { - "name": "roundSlot", - "description": "" - }, - { - "name": "timestamp", - "description": "" - } - ] - }, - { - "name": "OracleWithdrawEvent", - "description": "", - "children": [ - { - "name": "oraclePubkey", - "description": "" - }, - { - "name": "walletPubkey", - "description": "" - }, - { - "name": "destinationWallet", - "description": "" - }, - { - "name": "previousAmount", - "description": "" - }, - { - "name": "newAmount", - "description": "" - }, - { - "name": "timestamp", - "description": "" - } - ] - }, - { - "name": "ProbationBrokenEvent", - "description": "", - "children": [ - { - "name": "feedPubkey", - "description": "" - }, - { - "name": "queuePubkey", - "description": "" - }, - { - "name": "timestamp", - "description": "" - } - ] - } - ], - "errors": [ - { - "name": "ArrayOperationError", - "description": "" - }, - { - "name": "QueueOperationError", - "description": "" - }, - { - "name": "IncorrectProgramOwnerError", - "description": "" - }, - { - "name": "InvalidAggregatorRound", - "description": "" - }, - { - "name": "TooManyAggregatorJobs", - "description": "" - }, - { - "name": "AggregatorCurrentRoundClosed", - "description": "" - }, - { - "name": "AggregatorInvalidSaveResult", - "description": "" - }, - { - "name": "InvalidStrDecimalConversion", - "description": "" - }, - { - "name": "AccountLoaderMissingSignature", - "description": "" - }, - { - "name": "MissingRequiredSignature", - "description": "" - }, - { - "name": "ArrayOverflowError", - "description": "" - }, - { - "name": "ArrayUnderflowError", - "description": "" - }, - { - "name": "PubkeyNotFoundError", - "description": "" - }, - { - "name": "AggregatorIllegalRoundOpenCall", - "description": "" - }, - { - "name": "AggregatorIllegalRoundCloseCall", - "description": "" - }, - { - "name": "AggregatorClosedError", - "description": "" - }, - { - "name": "IllegalOracleIdxError", - "description": "" - }, - { - "name": "OracleAlreadyRespondedError", - "description": "" - }, - { - "name": "ProtoDeserializeError", - "description": "" - }, - { - "name": "UnauthorizedStateUpdateError", - "description": "" - }, - { - "name": "MissingOracleAccountsError", - "description": "" - }, - { - "name": "OracleMismatchError", - "description": "" - }, - { - "name": "CrankMaxCapacityError", - "description": "" - }, - { - "name": "AggregatorLeaseInsufficientFunds", - "description": "" - }, - { - "name": "IncorrectTokenAccountMint", - "description": "" - }, - { - "name": "InvalidEscrowAccount", - "description": "" - }, - { - "name": "CrankEmptyError", - "description": "" - }, - { - "name": "PdaDeriveError", - "description": "" - }, - { - "name": "AggregatorAccountNotFound", - "description": "" - }, - { - "name": "PermissionAccountNotFound", - "description": "" - }, - { - "name": "LeaseAccountDeriveFailure", - "description": "" - }, - { - "name": "PermissionAccountDeriveFailure", - "description": "" - }, - { - "name": "EscrowAccountNotFound", - "description": "" - }, - { - "name": "LeaseAccountNotFound", - "description": "" - }, - { - "name": "DecimalConversionError", - "description": "" - }, - { - "name": "PermissionDenied", - "description": "" - }, - { - "name": "QueueAtCapacity", - "description": "" - }, - { - "name": "ExcessiveCrankRowsError", - "description": "" - }, - { - "name": "AggregatorLockedError", - "description": "" - }, - { - "name": "AggregatorInvalidBatchSizeError", - "description": "" - }, - { - "name": "AggregatorJobChecksumMismatch", - "description": "" - }, - { - "name": "IntegerOverflowError", - "description": "" - }, - { - "name": "InvalidUpdatePeriodError", - "description": "" - }, - { - "name": "NoResultsError", - "description": "" - }, - { - "name": "InvalidExpirationError", - "description": "" - }, - { - "name": "InsufficientStakeError", - "description": "" - }, - { - "name": "LeaseInactiveError", - "description": "" - }, - { - "name": "NoAggregatorJobsFound", - "description": "" - }, - { - "name": "IntegerUnderflowError", - "description": "" - }, - { - "name": "OracleQueueMismatch", - "description": "" - }, - { - "name": "OracleWalletMismatchError", - "description": "" - }, - { - "name": "InvalidBufferAccountError", - "description": "" - }, - { - "name": "InsufficientOracleQueueError", - "description": "" - }, - { - "name": "InvalidAuthorityError", - "description": "" - }, - { - "name": "InvalidTokenAccountMintError", - "description": "" - }, - { - "name": "ExcessiveLeaseWithdrawlError", - "description": "" - }, - { - "name": "InvalideHistoryAccountError", - "description": "" - }, - { - "name": "InvalidLeaseAccountEscrowError", - "description": "" - }, - { - "name": "InvalidCrankAccountError", - "description": "" - }, - { - "name": "CrankNoElementsReadyError", - "description": "" - }, - { - "name": "VrfVerifyError", - "description": "" - } - ] -} diff --git a/website/idl/errors.md b/website/idl/errors.md deleted file mode 100644 index 1954353..0000000 --- a/website/idl/errors.md +++ /dev/null @@ -1,96 +0,0 @@ ---- -sidebar_position: 50 -title: Errors ---- - -## Anchor Errors - -See [@coral-xyz/anchor/src/error.ts#L308](https://github.com/coral-xyz/anchor/blob/HEAD/ts/src/error.ts#L308) for a list of built-in Anchor errors. - -## Switchboard Errors - -| Code | Hex | Name | Message | -| ---- | ------ | -------------------------------- | --------------------------------------------------------------------------- | -| 6000 | 0x1770 | ArrayOperationError | Illegal operation on a Switchboard array. | -| 6001 | 0x1771 | QueueOperationError | Illegal operation on a Switchboard queue. | -| 6002 | 0x1772 | IncorrectProgramOwnerError | An account required to be owned by the program has a different owner. | -| 6003 | 0x1773 | InvalidAggregatorRound | Aggregator is not currently populated with a valid round. | -| 6004 | 0x1774 | TooManyAggregatorJobs | Aggregator cannot fit any more jobs. | -| 6005 | 0x1775 | AggregatorCurrentRoundClosed | Aggregator's current round is closed. No results are being accepted. | -| 6006 | 0x1776 | AggregatorInvalidSaveResult | Aggregator received an invalid save result instruction. | -| 6007 | 0x1777 | InvalidStrDecimalConversion | Failed to convert string to decimal format. | -| 6008 | 0x1778 | AccountLoaderMissingSignature | AccountLoader account is missing a required signature. | -| 6009 | 0x1779 | MissingRequiredSignature | Account is missing a required signature. | -| 6010 | 0x177a | ArrayOverflowError | The attempted action will overflow a zero-copy account array. | -| 6011 | 0x177b | ArrayUnderflowError | The attempted action will underflow a zero-copy account array. | -| 6012 | 0x177c | PubkeyNotFoundError | The queried public key was not found. | -| 6013 | 0x177d | AggregatorIllegalRoundOpenCall | Aggregator round open called too early. | -| 6014 | 0x177e | AggregatorIllegalRoundCloseCall | Aggregator round close called too early. | -| 6015 | 0x177f | AggregatorClosedError | Aggregator is closed. Illegal action. | -| 6016 | 0x1780 | IllegalOracleIdxError | Illegal oracle index. | -| 6017 | 0x1781 | OracleAlreadyRespondedError | The provided oracle has already responded this round. | -| 6018 | 0x1782 | ProtoDeserializeError | Failed to deserialize protocol buffer. | -| 6019 | 0x1783 | UnauthorizedStateUpdateError | Unauthorized program state modification attempted. | -| 6020 | 0x1784 | MissingOracleAccountsError | Not enough oracle accounts provided to closeRounds. | -| 6021 | 0x1785 | OracleMismatchError | An unexpected oracle account was provided for the transaction. | -| 6022 | 0x1786 | CrankMaxCapacityError | Attempted to push to a Crank that's at capacity | -| 6023 | 0x1787 | AggregatorLeaseInsufficientFunds | Aggregator update call attempted but attached lease has insufficient funds. | -| 6024 | 0x1788 | IncorrectTokenAccountMint | The provided token account does not point to the Switchboard token mint. | -| 6025 | 0x1789 | InvalidEscrowAccount | An invalid escrow account was provided. | -| 6026 | 0x178a | CrankEmptyError | Crank empty. Pop failed. | -| 6027 | 0x178b | PdaDeriveError | Failed to derive a PDA from the provided seed. | -| 6028 | 0x178c | AggregatorAccountNotFound | Aggregator account missing from provided account list. | -| 6029 | 0x178d | PermissionAccountNotFound | Permission account missing from provided account list. | -| 6030 | 0x178e | LeaseAccountDeriveFailure | Failed to derive a lease account. | -| 6031 | 0x178f | PermissionAccountDeriveFailure | Failed to derive a permission account. | -| 6032 | 0x1790 | EscrowAccountNotFound | Escrow account missing from provided account list. | -| 6033 | 0x1791 | LeaseAccountNotFound | Lease account missing from provided account list. | -| 6034 | 0x1792 | DecimalConversionError | Decimal conversion method failed. | -| 6035 | 0x1793 | PermissionDenied | Permission account is missing required flags for the given action. | -| 6036 | 0x1794 | QueueAtCapacity | Oracle queue is at lease capacity. | -| 6037 | 0x1795 | ExcessiveCrankRowsError | Data feed is already pushed on a crank. | -| 6038 | 0x1796 | AggregatorLockedError | Aggregator is locked, no setting modifications or job additions allowed. | -| 6039 | 0x1797 | AggregatorInvalidBatchSizeError | Aggregator invalid batch size. | -| 6040 | 0x1798 | AggregatorJobChecksumMismatch | Oracle provided an incorrect aggregator job checksum. | -| 6041 | 0x1799 | IntegerOverflowError | An integer overflow occurred. | -| 6042 | 0x179a | InvalidUpdatePeriodError | Minimum update period is 5 seconds. | -| 6043 | 0x179b | NoResultsError | Aggregator round evaluation attempted with no results. | -| 6044 | 0x179c | InvalidExpirationError | An expiration constraint was broken. | -| 6045 | 0x179d | InsufficientStakeError | An account provided insufficient stake for action. | -| 6046 | 0x179e | LeaseInactiveError | The provided lease account is not active. | -| 6047 | 0x179f | NoAggregatorJobsFound | No jobs are currently included in the aggregator. | -| 6048 | 0x17a0 | IntegerUnderflowError | An integer underflow occurred. | -| 6049 | 0x17a1 | OracleQueueMismatch | An invalid oracle queue account was provided. | -| 6050 | 0x17a2 | OracleWalletMismatchError | An unexpected oracle wallet account was provided for the transaction. | -| 6051 | 0x17a3 | InvalidBufferAccountError | An invalid buffer account was provided. | -| 6052 | 0x17a4 | InsufficientOracleQueueError | Insufficient oracle queue size. | -| 6053 | 0x17a5 | InvalidAuthorityError | Invalid authority account provided. | -| 6054 | 0x17a6 | InvalidTokenAccountMintError | A provided token wallet is associated with an incorrect mint. | -| 6055 | 0x17a7 | ExcessiveLeaseWithdrawlError | You must leave enough funds to perform at least 1 update in the lease. | -| 6056 | 0x17a8 | InvalideHistoryAccountError | Invalid history account provided. | -| 6057 | 0x17a9 | InvalidLeaseAccountEscrowError | Invalid lease account escrow. | -| 6058 | 0x17aa | InvalidCrankAccountError | Invalid crank provided. | -| 6059 | 0x17ab | CrankNoElementsReadyError | No elements ready to be popped. | -| 6060 | 0x17ac | IndexOutOfBoundsError | Index out of bounds | -| 6061 | 0x17ad | VrfInvalidRequestError | Invalid vrf request params | -| 6062 | 0x17ae | VrfInvalidProofSubmissionError | Vrf proof failed to verify | -| 6063 | 0x17af | VrfVerifyError | Error in verifying vrf proof. | -| 6064 | 0x17b0 | VrfCallbackError | Vrf callback function failed. | -| 6065 | 0x17b1 | VrfCallbackParamsError | Invalid vrf callback params provided. | -| 6066 | 0x17b2 | VrfCallbackAlreadyCalledError | Vrf callback has already been triggered. | -| 6067 | 0x17b3 | VrfInvalidPubkeyError | The provided pubkey is invalid to use in ecvrf proofs | -| 6068 | 0x17b4 | VrfTooManyVerifyCallsError | Number of required verify calls exceeded | -| 6069 | 0x17b5 | VrfRequestAlreadyLaunchedError | Vrf request is already pending | -| 6070 | 0x17b6 | VrfInsufficientVerificationError | Insufficient amount of proofs collected for VRF callback | -| 6071 | 0x17b7 | InvalidVrfProducerError | An incorrect oracle attempted to submit a proof | -| 6072 | 0x17b8 | InvalidGovernancePidError | Invalid SPLGovernance Account Supplied | -| 6073 | 0x17b9 | InvalidGovernanceAccountError | An Invalid Governance Account was supplied | -| 6074 | 0x17ba | MissingOptionalAccount | Expected an optional account | -| 6075 | 0x17bb | InvalidSpawnRecordOwner | Invalid Owner for Spawn Record | -| 6076 | 0x17bc | NoopError | Noop error | -| 6077 | 0x17bd | MissingRequiredAccountsError | A required instruction account was not included | -| 6078 | 0x17be | InvalidMintError | Invalid mint account passed for instruction | -| 6079 | 0x17bf | InvalidTokenAccountKeyError | An invalid token account was passed into the instruction | -| 6080 | 0x17c0 | InvalidJobAccountError | | -| 6081 | 0x17c1 | VoterStakeRegistryError | | -| 6082 | 0x17c2 | AccountDiscriminatorMismatch | Account discriminator did not match. | diff --git a/website/idl/events/AggregatorCrankEvictionEvent.md b/website/idl/events/AggregatorCrankEvictionEvent.md deleted file mode 100644 index 73153f9..0000000 --- a/website/idl/events/AggregatorCrankEvictionEvent.md +++ /dev/null @@ -1,6 +0,0 @@ -| Name | Type | Description | -| ---------------- | ----------------- | ----------- | -| crankPubkey | publicKey | | -| aggregatorPubkey | publicKey | | -| reason | Option<u32> | | -| timestamp | i64 | | diff --git a/website/idl/events/AggregatorInitEvent.md b/website/idl/events/AggregatorInitEvent.md deleted file mode 100644 index 4bcce9b..0000000 --- a/website/idl/events/AggregatorInitEvent.md +++ /dev/null @@ -1,5 +0,0 @@ -New aggregator created on-chain - -| Name | Type | Description | -| ---------- | --------- | ------------------------------------------ | -| feedPubkey | publicKey | Public key of the newly created aggregator | diff --git a/website/idl/events/AggregatorOpenRoundEvent.md b/website/idl/events/AggregatorOpenRoundEvent.md deleted file mode 100644 index a2bd9c7..0000000 --- a/website/idl/events/AggregatorOpenRoundEvent.md +++ /dev/null @@ -1,9 +0,0 @@ -OpenRound successfully called on an aggregator - -| Name | Type | Description | -| -------------- | ----------- | ----------------------------------------------------------------------------------------------------------------- | -| feedPubkey | publicKey | Public key of the aggregator requesting a new result | -| oraclePubkeys | publicKey[] | Oracles assigned to the update request | -| jobPubkeys | publicKey[] | Job accounts associated with an aggregator containing the job definitions | -| remainingFunds | u64 | Remaining funds in the aggregators lease contract | -| queueAuthority | publicKey | The account delegated as the authority for making account changes or assigning permissions targeted at the queue. | diff --git a/website/idl/events/AggregatorValueUpdateEvent.md b/website/idl/events/AggregatorValueUpdateEvent.md deleted file mode 100644 index e7f00f5..0000000 --- a/website/idl/events/AggregatorValueUpdateEvent.md +++ /dev/null @@ -1,8 +0,0 @@ -| Name | Type | Description | -| ------------- | ----------------------------------------- | ----------- | -| feedPubkey | publicKey | | -| value | [BorshDecimal](/idl/types/BorshDecimal) | | -| slot | u64 | | -| timestamp | i64 | | -| oraclePubkeys | publicKey[] | | -| oracleValues | [BorshDecimal](/idl/types/BorshDecimal)[] | | diff --git a/website/idl/events/BufferRelayerOpenRoundEvent.md b/website/idl/events/BufferRelayerOpenRoundEvent.md deleted file mode 100644 index f6ea94c..0000000 --- a/website/idl/events/BufferRelayerOpenRoundEvent.md +++ /dev/null @@ -1,7 +0,0 @@ -| Name | Type | Description | -| -------------- | ----------- | ----------- | -| relayerPubkey | publicKey | | -| jobPubkey | publicKey | | -| oraclePubkeys | publicKey[] | | -| remainingFunds | u64 | | -| queue | publicKey | | diff --git a/website/idl/events/CrankLeaseInsufficientFundsEvent.md b/website/idl/events/CrankLeaseInsufficientFundsEvent.md deleted file mode 100644 index 940d330..0000000 --- a/website/idl/events/CrankLeaseInsufficientFundsEvent.md +++ /dev/null @@ -1,4 +0,0 @@ -| Name | Type | Description | -| ----------- | --------- | ----------- | -| feedPubkey | publicKey | | -| leasePubkey | publicKey | | diff --git a/website/idl/events/CrankPopExpectedFailureEvent.md b/website/idl/events/CrankPopExpectedFailureEvent.md deleted file mode 100644 index 940d330..0000000 --- a/website/idl/events/CrankPopExpectedFailureEvent.md +++ /dev/null @@ -1,4 +0,0 @@ -| Name | Type | Description | -| ----------- | --------- | ----------- | -| feedPubkey | publicKey | | -| leasePubkey | publicKey | | diff --git a/website/idl/events/FeedPermissionRevokedEvent.md b/website/idl/events/FeedPermissionRevokedEvent.md deleted file mode 100644 index 6740178..0000000 --- a/website/idl/events/FeedPermissionRevokedEvent.md +++ /dev/null @@ -1,4 +0,0 @@ -| Name | Type | Description | -| ---------- | --------- | ----------- | -| feedPubkey | publicKey | | -| timestamp | i64 | | diff --git a/website/idl/events/GarbageCollectFailureEvent.md b/website/idl/events/GarbageCollectFailureEvent.md deleted file mode 100644 index e606ae5..0000000 --- a/website/idl/events/GarbageCollectFailureEvent.md +++ /dev/null @@ -1,3 +0,0 @@ -| Name | Type | Description | -| ----------- | --------- | ----------- | -| queuePubkey | publicKey | | diff --git a/website/idl/events/LeaseFundEvent.md b/website/idl/events/LeaseFundEvent.md deleted file mode 100644 index 3b90bf6..0000000 --- a/website/idl/events/LeaseFundEvent.md +++ /dev/null @@ -1,6 +0,0 @@ -| Name | Type | Description | -| ----------- | --------- | ----------- | -| leasePubkey | publicKey | | -| funder | publicKey | | -| amount | u64 | | -| timestamp | i64 | | diff --git a/website/idl/events/LeaseWithdrawEvent.md b/website/idl/events/LeaseWithdrawEvent.md deleted file mode 100644 index 284be01..0000000 --- a/website/idl/events/LeaseWithdrawEvent.md +++ /dev/null @@ -1,7 +0,0 @@ -| Name | Type | Description | -| -------------- | --------- | ----------- | -| leasePubkey | publicKey | | -| walletPubkey | publicKey | | -| previousAmount | u64 | | -| newAmount | u64 | | -| timestamp | i64 | | diff --git a/website/idl/events/OracleBootedEvent.md b/website/idl/events/OracleBootedEvent.md deleted file mode 100644 index c3bda38..0000000 --- a/website/idl/events/OracleBootedEvent.md +++ /dev/null @@ -1,4 +0,0 @@ -| Name | Type | Description | -| ------------ | --------- | ----------- | -| queuePubkey | publicKey | | -| oraclePubkey | publicKey | | diff --git a/website/idl/events/OracleRewardEvent.md b/website/idl/events/OracleRewardEvent.md deleted file mode 100644 index d59d18d..0000000 --- a/website/idl/events/OracleRewardEvent.md +++ /dev/null @@ -1,9 +0,0 @@ -| Name | Type | Description | -| ------------ | --------- | ----------- | -| feedPubkey | publicKey | | -| leasePubkey | publicKey | | -| oraclePubkey | publicKey | | -| walletPubkey | publicKey | | -| amount | u64 | | -| roundSlot | u64 | | -| timestamp | i64 | | diff --git a/website/idl/events/OracleSlashEvent.md b/website/idl/events/OracleSlashEvent.md deleted file mode 100644 index d59d18d..0000000 --- a/website/idl/events/OracleSlashEvent.md +++ /dev/null @@ -1,9 +0,0 @@ -| Name | Type | Description | -| ------------ | --------- | ----------- | -| feedPubkey | publicKey | | -| leasePubkey | publicKey | | -| oraclePubkey | publicKey | | -| walletPubkey | publicKey | | -| amount | u64 | | -| roundSlot | u64 | | -| timestamp | i64 | | diff --git a/website/idl/events/OracleWithdrawEvent.md b/website/idl/events/OracleWithdrawEvent.md deleted file mode 100644 index ffe5061..0000000 --- a/website/idl/events/OracleWithdrawEvent.md +++ /dev/null @@ -1,8 +0,0 @@ -| Name | Type | Description | -| ----------------- | --------- | ----------- | -| oraclePubkey | publicKey | | -| walletPubkey | publicKey | | -| destinationWallet | publicKey | | -| previousAmount | u64 | | -| newAmount | u64 | | -| timestamp | i64 | | diff --git a/website/idl/events/ProbationBrokenEvent.md b/website/idl/events/ProbationBrokenEvent.md deleted file mode 100644 index 1dbed4b..0000000 --- a/website/idl/events/ProbationBrokenEvent.md +++ /dev/null @@ -1,5 +0,0 @@ -| Name | Type | Description | -| ----------- | --------- | ----------- | -| feedPubkey | publicKey | | -| queuePubkey | publicKey | | -| timestamp | i64 | | diff --git a/website/idl/events/VrfCallbackPerformedEvent.md b/website/idl/events/VrfCallbackPerformedEvent.md deleted file mode 100644 index 95e047a..0000000 --- a/website/idl/events/VrfCallbackPerformedEvent.md +++ /dev/null @@ -1,5 +0,0 @@ -| Name | Type | Description | -| ------------ | --------- | ----------- | -| vrfPubkey | publicKey | | -| oraclePubkey | publicKey | | -| amount | u64 | | diff --git a/website/idl/events/VrfProveEvent.md b/website/idl/events/VrfProveEvent.md deleted file mode 100644 index f2d4f1a..0000000 --- a/website/idl/events/VrfProveEvent.md +++ /dev/null @@ -1,5 +0,0 @@ -| Name | Type | Description | -| --------------- | --------- | ----------- | -| vrfPubkey | publicKey | | -| oraclePubkey | publicKey | | -| authorityPubkey | publicKey | | diff --git a/website/idl/events/VrfRequestEvent.md b/website/idl/events/VrfRequestEvent.md deleted file mode 100644 index a48668f..0000000 --- a/website/idl/events/VrfRequestEvent.md +++ /dev/null @@ -1,4 +0,0 @@ -| Name | Type | Description | -| ------------- | ----------- | ----------- | -| vrfPubkey | publicKey | | -| oraclePubkeys | publicKey[] | | diff --git a/website/idl/events/VrfRequestRandomnessEvent.md b/website/idl/events/VrfRequestRandomnessEvent.md deleted file mode 100644 index 12d004a..0000000 --- a/website/idl/events/VrfRequestRandomnessEvent.md +++ /dev/null @@ -1,6 +0,0 @@ -| Name | Type | Description | -| -------------- | ----------- | ----------- | -| vrfPubkey | publicKey | | -| oraclePubkeys | publicKey[] | | -| loadAmount | u64 | | -| existingAmount | u64 | | diff --git a/website/idl/events/VrfVerifyEvent.md b/website/idl/events/VrfVerifyEvent.md deleted file mode 100644 index 376bcff..0000000 --- a/website/idl/events/VrfVerifyEvent.md +++ /dev/null @@ -1,6 +0,0 @@ -| Name | Type | Description | -| --------------- | --------- | ----------- | -| vrfPubkey | publicKey | | -| oraclePubkey | publicKey | | -| authorityPubkey | publicKey | | -| amount | u64 | | diff --git a/website/idl/events/_category_.json b/website/idl/events/_category_.json deleted file mode 100644 index 7788f4c..0000000 --- a/website/idl/events/_category_.json +++ /dev/null @@ -1 +0,0 @@ -{"label":"Events","position":30} \ No newline at end of file diff --git a/website/idl/events/overview.md b/website/idl/events/overview.md deleted file mode 100644 index 620a966..0000000 --- a/website/idl/events/overview.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -sidebar_position: 1 -title: Overview -slug: . ---- - -- [AggregatorCrankEvictionEvent](/idl/events/AggregatorCrankEvictionEvent) -- [AggregatorInitEvent](/idl/events/AggregatorInitEvent) -- [AggregatorOpenRoundEvent](/idl/events/AggregatorOpenRoundEvent) -- [AggregatorValueUpdateEvent](/idl/events/AggregatorValueUpdateEvent) -- [BufferRelayerOpenRoundEvent](/idl/events/BufferRelayerOpenRoundEvent) -- [CrankLeaseInsufficientFundsEvent](/idl/events/CrankLeaseInsufficientFundsEvent) -- [CrankPopExpectedFailureEvent](/idl/events/CrankPopExpectedFailureEvent) -- [FeedPermissionRevokedEvent](/idl/events/FeedPermissionRevokedEvent) -- [GarbageCollectFailureEvent](/idl/events/GarbageCollectFailureEvent) -- [LeaseFundEvent](/idl/events/LeaseFundEvent) -- [LeaseWithdrawEvent](/idl/events/LeaseWithdrawEvent) -- [OracleBootedEvent](/idl/events/OracleBootedEvent) -- [OracleRewardEvent](/idl/events/OracleRewardEvent) -- [OracleSlashEvent](/idl/events/OracleSlashEvent) -- [OracleWithdrawEvent](/idl/events/OracleWithdrawEvent) -- [ProbationBrokenEvent](/idl/events/ProbationBrokenEvent) -- [VrfCallbackPerformedEvent](/idl/events/VrfCallbackPerformedEvent) -- [VrfProveEvent](/idl/events/VrfProveEvent) -- [VrfRequestEvent](/idl/events/VrfRequestEvent) -- [VrfRequestRandomnessEvent](/idl/events/VrfRequestRandomnessEvent) -- [VrfVerifyEvent](/idl/events/VrfVerifyEvent) diff --git a/website/idl/instructions/_category_.json b/website/idl/instructions/_category_.json deleted file mode 100644 index 8171145..0000000 --- a/website/idl/instructions/_category_.json +++ /dev/null @@ -1 +0,0 @@ -{"label":"Instructions","position":20} \ No newline at end of file diff --git a/website/idl/instructions/aggregatorAddJob.md b/website/idl/instructions/aggregatorAddJob.md deleted file mode 100644 index 1024e91..0000000 --- a/website/idl/instructions/aggregatorAddJob.md +++ /dev/null @@ -1,15 +0,0 @@ -Add a new job to an aggregator to be performed on feed updates - -## Accounts - -| Name | isMut | isSigner | Description | -| ---------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | true | | -| job | true | false | | - -## Args - -| Field | Type | Description | -| ------ | ---------------- | ----------- | -| weight | Option<u8> | | diff --git a/website/idl/instructions/aggregatorInit.md b/website/idl/instructions/aggregatorInit.md deleted file mode 100644 index 2173184..0000000 --- a/website/idl/instructions/aggregatorInit.md +++ /dev/null @@ -1,27 +0,0 @@ -Create and initialize the AggregatorAccount. - -## Accounts - -| Name | isMut | isSigner | Description | -| ------------ | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | false | | -| queue | false | false | | -| programState | false | false | | - -## Args - -| Field | Type | Description | -| --------------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | -| name | u8[32] | Name of the aggregator to store on-chain. | -| metadata | u8[128] | Metadata of the aggregator to store on-chain. | -| batchSize | u32 | Number of oracles to request on aggregator update. | -| minOracleResults | u32 | Minimum number of oracle responses required before a round is validated. | -| minJobResults | u32 | Minimum number of feed jobs suggested to be successful before an oracle sends a response. | -| minUpdateDelaySeconds | u32 | Minimum number of seconds required between aggregator rounds. | -| startAfter | i64 | unix_timestamp for which no feed update will occur before. | -| varianceThreshold | [BorshDecimal](/idl/types/BorshDecimal) | Change percentage required between a previous round and the current round. If variance percentage is not met, reject new oracle responses. | -| forceReportPeriod | i64 | Number of seconds for which, even if the variance threshold is not passed, accept new responses from oracles. | -| expiration | i64 | unix_timestamp after which funds may be withdrawn from the aggregator. null/undefined/0 means the feed has no expiration. | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| disableCrank | bool | | diff --git a/website/idl/instructions/aggregatorLock.md b/website/idl/instructions/aggregatorLock.md deleted file mode 100644 index faa73bf..0000000 --- a/website/idl/instructions/aggregatorLock.md +++ /dev/null @@ -1,13 +0,0 @@ -Prevent new jobs from being added to the feed. - -## Accounts - -| Name | isMut | isSigner | Description | -| ---------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | true | | - -## Args - -| Field | Type | Description | -| ----- | ---- | ----------- | diff --git a/website/idl/instructions/aggregatorOpenRound.md b/website/idl/instructions/aggregatorOpenRound.md deleted file mode 100644 index 6cc38f7..0000000 --- a/website/idl/instructions/aggregatorOpenRound.md +++ /dev/null @@ -1,26 +0,0 @@ -Opens a new round for the aggregator and will provide an incentivize reward to the caller - -## Accounts - -| Name | isMut | isSigner | Description | -| -------------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| lease | true | false | | -| oracleQueue | true | false | | -| queueAuthority | false | false | | -| permission | true | false | | -| escrow | true | false | | -| programState | false | false | | -| payoutWallet | true | false | | -| tokenProgram | false | false | | -| dataBuffer | false | false | | -| mint | false | false | | - -## Args - -| Field | Type | Description | -| -------------- | ---- | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| leaseBump | u8 | | -| permissionBump | u8 | | -| jitter | u8 | | diff --git a/website/idl/instructions/aggregatorRemoveJob.md b/website/idl/instructions/aggregatorRemoveJob.md deleted file mode 100644 index 856945f..0000000 --- a/website/idl/instructions/aggregatorRemoveJob.md +++ /dev/null @@ -1,15 +0,0 @@ -Remove a job from an aggregator. - -## Accounts - -| Name | isMut | isSigner | Description | -| ---------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | true | | -| job | true | false | | - -## Args - -| Field | Type | Description | -| ------ | ---- | ----------- | -| jobIdx | u32 | | diff --git a/website/idl/instructions/aggregatorSaveResult.md b/website/idl/instructions/aggregatorSaveResult.md deleted file mode 100644 index 5476826..0000000 --- a/website/idl/instructions/aggregatorSaveResult.md +++ /dev/null @@ -1,34 +0,0 @@ -Oracle saving result for a feed update request to an aggregator round. - -## Accounts - -| Name | isMut | isSigner | Description | -| ---------------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| oracle | true | false | | -| oracleAuthority | false | true | | -| oracleQueue | false | false | | -| queueAuthority | false | false | | -| feedPermission | true | false | | -| oraclePermission | false | false | | -| lease | true | false | | -| escrow | true | false | | -| tokenProgram | false | false | | -| programState | false | false | | -| historyBuffer | true | false | | -| mint | false | false | | - -## Args - -| Field | Type | Description | -| -------------------- | --------------------------------------- | ------------------------------------------------------------------------ | -| oracleIdx | u32 | | -| error | bool | | -| value | [BorshDecimal](/idl/types/BorshDecimal) | | -| jobsChecksum | u8[32] | | -| minResponse | [BorshDecimal](/idl/types/BorshDecimal) | | -| maxResponse | [BorshDecimal](/idl/types/BorshDecimal) | | -| feedPermissionBump | u8 | | -| oraclePermissionBump | u8 | | -| leaseBump | u8 | | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | diff --git a/website/idl/instructions/aggregatorSetAuthority.md b/website/idl/instructions/aggregatorSetAuthority.md deleted file mode 100644 index ac44e15..0000000 --- a/website/idl/instructions/aggregatorSetAuthority.md +++ /dev/null @@ -1,14 +0,0 @@ -Change the aggregator authority. - -## Accounts - -| Name | isMut | isSigner | Description | -| ------------ | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | true | | -| newAuthority | false | false | | - -## Args - -| Field | Type | Description | -| ----- | ---- | ----------- | diff --git a/website/idl/instructions/aggregatorSetBatchSize.md b/website/idl/instructions/aggregatorSetBatchSize.md deleted file mode 100644 index f793e88..0000000 --- a/website/idl/instructions/aggregatorSetBatchSize.md +++ /dev/null @@ -1,12 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ---------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | true | | - -## Args - -| Field | Type | Description | -| --------- | ---- | -------------------------------------------------- | -| batchSize | u32 | Number of oracles to request on aggregator update. | diff --git a/website/idl/instructions/aggregatorSetForceReportPeriod.md b/website/idl/instructions/aggregatorSetForceReportPeriod.md deleted file mode 100644 index fa475a1..0000000 --- a/website/idl/instructions/aggregatorSetForceReportPeriod.md +++ /dev/null @@ -1,12 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ---------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | true | | - -## Args - -| Field | Type | Description | -| ----------------- | ---- | ----------- | -| forceReportPeriod | u32 | | diff --git a/website/idl/instructions/aggregatorSetHistoryBuffer.md b/website/idl/instructions/aggregatorSetHistoryBuffer.md deleted file mode 100644 index 98f6e39..0000000 --- a/website/idl/instructions/aggregatorSetHistoryBuffer.md +++ /dev/null @@ -1,12 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ---------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | true | | -| buffer | true | false | | - -## Args - -| Field | Type | Description | -| ----- | ---- | ----------- | diff --git a/website/idl/instructions/aggregatorSetMinJobs.md b/website/idl/instructions/aggregatorSetMinJobs.md deleted file mode 100644 index 2820d44..0000000 --- a/website/idl/instructions/aggregatorSetMinJobs.md +++ /dev/null @@ -1,14 +0,0 @@ -Set the minimum number of feed jobs suggested to be successful before an oracle sends a response. - -## Accounts - -| Name | isMut | isSigner | Description | -| ---------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | true | | - -## Args - -| Field | Type | Description | -| ------------- | ---- | ----------------------------------------------------------------------------------------- | -| minJobResults | u32 | Minimum number of feed jobs suggested to be successful before an oracle sends a response. | diff --git a/website/idl/instructions/aggregatorSetMinOracles.md b/website/idl/instructions/aggregatorSetMinOracles.md deleted file mode 100644 index 212a650..0000000 --- a/website/idl/instructions/aggregatorSetMinOracles.md +++ /dev/null @@ -1,14 +0,0 @@ -Set the minimum number of oracle responses required before a round is validated. - -## Accounts - -| Name | isMut | isSigner | Description | -| ---------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | true | | - -## Args - -| Field | Type | Description | -| ---------------- | ---- | ------------------------------------------------------------------------ | -| minOracleResults | u32 | Minimum number of oracle responses required before a round is validated. | diff --git a/website/idl/instructions/aggregatorSetQueue.md b/website/idl/instructions/aggregatorSetQueue.md deleted file mode 100644 index 6f6ea9d..0000000 --- a/website/idl/instructions/aggregatorSetQueue.md +++ /dev/null @@ -1,12 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ---------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | true | | -| queue | false | false | | - -## Args - -| Field | Type | Description | -| ----- | ---- | ----------- | diff --git a/website/idl/instructions/aggregatorSetUpdateInterval.md b/website/idl/instructions/aggregatorSetUpdateInterval.md deleted file mode 100644 index 79ed514..0000000 --- a/website/idl/instructions/aggregatorSetUpdateInterval.md +++ /dev/null @@ -1,12 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ---------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | true | | - -## Args - -| Field | Type | Description | -| ----------- | ---- | ----------- | -| newInterval | u32 | | diff --git a/website/idl/instructions/aggregatorSetVarianceThreshold.md b/website/idl/instructions/aggregatorSetVarianceThreshold.md deleted file mode 100644 index ae4f2ad..0000000 --- a/website/idl/instructions/aggregatorSetVarianceThreshold.md +++ /dev/null @@ -1,14 +0,0 @@ -Set the change percentage required between a previous round and the current round. If variance percentage is not met, reject new oracle responses. - -## Accounts - -| Name | isMut | isSigner | Description | -| ---------- | ----- | -------- | ----------- | -| aggregator | true | false | | -| authority | false | true | | - -## Args - -| Field | Type | Description | -| ----------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | -| varianceThreshold | [BorshDecimal](/idl/types/BorshDecimal) | Change percentage required between a previous round and the current round. If variance percentage is not met, reject new oracle responses. | diff --git a/website/idl/instructions/bufferRelayerInit.md b/website/idl/instructions/bufferRelayerInit.md deleted file mode 100644 index 2911202..0000000 --- a/website/idl/instructions/bufferRelayerInit.md +++ /dev/null @@ -1,24 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ---------------------- | ----- | -------- | ----------- | -| bufferRelayer | true | false | | -| escrow | true | false | | -| authority | false | false | | -| queue | false | false | | -| job | false | false | | -| programState | false | false | | -| mint | false | false | | -| payer | true | true | | -| tokenProgram | false | false | | -| associatedTokenProgram | false | false | | -| systemProgram | false | false | | -| rent | false | false | | - -## Args - -| Field | Type | Description | -| --------------------- | ------ | ----------- | -| name | u8[32] | | -| minUpdateDelaySeconds | u32 | | -| stateBump | u8 | | diff --git a/website/idl/instructions/bufferRelayerOpenRound.md b/website/idl/instructions/bufferRelayerOpenRound.md deleted file mode 100644 index 92ae53b..0000000 --- a/website/idl/instructions/bufferRelayerOpenRound.md +++ /dev/null @@ -1,17 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ------------- | ----- | -------- | ----------- | -| bufferRelayer | true | false | | -| oracleQueue | true | false | | -| dataBuffer | true | false | | -| permission | true | false | | -| escrow | true | false | | -| programState | false | false | | - -## Args - -| Field | Type | Description | -| -------------- | ---- | ----------- | -| stateBump | u8 | | -| permissionBump | u8 | | diff --git a/website/idl/instructions/bufferRelayerSaveResult.md b/website/idl/instructions/bufferRelayerSaveResult.md deleted file mode 100644 index fd2bce2..0000000 --- a/website/idl/instructions/bufferRelayerSaveResult.md +++ /dev/null @@ -1,24 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| --------------- | ----- | -------- | ----------- | -| bufferRelayer | true | false | | -| oracleAuthority | false | true | | -| oracle | false | false | | -| oracleQueue | true | false | | -| dataBuffer | true | false | | -| queueAuthority | false | false | | -| permission | true | false | | -| escrow | true | false | | -| oracleWallet | true | false | | -| programState | false | false | | -| tokenProgram | false | false | | - -## Args - -| Field | Type | Description | -| -------------- | ----- | ----------- | -| stateBump | u8 | | -| permissionBump | u8 | | -| result | bytes | | -| success | bool | | diff --git a/website/idl/instructions/crankInit.md b/website/idl/instructions/crankInit.md deleted file mode 100644 index 7759b9b..0000000 --- a/website/idl/instructions/crankInit.md +++ /dev/null @@ -1,19 +0,0 @@ -Create and initialize the CrankAccount. - -## Accounts - -| Name | isMut | isSigner | Description | -| ------------- | ----- | -------- | ----------- | -| crank | true | true | | -| queue | false | false | | -| buffer | true | false | | -| payer | true | true | | -| systemProgram | false | false | | - -## Args - -| Field | Type | Description | -| --------- | ----- | ---------------------------------------- | -| name | bytes | | -| metadata | bytes | Metadata of the crank to store on-chain. | -| crankSize | u32 | | diff --git a/website/idl/instructions/crankPop.md b/website/idl/instructions/crankPop.md deleted file mode 100644 index 734450d..0000000 --- a/website/idl/instructions/crankPop.md +++ /dev/null @@ -1,25 +0,0 @@ -Pops an aggregator from the crank. - -## Accounts - -| Name | isMut | isSigner | Description | -| --------------- | ----- | -------- | ----------- | -| crank | true | false | | -| oracleQueue | true | false | | -| queueAuthority | false | false | | -| programState | false | false | | -| payoutWallet | true | false | | -| tokenProgram | false | false | | -| crankDataBuffer | true | false | | -| queueDataBuffer | false | false | | -| mint | false | false | | - -## Args - -| Field | Type | Description | -| ------------------------- | ------------------ | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| leaseBumps | bytes | | -| permissionBumps | bytes | | -| nonce | Option<u32> | | -| failOpenOnAccountMismatch | Option<bool> | | diff --git a/website/idl/instructions/crankPush.md b/website/idl/instructions/crankPush.md deleted file mode 100644 index 5d43c18..0000000 --- a/website/idl/instructions/crankPush.md +++ /dev/null @@ -1,22 +0,0 @@ -Pushes a new aggregator onto the crank. - -## Accounts - -| Name | isMut | isSigner | Description | -| -------------- | ----- | -------- | ----------- | -| crank | true | false | | -| aggregator | true | false | | -| oracleQueue | true | false | | -| queueAuthority | false | false | | -| permission | false | false | | -| lease | true | false | | -| escrow | true | false | | -| programState | false | false | | -| dataBuffer | true | false | | - -## Args - -| Field | Type | Description | -| -------------- | ---- | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| permissionBump | u8 | | diff --git a/website/idl/instructions/ecvrfVerify.md b/website/idl/instructions/ecvrfVerify.md deleted file mode 100644 index 5d23c1a..0000000 --- a/website/idl/instructions/ecvrfVerify.md +++ /dev/null @@ -1,12 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ------------------ | ----- | -------- | ----------- | -| randomnessProducer | FALSE | FALSE | - -## Params - -| Field | Type | Description | -| ----- | ----- | ----------- | -| proof | bytes | | -| alpha | bytes | | diff --git a/website/idl/instructions/jobInit.md b/website/idl/instructions/jobInit.md deleted file mode 100644 index f409ca8..0000000 --- a/website/idl/instructions/jobInit.md +++ /dev/null @@ -1,18 +0,0 @@ -Create and initialize the JobAccount. - -## Accounts - -| Name | isMut | isSigner | Description | -| ------------ | ----- | -------- | ----------- | -| job | true | false | | -| authority | false | false | | -| programState | false | false | | - -## Args - -| Field | Type | Description | -| ---------- | ------ | ------------------------------------------------------------------------ | -| name | u8[32] | An optional name to apply to the job account. | -| expiration | i64 | unix_timestamp of when funds can be withdrawn from this account. | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| data | bytes | A serialized protocol buffer holding the schema of the job. | diff --git a/website/idl/instructions/leaseExtend.md b/website/idl/instructions/leaseExtend.md deleted file mode 100644 index eb44b5a..0000000 --- a/website/idl/instructions/leaseExtend.md +++ /dev/null @@ -1,24 +0,0 @@ -Adds fund to a LeaseAccount. Note that funds can always be withdrawn by the withdraw authority if one was set on lease initialization. - -## Accounts - -| Name | isMut | isSigner | Description | -| ------------ | ----- | -------- | ----------- | -| lease | true | false | | -| aggregator | false | false | | -| queue | false | false | | -| funder | true | false | | -| owner | true | true | | -| escrow | true | false | | -| tokenProgram | false | false | | -| programState | false | false | | -| mint | false | false | | - -## Args - -| Field | Type | Description | -| ----------- | ----- | ------------------------------------------------------------------------ | -| loadAmount | u64 | | -| leaseBump | u8 | | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| walletBumps | bytes | | diff --git a/website/idl/instructions/leaseInit.md b/website/idl/instructions/leaseInit.md deleted file mode 100644 index b9b24c3..0000000 --- a/website/idl/instructions/leaseInit.md +++ /dev/null @@ -1,27 +0,0 @@ -Create and initialize the LeaseAccount. - -## Accounts - -| Name | isMut | isSigner | Description | -| ------------- | ----- | -------- | ----------- | -| lease | true | false | | -| queue | true | false | | -| aggregator | false | false | | -| funder | true | false | | -| payer | true | true | | -| systemProgram | false | false | | -| tokenProgram | false | false | | -| owner | true | true | | -| escrow | true | false | | -| programState | false | false | | -| mint | false | false | | - -## Args - -| Field | Type | Description | -| ----------------- | --------- | ------------------------------------------------------------------------ | -| loadAmount | u64 | Token amount to load into the lease escrow | -| withdrawAuthority | publicKey | This authority will be permitted to withdraw funds from this lease. | -| leaseBump | u8 | | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| walletBumps | bytes | | diff --git a/website/idl/instructions/leaseSetAuthority.md b/website/idl/instructions/leaseSetAuthority.md deleted file mode 100644 index 82f9da3..0000000 --- a/website/idl/instructions/leaseSetAuthority.md +++ /dev/null @@ -1,12 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ----------------- | ----- | -------- | ----------- | -| lease | true | false | | -| withdrawAuthority | false | true | | -| newAuthority | false | false | | - -## Args - -| Field | Type | Description | -| ----- | ---- | ----------- | diff --git a/website/idl/instructions/leaseWithdraw.md b/website/idl/instructions/leaseWithdraw.md deleted file mode 100644 index 046d1f5..0000000 --- a/website/idl/instructions/leaseWithdraw.md +++ /dev/null @@ -1,21 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ----------------- | ----- | -------- | ----------- | -| lease | true | false | | -| escrow | true | false | | -| aggregator | false | false | | -| queue | false | false | | -| withdrawAuthority | false | true | | -| withdrawAccount | true | false | | -| tokenProgram | false | false | | -| programState | false | false | | -| mint | false | false | | - -## Args - -| Field | Type | Description | -| --------- | ---- | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| leaseBump | u8 | | -| amount | u64 | Token amount to withdraw from the lease escrow | diff --git a/website/idl/instructions/oracleHeartbeat.md b/website/idl/instructions/oracleHeartbeat.md deleted file mode 100644 index 40c1ea7..0000000 --- a/website/idl/instructions/oracleHeartbeat.md +++ /dev/null @@ -1,19 +0,0 @@ -Initiates a heartbeat for an OracleAccount, signifying oracle is still healthy. - -## Accounts - -| Name | isMut | isSigner | Description | -| --------------- | ----- | -------- | ----------- | -| oracle | true | false | | -| oracleAuthority | false | true | | -| tokenAccount | false | false | | -| gcOracle | true | false | | -| oracleQueue | true | false | | -| permission | false | false | | -| dataBuffer | true | false | | - -## Args - -| Field | Type | Description | -| -------------- | ---- | ----------- | -| permissionBump | u8 | | diff --git a/website/idl/instructions/oracleInit.md b/website/idl/instructions/oracleInit.md deleted file mode 100644 index 5d8f006..0000000 --- a/website/idl/instructions/oracleInit.md +++ /dev/null @@ -1,22 +0,0 @@ -Create and initialize the OracleAccount.
Size: 636 Bytes
Rent Exemption: 0.00531744 SOL - -## Accounts - -| Name | isMut | isSigner | Description | -| --------------- | ----- | -------- | ----------- | -| oracle | true | false | | -| oracleAuthority | false | false | | -| wallet | false | false | | -| programState | false | false | | -| queue | false | false | | -| payer | true | true | | -| systemProgram | false | false | | - -## Args - -| Field | Type | Description | -| ---------- | ----- | ------------------------------------------------------------------------ | -| name | bytes | Name of the oracle to store on-chain. | -| metadata | bytes | Metadata of the oracle to store on-chain. | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| oracleBump | u8 | | diff --git a/website/idl/instructions/oracleQueueInit.md b/website/idl/instructions/oracleQueueInit.md deleted file mode 100644 index e1cd77e..0000000 --- a/website/idl/instructions/oracleQueueInit.md +++ /dev/null @@ -1,31 +0,0 @@ -Create and initialize the OracleQueueAccount. - -## Accounts - -| Name | isMut | isSigner | Description | -| ------------- | ----- | -------- | ----------- | -| oracleQueue | true | true | | -| authority | false | false | | -| buffer | true | false | | -| payer | true | true | | -| systemProgram | false | false | | -| mint | false | false | | - -## Args - -| Field | Type | Description | -| ----------------------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| name | u8[32] | Name of the queue to store on-chain. | -| metadata | u8[64] | Metadata of the queue to store on-chain. | -| reward | u64 | Rewards to provide oracles and round openers on this queue. | -| minStake | u64 | The minimum amount of stake oracles must present to remain on the queue. | -| feedProbationPeriod | u32 | After a feed lease is funded or re-funded, it must consecutively succeed N amount of times or its authorization to use the queue is auto-revoked. | -| oracleTimeout | u32 | Time period we should remove an oracle after if no response. | -| slashingEnabled | bool | Whether slashing is enabled on this queue. | -| varianceToleranceMultiplier | [BorshDecimal](/idl/types/BorshDecimal) | The tolerated variance amount oracle results can have from the accepted round result before being slashed. slashBound = varianceToleranceMultiplier \* stdDeviation Default: 2 | -| consecutiveFeedFailureLimit | u64 | Consecutive failure limit for a feed before feed permission is revoked. | -| consecutiveOracleFailureLimit | u64 | Consecutive failure limit for an oracle before oracle permission is revoked. | -| queueSize | u32 | The size of the queue. | -| unpermissionedFeeds | bool | Enabling this setting means data feeds do not need explicit permission to join the queue. | -| unpermissionedVrf | bool | | -| enableBufferRelayers | bool | | diff --git a/website/idl/instructions/oracleQueueSetRewards.md b/website/idl/instructions/oracleQueueSetRewards.md deleted file mode 100644 index 9f253fc..0000000 --- a/website/idl/instructions/oracleQueueSetRewards.md +++ /dev/null @@ -1,14 +0,0 @@ -Set the rewards to provide oracles and round openers on this queue. - -## Accounts - -| Name | isMut | isSigner | Description | -| --------- | ----- | -------- | ----------- | -| queue | true | false | | -| authority | false | true | | - -## Args - -| Field | Type | Description | -| ------- | ---- | ----------------------------------------------------------- | -| rewards | u64 | Rewards to provide oracles and round openers on this queue. | diff --git a/website/idl/instructions/oracleQueueVrfConfig.md b/website/idl/instructions/oracleQueueVrfConfig.md deleted file mode 100644 index f6edda4..0000000 --- a/website/idl/instructions/oracleQueueVrfConfig.md +++ /dev/null @@ -1,12 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| --------- | ----- | -------- | ----------- | -| queue | true | false | | -| authority | false | true | | - -## Args - -| Field | Type | Description | -| ------------------------ | ---- | ----------- | -| unpermissionedVrfEnabled | bool | | diff --git a/website/idl/instructions/oracleWithdraw.md b/website/idl/instructions/oracleWithdraw.md deleted file mode 100644 index e3656b0..0000000 --- a/website/idl/instructions/oracleWithdraw.md +++ /dev/null @@ -1,24 +0,0 @@ -Withdraw stake and/or rewards from an OracleAccount. - -## Accounts - -| Name | isMut | isSigner | Description | -| --------------- | ----- | -------- | ----------- | -| oracle | true | false | | -| oracleAuthority | false | true | | -| tokenAccount | true | false | | -| withdrawAccount | true | false | | -| oracleQueue | true | false | | -| permission | true | false | | -| tokenProgram | false | false | | -| programState | false | false | | -| payer | true | true | | -| systemProgram | false | false | | - -## Args - -| Field | Type | Description | -| -------------- | ---- | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| permissionBump | u8 | | -| amount | u64 | | diff --git a/website/idl/instructions/overview.md b/website/idl/instructions/overview.md deleted file mode 100644 index 8569e47..0000000 --- a/website/idl/instructions/overview.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -sidebar_position: 1 -title: Overview -slug: . ---- - -- [aggregatorAddJob](/idl/instructions/aggregatorAddJob) -- [aggregatorInit](/idl/instructions/aggregatorInit) -- [aggregatorLock](/idl/instructions/aggregatorLock) -- [aggregatorOpenRound](/idl/instructions/aggregatorOpenRound) -- [aggregatorRemoveJob](/idl/instructions/aggregatorRemoveJob) -- [aggregatorSaveResult](/idl/instructions/aggregatorSaveResult) -- [aggregatorSetAuthority](/idl/instructions/aggregatorSetAuthority) -- [aggregatorSetBatchSize](/idl/instructions/aggregatorSetBatchSize) -- [aggregatorSetForceReportPeriod](/idl/instructions/aggregatorSetForceReportPeriod) -- [aggregatorSetHistoryBuffer](/idl/instructions/aggregatorSetHistoryBuffer) -- [aggregatorSetMinJobs](/idl/instructions/aggregatorSetMinJobs) -- [aggregatorSetMinOracles](/idl/instructions/aggregatorSetMinOracles) -- [aggregatorSetQueue](/idl/instructions/aggregatorSetQueue) -- [aggregatorSetUpdateInterval](/idl/instructions/aggregatorSetUpdateInterval) -- [aggregatorSetVarianceThreshold](/idl/instructions/aggregatorSetVarianceThreshold) -- [bufferRelayerInit](/idl/instructions/bufferRelayerInit) -- [bufferRelayerOpenRound](/idl/instructions/bufferRelayerOpenRound) -- [bufferRelayerSaveResult](/idl/instructions/bufferRelayerSaveResult) -- [crankInit](/idl/instructions/crankInit) -- [crankPop](/idl/instructions/crankPop) -- [crankPush](/idl/instructions/crankPush) -- [jobInit](/idl/instructions/jobInit) -- [leaseExtend](/idl/instructions/leaseExtend) -- [leaseInit](/idl/instructions/leaseInit) -- [leaseSetAuthority](/idl/instructions/leaseSetAuthority) -- [leaseWithdraw](/idl/instructions/leaseWithdraw) -- [oracleHeartbeat](/idl/instructions/oracleHeartbeat) -- [oracleInit](/idl/instructions/oracleInit) -- [oracleQueueInit](/idl/instructions/oracleQueueInit) -- [oracleQueueSetRewards](/idl/instructions/oracleQueueSetRewards) -- [oracleQueueVrfConfig](/idl/instructions/oracleQueueVrfConfig) -- [oracleWithdraw](/idl/instructions/oracleWithdraw) -- [permissionInit](/idl/instructions/permissionInit) -- [permissionSet](/idl/instructions/permissionSet) -- [programConfig](/idl/instructions/programConfig) -- [programInit](/idl/instructions/programInit) -- [vaultTransfer](/idl/instructions/vaultTransfer) -- [vrfInit](/idl/instructions/vrfInit) -- [vrfProveAndVerify](/idl/instructions/vrfProveAndVerify) -- [vrfRequestRandomness](/idl/instructions/vrfRequestRandomness) diff --git a/website/idl/instructions/permissionInit.md b/website/idl/instructions/permissionInit.md deleted file mode 100644 index 6af23e4..0000000 --- a/website/idl/instructions/permissionInit.md +++ /dev/null @@ -1,17 +0,0 @@ -Create and initialize the PermissionAccount. - -## Accounts - -| Name | isMut | isSigner | Description | -| ------------- | ----- | -------- | ----------- | -| permission | true | false | | -| authority | false | false | | -| granter | false | false | | -| grantee | false | false | | -| payer | true | true | | -| systemProgram | false | false | | - -## Args - -| Field | Type | Description | -| ----- | ---- | ----------- | diff --git a/website/idl/instructions/permissionSet.md b/website/idl/instructions/permissionSet.md deleted file mode 100644 index afc55b6..0000000 --- a/website/idl/instructions/permissionSet.md +++ /dev/null @@ -1,15 +0,0 @@ -Sets the permission in the PermissionAccount - -## Accounts - -| Name | isMut | isSigner | Description | -| ---------- | ----- | -------- | ----------- | -| permission | true | false | | -| authority | false | true | | - -## Args - -| Field | Type | Description | -| ---------- | --------------------------------------------------------- | --------------------------------------------------------------------------------- | -| permission | [SwitchboardPermission](/idl/types/SwitchboardPermission) | The [SwitchboardPermission](/idl/types/SwitchboardPermission) enumeration to set. | -| enable | bool | Specifies whether to enable or disable the permission. | diff --git a/website/idl/instructions/programConfig.md b/website/idl/instructions/programConfig.md deleted file mode 100644 index 75cfd08..0000000 --- a/website/idl/instructions/programConfig.md +++ /dev/null @@ -1,15 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ------------ | ----- | -------- | ----------- | -| authority | false | true | | -| programState | false | false | | -| daoMint | false | false | | - -## Args - -| Field | Type | Description | -| ------- | --------- | ----------- | -| token | publicKey | | -| bump | u8 | | -| daoMint | publicKey | | diff --git a/website/idl/instructions/programInit.md b/website/idl/instructions/programInit.md deleted file mode 100644 index 1a92a87..0000000 --- a/website/idl/instructions/programInit.md +++ /dev/null @@ -1,20 +0,0 @@ -Create and initialize the [SbState](/idl/accounts/SbState). - -## Accounts - -| Name | isMut | isSigner | Description | -| ------------- | ----- | -------- | ----------- | -| state | true | false | | -| authority | false | false | | -| tokenMint | true | false | | -| vault | true | false | | -| payer | true | true | | -| systemProgram | false | false | | -| tokenProgram | false | false | | -| daoMint | false | false | | - -## Args - -| Field | Type | Description | -| --------- | ---- | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | diff --git a/website/idl/instructions/vaultTransfer.md b/website/idl/instructions/vaultTransfer.md deleted file mode 100644 index 36f1e69..0000000 --- a/website/idl/instructions/vaultTransfer.md +++ /dev/null @@ -1,16 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ------------ | ----- | -------- | ----------- | -| state | false | false | | -| authority | false | true | | -| to | true | false | | -| vault | true | false | | -| tokenProgram | false | false | | - -## Args - -| Field | Type | Description | -| --------- | ---- | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| amount | u64 | | diff --git a/website/idl/instructions/vrfInit.md b/website/idl/instructions/vrfInit.md deleted file mode 100644 index 5efa336..0000000 --- a/website/idl/instructions/vrfInit.md +++ /dev/null @@ -1,17 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ------------ | ----- | -------- | ----------- | -| vrf | true | false | | -| authority | false | false | | -| oracleQueue | false | false | | -| escrow | true | false | | -| programState | false | false | | -| tokenProgram | false | false | | - -## Args - -| Field | Type | Description | -| --------- | ------------------------------- | ----------- | -| callback | [Callback](/idl/types/Callback) | | -| stateBump | u8 | | diff --git a/website/idl/instructions/vrfProveAndVerify.md b/website/idl/instructions/vrfProveAndVerify.md deleted file mode 100644 index f52335c..0000000 --- a/website/idl/instructions/vrfProveAndVerify.md +++ /dev/null @@ -1,22 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ------------------ | ----- | -------- | ----------- | -| vrf | true | false | | -| callbackPid | false | false | | -| tokenProgram | false | false | | -| escrow | true | false | | -| programState | false | false | | -| oracle | false | false | | -| oracleAuthority | false | true | | -| oracleWallet | true | false | | -| instructionsSysvar | false | false | | - -## Args - -| Field | Type | Description | -| --------- | ----------------- | ----------- | -| nonce | Option<u32> | | -| stateBump | u8 | | -| idx | u32 | | -| proof | bytes | | diff --git a/website/idl/instructions/vrfRequestRandomness.md b/website/idl/instructions/vrfRequestRandomness.md deleted file mode 100644 index eb2f664..0000000 --- a/website/idl/instructions/vrfRequestRandomness.md +++ /dev/null @@ -1,23 +0,0 @@ -## Accounts - -| Name | isMut | isSigner | Description | -| ----------------- | ----- | -------- | ----------- | -| authority | false | true | | -| vrf | true | false | | -| oracleQueue | true | false | | -| queueAuthority | false | false | | -| dataBuffer | false | false | | -| permission | true | false | | -| escrow | true | false | | -| payerWallet | true | false | | -| payerAuthority | false | true | | -| recentBlockhashes | false | false | | -| programState | false | false | | -| tokenProgram | false | false | | - -## Args - -| Field | Type | Description | -| -------------- | ---- | ----------- | -| permissionBump | u8 | | -| stateBump | u8 | | diff --git a/website/idl/overview.mdx b/website/idl/overview.mdx deleted file mode 100644 index 88c9a78..0000000 --- a/website/idl/overview.mdx +++ /dev/null @@ -1,123 +0,0 @@ ---- -sidebar_position: 5 -slug: . -title: Overview ---- - -# Program - -![Page Last Updated](./page-last-updated.svg) - -## [Accounts](/idl/accounts) - -- [AggregatorAccountData](/idl/accounts/AggregatorAccountData) -- [BufferRelayerAccountData](/idl/accounts/BufferRelayerAccountData) -- [CrankAccountData](/idl/accounts/CrankAccountData) -- [JobAccountData](/idl/accounts/JobAccountData) -- [LeaseAccountData](/idl/accounts/LeaseAccountData) -- [OracleAccountData](/idl/accounts/OracleAccountData) -- [OracleQueueAccountData](/idl/accounts/OracleQueueAccountData) -- [PermissionAccountData](/idl/accounts/PermissionAccountData) -- [SbState](/idl/accounts/SbState) -- [VrfAccountData](/idl/accounts/VrfAccountData) - -## [Instructions](/idl/instructions) - -- [aggregatorAddJob](/idl/instructions/aggregatorAddJob) -- [aggregatorInit](/idl/instructions/aggregatorInit) -- [aggregatorLock](/idl/instructions/aggregatorLock) -- [aggregatorOpenRound](/idl/instructions/aggregatorOpenRound) -- [aggregatorRemoveJob](/idl/instructions/aggregatorRemoveJob) -- [aggregatorSaveResult](/idl/instructions/aggregatorSaveResult) -- [aggregatorSetAuthority](/idl/instructions/aggregatorSetAuthority) -- [aggregatorSetBatchSize](/idl/instructions/aggregatorSetBatchSize) -- [aggregatorSetForceReportPeriod](/idl/instructions/aggregatorSetForceReportPeriod) -- [aggregatorSetHistoryBuffer](/idl/instructions/aggregatorSetHistoryBuffer) -- [aggregatorSetMinJobs](/idl/instructions/aggregatorSetMinJobs) -- [aggregatorSetMinOracles](/idl/instructions/aggregatorSetMinOracles) -- [aggregatorSetQueue](/idl/instructions/aggregatorSetQueue) -- [aggregatorSetUpdateInterval](/idl/instructions/aggregatorSetUpdateInterval) -- [aggregatorSetVarianceThreshold](/idl/instructions/aggregatorSetVarianceThreshold) -- [bufferRelayerInit](/idl/instructions/bufferRelayerInit) -- [bufferRelayerOpenRound](/idl/instructions/bufferRelayerOpenRound) -- [bufferRelayerSaveResult](/idl/instructions/bufferRelayerSaveResult) -- [crankInit](/idl/instructions/crankInit) -- [crankPop](/idl/instructions/crankPop) -- [crankPush](/idl/instructions/crankPush) -- [jobInit](/idl/instructions/jobInit) -- [leaseExtend](/idl/instructions/leaseExtend) -- [leaseInit](/idl/instructions/leaseInit) -- [leaseSetAuthority](/idl/instructions/leaseSetAuthority) -- [leaseWithdraw](/idl/instructions/leaseWithdraw) -- [oracleHeartbeat](/idl/instructions/oracleHeartbeat) -- [oracleInit](/idl/instructions/oracleInit) -- [oracleQueueInit](/idl/instructions/oracleQueueInit) -- [oracleQueueSetRewards](/idl/instructions/oracleQueueSetRewards) -- [oracleQueueVrfConfig](/idl/instructions/oracleQueueVrfConfig) -- [oracleWithdraw](/idl/instructions/oracleWithdraw) -- [permissionInit](/idl/instructions/permissionInit) -- [permissionSet](/idl/instructions/permissionSet) -- [programConfig](/idl/instructions/programConfig) -- [programInit](/idl/instructions/programInit) -- [vaultTransfer](/idl/instructions/vaultTransfer) -- [vrfInit](/idl/instructions/vrfInit) -- [vrfProveAndVerify](/idl/instructions/vrfProveAndVerify) -- [vrfRequestRandomness](/idl/instructions/vrfRequestRandomness) - -## [Events](/idl/events) - -- [AggregatorCrankEvictionEvent](/idl/events/AggregatorCrankEvictionEvent) -- [AggregatorInitEvent](/idl/events/AggregatorInitEvent) -- [AggregatorOpenRoundEvent](/idl/events/AggregatorOpenRoundEvent) -- [AggregatorValueUpdateEvent](/idl/events/AggregatorValueUpdateEvent) -- [BufferRelayerOpenRoundEvent](/idl/events/BufferRelayerOpenRoundEvent) -- [CrankLeaseInsufficientFundsEvent](/idl/events/CrankLeaseInsufficientFundsEvent) -- [CrankPopExpectedFailureEvent](/idl/events/CrankPopExpectedFailureEvent) -- [FeedPermissionRevokedEvent](/idl/events/FeedPermissionRevokedEvent) -- [GarbageCollectFailureEvent](/idl/events/GarbageCollectFailureEvent) -- [LeaseFundEvent](/idl/events/LeaseFundEvent) -- [LeaseWithdrawEvent](/idl/events/LeaseWithdrawEvent) -- [OracleBootedEvent](/idl/events/OracleBootedEvent) -- [OracleRewardEvent](/idl/events/OracleRewardEvent) -- [OracleSlashEvent](/idl/events/OracleSlashEvent) -- [OracleWithdrawEvent](/idl/events/OracleWithdrawEvent) -- [ProbationBrokenEvent](/idl/events/ProbationBrokenEvent) -- [VrfCallbackPerformedEvent](/idl/events/VrfCallbackPerformedEvent) -- [VrfProveEvent](/idl/events/VrfProveEvent) -- [VrfRequestEvent](/idl/events/VrfRequestEvent) -- [VrfRequestRandomnessEvent](/idl/events/VrfRequestRandomnessEvent) -- [VrfVerifyEvent](/idl/events/VrfVerifyEvent) - -## [Types](/idl/types) - -- [AccountMetaBorsh](/idl/types/AccountMetaBorsh) -- [AccountMetaZC](/idl/types/AccountMetaZC) -- [AggregatorHistoryRow](/idl/types/AggregatorHistoryRow) -- [AggregatorRound](/idl/types/AggregatorRound) -- [BorshDecimal](/idl/types/BorshDecimal) -- [BufferRelayerRound](/idl/types/BufferRelayerRound) -- [Callback](/idl/types/Callback) -- [CallbackZC](/idl/types/CallbackZC) -- [CompletedPointZC](/idl/types/CompletedPointZC) -- [CrankRow](/idl/types/CrankRow) -- [EcvrfIntermediate](/idl/types/EcvrfIntermediate) -- [EcvrfProofZC](/idl/types/EcvrfProofZC) -- [EdwardsPointZC](/idl/types/EdwardsPointZC) -- [Error](/idl/types/Error) -- [FieldElementZC](/idl/types/FieldElementZC) -- [Hash](/idl/types/Hash) -- [Lanes](/idl/types/Lanes) -- [Lanes](/idl/types/Lanes) -- [OracleMetrics](/idl/types/OracleMetrics) -- [OracleResponseType](/idl/types/OracleResponseType) -- [ProjectivePointZC](/idl/types/ProjectivePointZC) -- [Scalar](/idl/types/Scalar) -- [Shuffle](/idl/types/Shuffle) -- [Shuffle](/idl/types/Shuffle) -- [SwitchboardDecimal](/idl/types/SwitchboardDecimal) -- [SwitchboardPermission](/idl/types/SwitchboardPermission) -- [VrfBuilder](/idl/types/VrfBuilder) -- [VrfRound](/idl/types/VrfRound) -- [VrfStatus](/idl/types/VrfStatus) - -## [Errors](/idl/errors) diff --git a/website/idl/page-last-updated.svg b/website/idl/page-last-updated.svg deleted file mode 100644 index 5360674..0000000 --- a/website/idl/page-last-updated.svg +++ /dev/null @@ -1 +0,0 @@ -Page LastUpdated: Jun-29-2022Page LastUpdatedJun-29-2022 \ No newline at end of file diff --git a/website/idl/types/AccountMetaBorsh.md b/website/idl/types/AccountMetaBorsh.md deleted file mode 100644 index 10246d7..0000000 --- a/website/idl/types/AccountMetaBorsh.md +++ /dev/null @@ -1,5 +0,0 @@ -| Field | Type | Description | -| ---------- | --------- | ----------- | -| pubkey | publicKey | | -| isSigner | bool | | -| isWritable | bool | | diff --git a/website/idl/types/AccountMetaZC.md b/website/idl/types/AccountMetaZC.md deleted file mode 100644 index 10246d7..0000000 --- a/website/idl/types/AccountMetaZC.md +++ /dev/null @@ -1,5 +0,0 @@ -| Field | Type | Description | -| ---------- | --------- | ----------- | -| pubkey | publicKey | | -| isSigner | bool | | -| isWritable | bool | | diff --git a/website/idl/types/AggregatorHistoryRow.md b/website/idl/types/AggregatorHistoryRow.md deleted file mode 100644 index a9485fa..0000000 --- a/website/idl/types/AggregatorHistoryRow.md +++ /dev/null @@ -1,4 +0,0 @@ -| Field | Type | Description | -| --------- | --------------------------------------------------- | ---------------------------- | -| timestamp | i64 | The timestamp of the sample. | -| value | [SwitchboardDecimal](/idl/types/SwitchboardDecimal) | The value of the sample. | diff --git a/website/idl/types/AggregatorRound.md b/website/idl/types/AggregatorRound.md deleted file mode 100644 index 3cb7019..0000000 --- a/website/idl/types/AggregatorRound.md +++ /dev/null @@ -1,16 +0,0 @@ -| Field | Type | Description | -| ------------------ | ------------------------------------------------------- | ------------------------------------------------------------------- | -| numSuccess | u32 | Number of successful responses | -| numError | u32 | Number of error responses | -| isClosed | bool | Whether an update request round has ended | -| roundOpenSlot | u64 | Solana slot when the update request round was open | -| roundOpenTimestamp | i64 | Timestamp when the update request round was open | -| result | [SwitchboardDecimal](/idl/types/SwitchboardDecimal) | Maintains the current median of all successful round responses | -| stdDeviation | [SwitchboardDecimal](/idl/types/SwitchboardDecimal) | Standard deviation of the accepted results in the round | -| minResponse | [SwitchboardDecimal](/idl/types/SwitchboardDecimal) | Maintains the minimum oracle response this round | -| maxResponse | [SwitchboardDecimal](/idl/types/SwitchboardDecimal) | Maintains the maximum oracle response this round | -| oraclePubkeysData | publicKey[16] | Public keys of the oracles fulfilling this round | -| mediansData | [SwitchboardDecimal](/idl/types/SwitchboardDecimal)[16] | Represents all successful node responses this round. `NaN` if empty | -| currentPayout | i64[16] | Rewards to provide oracles and round openers on this queue. | -| mediansFulfilled | bool[16] | Keeps track of which responses are fulfilled here | -| errorsFulfilled | bool[16] | Keeps track of which errors are fulfilled here | diff --git a/website/idl/types/BorshDecimal.md b/website/idl/types/BorshDecimal.md deleted file mode 100644 index 8421bc0..0000000 --- a/website/idl/types/BorshDecimal.md +++ /dev/null @@ -1,4 +0,0 @@ -| Field | Type | Description | -| -------- | ---- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| mantissa | i128 | The part of a floating-point number that represents the significant digits of that number, and that is multiplied by the base raised to the exponent to give the actual value of the number. | -| scale | u32 | The number of decimal places to move to the left to yield the actual value. | diff --git a/website/idl/types/BufferRelayerRound.md b/website/idl/types/BufferRelayerRound.md deleted file mode 100644 index 39e73c1..0000000 --- a/website/idl/types/BufferRelayerRound.md +++ /dev/null @@ -1,7 +0,0 @@ -| Field | Type | Description | -| ------------------ | --------- | ------------------------------------------------------------------------- | -| numSuccess | u32 | Number of successful responses | -| numError | u32 | Number of error responses | -| roundOpenSlot | u64 | Slot when the buffer relayer round was opened | -| roundOpenTimestamp | i64 | Timestamp when the buffer relayer round was opened | -| oraclePubkey | publicKey | The public key of the oracle fulfilling the buffer relayer update request | diff --git a/website/idl/types/Callback.md b/website/idl/types/Callback.md deleted file mode 100644 index bcf6e2b..0000000 --- a/website/idl/types/Callback.md +++ /dev/null @@ -1,5 +0,0 @@ -| Field | Type | Description | -| --------- | ------------------------------------------------- | ----------------------------------------------------- | -| programId | publicKey | The program ID of the callback program being invoked. | -| accounts | [AccountMetaBorsh](/idl/types/AccountMetaBorsh)[] | The accounts being used in the callback instruction. | -| ixData | bytes | The serialized instruction data. | diff --git a/website/idl/types/CallbackZC.md b/website/idl/types/CallbackZC.md deleted file mode 100644 index 40d9493..0000000 --- a/website/idl/types/CallbackZC.md +++ /dev/null @@ -1,7 +0,0 @@ -| Field | Type | Description | -| ----------- | --------------------------------------------- | ----------------------------------------------------- | -| programId | publicKey | The program ID of the callback program being invoked. | -| accounts | [AccountMetaZC](/idl/types/AccountMetaZC)[32] | The accounts being used in the callback instruction. | -| accountsLen | u32 | The number of accounts in the accounts array. | -| ixData | u8[1024] | The serialized instruction data. | -| ixDataLen | u32 | The length of the instruction buffer. | diff --git a/website/idl/types/CompletedPointZC.md b/website/idl/types/CompletedPointZC.md deleted file mode 100644 index 819d971..0000000 --- a/website/idl/types/CompletedPointZC.md +++ /dev/null @@ -1,6 +0,0 @@ -| Field | Type | Description | -| ----- | ------------------------------------------- | ----------- | -| x | [FieldElementZC](/idl/types/FieldElementZC) | | -| y | [FieldElementZC](/idl/types/FieldElementZC) | | -| z | [FieldElementZC](/idl/types/FieldElementZC) | | -| t | [FieldElementZC](/idl/types/FieldElementZC) | | diff --git a/website/idl/types/CrankRow.md b/website/idl/types/CrankRow.md deleted file mode 100644 index a6357f4..0000000 --- a/website/idl/types/CrankRow.md +++ /dev/null @@ -1,4 +0,0 @@ -| Field | Type | Description | -| ------------- | --------- | ------------------------------------------------------ | -| pubkey | publicKey | Aggregator account pubkey | -| nextTimestamp | i64 | Next aggregator update timestamp to order the crank by | diff --git a/website/idl/types/EcvrfIntermediate.md b/website/idl/types/EcvrfIntermediate.md deleted file mode 100644 index ea23476..0000000 --- a/website/idl/types/EcvrfIntermediate.md +++ /dev/null @@ -1,7 +0,0 @@ -| Field | Type | Description | -| ----- | ------------------------------------------- | ----------- | -| r | [FieldElementZC](/idl/types/FieldElementZC) | | -| nS | [FieldElementZC](/idl/types/FieldElementZC) | | -| d | [FieldElementZC](/idl/types/FieldElementZC) | | -| t13 | [FieldElementZC](/idl/types/FieldElementZC) | | -| t15 | [FieldElementZC](/idl/types/FieldElementZC) | | diff --git a/website/idl/types/EcvrfProofZC.md b/website/idl/types/EcvrfProofZC.md deleted file mode 100644 index 57fec40..0000000 --- a/website/idl/types/EcvrfProofZC.md +++ /dev/null @@ -1,5 +0,0 @@ -| Field | Type | Description | -| ----- | ------------------------------------------- | ----------- | -| gamma | [EdwardsPointZC](/idl/types/EdwardsPointZC) | | -| c | [Scalar](/idl/types/Scalar) | | -| s | [Scalar](/idl/types/Scalar) | | diff --git a/website/idl/types/EdwardsPointZC.md b/website/idl/types/EdwardsPointZC.md deleted file mode 100644 index 819d971..0000000 --- a/website/idl/types/EdwardsPointZC.md +++ /dev/null @@ -1,6 +0,0 @@ -| Field | Type | Description | -| ----- | ------------------------------------------- | ----------- | -| x | [FieldElementZC](/idl/types/FieldElementZC) | | -| y | [FieldElementZC](/idl/types/FieldElementZC) | | -| z | [FieldElementZC](/idl/types/FieldElementZC) | | -| t | [FieldElementZC](/idl/types/FieldElementZC) | | diff --git a/website/idl/types/Error.md b/website/idl/types/Error.md deleted file mode 100644 index 474b6f0..0000000 --- a/website/idl/types/Error.md +++ /dev/null @@ -1,6 +0,0 @@ -| Name | Value | Description | -| -------------------- | ----- | ----------- | -| InvalidPublicKey | 1 | | -| SerializationError | 2 | | -| DeserializationError | 3 | | -| InvalidDataError | 4 | | diff --git a/website/idl/types/FieldElementZC.md b/website/idl/types/FieldElementZC.md deleted file mode 100644 index 6046f96..0000000 --- a/website/idl/types/FieldElementZC.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| ----- | ------ | ----------- | -| bytes | u64[5] | | diff --git a/website/idl/types/Hash.md b/website/idl/types/Hash.md deleted file mode 100644 index 471cfcd..0000000 --- a/website/idl/types/Hash.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| ----- | ------ | ---------------------------------- | -| data | u8[32] | The bytes used to derive the hash. | diff --git a/website/idl/types/Lanes.md b/website/idl/types/Lanes.md deleted file mode 100644 index 7bc512d..0000000 --- a/website/idl/types/Lanes.md +++ /dev/null @@ -1,8 +0,0 @@ -| Name | Value | Description | -| ---- | ----- | ----------- | -| D | 1 | | -| C | 2 | | -| AB | 3 | | -| AC | 4 | | -| AD | 5 | | -| BCD | 6 | | diff --git a/website/idl/types/OracleMetrics.md b/website/idl/types/OracleMetrics.md deleted file mode 100644 index 1697b0f..0000000 --- a/website/idl/types/OracleMetrics.md +++ /dev/null @@ -1,11 +0,0 @@ -| Field | Type | Description | -| ----------------------- | ---- | ---------------------------------------------------------------------------------------------------------- | -| consecutiveSuccess | u64 | Number of consecutive successful update request | -| consecutiveError | u64 | Number of consecutive update request that resulted in an error | -| consecutiveDisagreement | u64 | Number of consecutive update request that resulted in a disagreement with the accepted median result | -| consecutiveLateResponse | u64 | Number of consecutive update request that were posted on-chain late and not included in an accepted result | -| consecutiveFailure | u64 | Number of consecutive update request that resulted in a failure | -| totalSuccess | u128 | Total number of successful update request | -| totalError | u128 | Total number of update request that resulted in an error | -| totalDisagreement | u128 | Total number of update request that resulted in a disagreement with the accepted median result | -| totalLateResponse | u128 | Total number of update request that were posted on-chain late and not included in an accepted result | diff --git a/website/idl/types/OracleResponseType.md b/website/idl/types/OracleResponseType.md deleted file mode 100644 index b4a5c40..0000000 --- a/website/idl/types/OracleResponseType.md +++ /dev/null @@ -1,6 +0,0 @@ -| Name | Value | Description | -| ---------------- | ----- | ----------- | -| TypeSuccess | 1 | | -| TypeError | 2 | | -| TypeDisagreement | 3 | | -| TypeNoResponse | 4 | | diff --git a/website/idl/types/ProjectivePointZC.md b/website/idl/types/ProjectivePointZC.md deleted file mode 100644 index 0a3ceda..0000000 --- a/website/idl/types/ProjectivePointZC.md +++ /dev/null @@ -1,5 +0,0 @@ -| Field | Type | Description | -| ----- | ------------------------------------------- | ----------- | -| x | [FieldElementZC](/idl/types/FieldElementZC) | | -| y | [FieldElementZC](/idl/types/FieldElementZC) | | -| z | [FieldElementZC](/idl/types/FieldElementZC) | | diff --git a/website/idl/types/Scalar.md b/website/idl/types/Scalar.md deleted file mode 100644 index 97f3c96..0000000 --- a/website/idl/types/Scalar.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| ----- | ------ | ----------- | -| bytes | u8[32] | | diff --git a/website/idl/types/Shuffle.md b/website/idl/types/Shuffle.md deleted file mode 100644 index b6a6833..0000000 --- a/website/idl/types/Shuffle.md +++ /dev/null @@ -1,12 +0,0 @@ -| Name | Value | Description | -| ---- | ----- | ----------- | -| AAAA | 1 | | -| BBBB | 2 | | -| BADC | 3 | | -| BACD | 4 | | -| ADDA | 5 | | -| CBCB | 6 | | -| ABDC | 7 | | -| ABAB | 8 | | -| DBBD | 9 | | -| CACA | 10 | | diff --git a/website/idl/types/SwitchboardDecimal.md b/website/idl/types/SwitchboardDecimal.md deleted file mode 100644 index 122b817..0000000 --- a/website/idl/types/SwitchboardDecimal.md +++ /dev/null @@ -1,6 +0,0 @@ -A struct representing a floating point number on-chain. - -| Field | Type | Description | -| -------- | ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| mantissa | i128 | The part of a floating-point number that represents the significant digits of that number, and that is multiplied by the base, 10, raised to the power of scale to give the actual value of the number. | -| scale | u32 | The number of decimal places to move to the left to yield the actual value. | diff --git a/website/idl/types/SwitchboardPermission.md b/website/idl/types/SwitchboardPermission.md deleted file mode 100644 index c743c80..0000000 --- a/website/idl/types/SwitchboardPermission.md +++ /dev/null @@ -1,6 +0,0 @@ -| Name | Value | Description | -| ---------------------- | ----- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| None | 0 | No assigned permissions. | -| PermitOracleHeartbeat | 1 | queue `authority` has permitted an Oracle Account to heartbeat on it's queue and receive update requests. Oracles _always_ need permissions to join a queue. | -| PermitOracleQueueUsage | 2 | queue `authority` has permitted an Aggregator Account to request updates from it's oracles or join an existing crank. **Note:** Not required if a queue has `unpermissionedFeedsEnabled`. | -| PermitVrfRequests | 4 | queue `authority` has permitted a VRF Account to request randomness from it's oracles. **Note:** Not required if a queue has `unpermissionedVrfEnabled`. | diff --git a/website/idl/types/VrfBuilder.md b/website/idl/types/VrfBuilder.md deleted file mode 100644 index f89ef6e..0000000 --- a/website/idl/types/VrfBuilder.md +++ /dev/null @@ -1,40 +0,0 @@ -| Field | Type | Description | -| --------------- | ------------------------------------------------- | ----------- | -| producer | publicKey | | -| status | [VrfStatus](/idl/types/VrfStatus) | | -| reprProof | u8[80] | | -| proof | [EcvrfProofZC](/idl/types/EcvrfProofZC) | | -| yPoint | publicKey | | -| stage | u32 | | -| stage1Out | [EcvrfIntermediate](/idl/types/EcvrfIntermediate) | | -| r1 | [EdwardsPointZC](/idl/types/EdwardsPointZC) | | -| r2 | [EdwardsPointZC](/idl/types/EdwardsPointZC) | | -| stage3Out | [EcvrfIntermediate](/idl/types/EcvrfIntermediate) | | -| hPoint | [EdwardsPointZC](/idl/types/EdwardsPointZC) | | -| sReduced | [Scalar](/idl/types/Scalar) | | -| yPointBuilder | [FieldElementZC](/idl/types/FieldElementZC)[3] | | -| yRistrettoPoint | [EdwardsPointZC](/idl/types/EdwardsPointZC) | | -| mulRound | u8 | | -| hashPointsRound | u8 | | -| mulTmp1 | [CompletedPointZC](/idl/types/CompletedPointZC) | | -| uPoint1 | [EdwardsPointZC](/idl/types/EdwardsPointZC) | | -| uPoint2 | [EdwardsPointZC](/idl/types/EdwardsPointZC) | | -| vPoint1 | [EdwardsPointZC](/idl/types/EdwardsPointZC) | | -| vPoint2 | [EdwardsPointZC](/idl/types/EdwardsPointZC) | | -| uPoint | [EdwardsPointZC](/idl/types/EdwardsPointZC) | | -| vPoint | [EdwardsPointZC](/idl/types/EdwardsPointZC) | | -| u1 | [FieldElementZC](/idl/types/FieldElementZC) | | -| u2 | [FieldElementZC](/idl/types/FieldElementZC) | | -| invertee | [FieldElementZC](/idl/types/FieldElementZC) | | -| y | [FieldElementZC](/idl/types/FieldElementZC) | | -| z | [FieldElementZC](/idl/types/FieldElementZC) | | -| p1Bytes | u8[32] | | -| p2Bytes | u8[32] | | -| p3Bytes | u8[32] | | -| p4Bytes | u8[32] | | -| cPrimeHashbuf | u8[16] | | -| m1 | [FieldElementZC](/idl/types/FieldElementZC) | | -| m2 | [FieldElementZC](/idl/types/FieldElementZC) | | -| txRemaining | u32 | | -| verified | bool | | -| result | u8[32] | | diff --git a/website/idl/types/VrfRound.md b/website/idl/types/VrfRound.md deleted file mode 100644 index 5e0bea6..0000000 --- a/website/idl/types/VrfRound.md +++ /dev/null @@ -1,9 +0,0 @@ -| Field | Type | Description | -| ---------------- | ------- | ----------- | -| alpha | u8[256] | | -| alphaLen | u32 | | -| requestSlot | u64 | | -| requestTimestamp | i64 | | -| result | u8[32] | | -| numVerified | u32 | | -| ebuf | u8[256] | | diff --git a/website/idl/types/VrfStatus.md b/website/idl/types/VrfStatus.md deleted file mode 100644 index 4994db8..0000000 --- a/website/idl/types/VrfStatus.md +++ /dev/null @@ -1,8 +0,0 @@ -| Name | Value | Description | -| --------------------- | ----- | ------------------------------------------------------------------------------- | -| StatusNone | 0 | VRF Account has not requested randomness yet. | -| StatusRequesting | 1 | VRF Account has requested randomness but has yet to receive an oracle response. | -| StatusVerifying | 2 | VRF Account has received a VRF proof that has yet to be verified on-chain. | -| StatusVerified | 3 | VRF Account has successfully requested and verified randomness on-chain. | -| StatusCallbackSuccess | 4 | VRF Account's callback was invoked successfully. | -| StatusVerifyFailure | 5 | Failed to verify VRF proof. | diff --git a/website/idl/types/_AggregatorAddJobParams.md b/website/idl/types/_AggregatorAddJobParams.md deleted file mode 100644 index 2a4b9ea..0000000 --- a/website/idl/types/_AggregatorAddJobParams.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| ------ | ---------------- | ----------- | -| weight | Option<u8> | | diff --git a/website/idl/types/_AggregatorInitParams.md b/website/idl/types/_AggregatorInitParams.md deleted file mode 100644 index 5cb94b9..0000000 --- a/website/idl/types/_AggregatorInitParams.md +++ /dev/null @@ -1,16 +0,0 @@ -Parameters to create and initialize the AggregatorAccount. - -| Field | Type | Description | -| --------------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | -| name | u8[32] | Name of the aggregator to store on-chain. | -| metadata | u8[128] | Metadata of the aggregator to store on-chain. | -| batchSize | u32 | Number of oracles to request on aggregator update. | -| minOracleResults | u32 | Minimum number of oracle responses required before a round is validated. | -| minJobResults | u32 | Minimum number of feed jobs suggested to be successful before an oracle sends a response. | -| minUpdateDelaySeconds | u32 | Minimum number of seconds required between aggregator rounds. | -| startAfter | i64 | unix_timestamp for which no feed update will occur before. | -| varianceThreshold | [BorshDecimal](/idl/types/BorshDecimal) | Change percentage required between a previous round and the current round. If variance percentage is not met, reject new oracle responses. | -| forceReportPeriod | i64 | Number of seconds for which, even if the variance threshold is not passed, accept new responses from oracles. | -| expiration | i64 | unix_timestamp after which funds may be withdrawn from the aggregator. null/undefined/0 means the feed has no expiration. | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| disableCrank | bool | | diff --git a/website/idl/types/_AggregatorLockParams.md b/website/idl/types/_AggregatorLockParams.md deleted file mode 100644 index c5be7f4..0000000 --- a/website/idl/types/_AggregatorLockParams.md +++ /dev/null @@ -1,2 +0,0 @@ -| Field | Type | Description | -| ----- | ---- | ----------- | diff --git a/website/idl/types/_AggregatorOpenRoundParams.md b/website/idl/types/_AggregatorOpenRoundParams.md deleted file mode 100644 index c1fb2ed..0000000 --- a/website/idl/types/_AggregatorOpenRoundParams.md +++ /dev/null @@ -1,6 +0,0 @@ -| Field | Type | Description | -| -------------- | ---- | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| leaseBump | u8 | | -| permissionBump | u8 | | -| jitter | u8 | | diff --git a/website/idl/types/_AggregatorRemoveJobParams.md b/website/idl/types/_AggregatorRemoveJobParams.md deleted file mode 100644 index 58ba5e9..0000000 --- a/website/idl/types/_AggregatorRemoveJobParams.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| ------ | ---- | ----------- | -| jobIdx | u32 | | diff --git a/website/idl/types/_AggregatorSaveResultParams.md b/website/idl/types/_AggregatorSaveResultParams.md deleted file mode 100644 index 88ff8cf..0000000 --- a/website/idl/types/_AggregatorSaveResultParams.md +++ /dev/null @@ -1,12 +0,0 @@ -| Field | Type | Description | -| -------------------- | --------------------------------------- | ------------------------------------------------------------------------ | -| oracleIdx | u32 | | -| error | bool | | -| value | [BorshDecimal](/idl/types/BorshDecimal) | | -| jobsChecksum | u8[32] | | -| minResponse | [BorshDecimal](/idl/types/BorshDecimal) | | -| maxResponse | [BorshDecimal](/idl/types/BorshDecimal) | | -| feedPermissionBump | u8 | | -| oraclePermissionBump | u8 | | -| leaseBump | u8 | | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | diff --git a/website/idl/types/_AggregatorSetAuthorityParams.md b/website/idl/types/_AggregatorSetAuthorityParams.md deleted file mode 100644 index c5be7f4..0000000 --- a/website/idl/types/_AggregatorSetAuthorityParams.md +++ /dev/null @@ -1,2 +0,0 @@ -| Field | Type | Description | -| ----- | ---- | ----------- | diff --git a/website/idl/types/_AggregatorSetBatchSizeParams.md b/website/idl/types/_AggregatorSetBatchSizeParams.md deleted file mode 100644 index e810b43..0000000 --- a/website/idl/types/_AggregatorSetBatchSizeParams.md +++ /dev/null @@ -1,5 +0,0 @@ -Set the number of oracles to request an update from each round. - -| Field | Type | Description | -| --------- | ---- | -------------------------------------------------- | -| batchSize | u32 | Number of oracles to request on aggregator update. | diff --git a/website/idl/types/_AggregatorSetForceReportPeriodParams.md b/website/idl/types/_AggregatorSetForceReportPeriodParams.md deleted file mode 100644 index 2f29923..0000000 --- a/website/idl/types/_AggregatorSetForceReportPeriodParams.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| ----------------- | ---- | ----------- | -| forceReportPeriod | u32 | | diff --git a/website/idl/types/_AggregatorSetHistoryBufferParams.md b/website/idl/types/_AggregatorSetHistoryBufferParams.md deleted file mode 100644 index c5be7f4..0000000 --- a/website/idl/types/_AggregatorSetHistoryBufferParams.md +++ /dev/null @@ -1,2 +0,0 @@ -| Field | Type | Description | -| ----- | ---- | ----------- | diff --git a/website/idl/types/_AggregatorSetMinJobsParams.md b/website/idl/types/_AggregatorSetMinJobsParams.md deleted file mode 100644 index 6835388..0000000 --- a/website/idl/types/_AggregatorSetMinJobsParams.md +++ /dev/null @@ -1,5 +0,0 @@ -Set the minimum number of feed jobs suggested to be successful before an oracle sends a response. - -| Field | Type | Description | -| ------------- | ---- | ----------------------------------------------------------------------------------------- | -| minJobResults | u32 | Minimum number of feed jobs suggested to be successful before an oracle sends a response. | diff --git a/website/idl/types/_AggregatorSetMinOraclesParams.md b/website/idl/types/_AggregatorSetMinOraclesParams.md deleted file mode 100644 index e8da3b7..0000000 --- a/website/idl/types/_AggregatorSetMinOraclesParams.md +++ /dev/null @@ -1,5 +0,0 @@ -Set the minimum number of oracle responses required before a round is validated. - -| Field | Type | Description | -| ---------------- | ---- | ------------------------------------------------------------------------ | -| minOracleResults | u32 | Minimum number of oracle responses required before a round is validated. | diff --git a/website/idl/types/_AggregatorSetQueueParams.md b/website/idl/types/_AggregatorSetQueueParams.md deleted file mode 100644 index c5be7f4..0000000 --- a/website/idl/types/_AggregatorSetQueueParams.md +++ /dev/null @@ -1,2 +0,0 @@ -| Field | Type | Description | -| ----- | ---- | ----------- | diff --git a/website/idl/types/_AggregatorSetUpdateIntervalParams.md b/website/idl/types/_AggregatorSetUpdateIntervalParams.md deleted file mode 100644 index 3418a2d..0000000 --- a/website/idl/types/_AggregatorSetUpdateIntervalParams.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| ----------- | ---- | ----------- | -| newInterval | u32 | | diff --git a/website/idl/types/_AggregatorSetVarianceThresholdParams.md b/website/idl/types/_AggregatorSetVarianceThresholdParams.md deleted file mode 100644 index db44ff8..0000000 --- a/website/idl/types/_AggregatorSetVarianceThresholdParams.md +++ /dev/null @@ -1,5 +0,0 @@ -Set the change percentage required between a previous round and the current round. If variance percentage is not met, reject new oracle responses. - -| Field | Type | Description | -| ----------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | -| varianceThreshold | [BorshDecimal](/idl/types/BorshDecimal) | Change percentage required between a previous round and the current round. If variance percentage is not met, reject new oracle responses. | diff --git a/website/idl/types/_BufferRelayerInitParams.md b/website/idl/types/_BufferRelayerInitParams.md deleted file mode 100644 index 46c9c3a..0000000 --- a/website/idl/types/_BufferRelayerInitParams.md +++ /dev/null @@ -1,5 +0,0 @@ -| Field | Type | Description | -| --------------------- | ------ | ----------- | -| name | u8[32] | | -| minUpdateDelaySeconds | u32 | | -| stateBump | u8 | | diff --git a/website/idl/types/_BufferRelayerOpenRoundParams.md b/website/idl/types/_BufferRelayerOpenRoundParams.md deleted file mode 100644 index 564f54c..0000000 --- a/website/idl/types/_BufferRelayerOpenRoundParams.md +++ /dev/null @@ -1,4 +0,0 @@ -| Field | Type | Description | -| -------------- | ---- | ----------- | -| stateBump | u8 | | -| permissionBump | u8 | | diff --git a/website/idl/types/_BufferRelayerSaveResultParams.md b/website/idl/types/_BufferRelayerSaveResultParams.md deleted file mode 100644 index 03b4ee8..0000000 --- a/website/idl/types/_BufferRelayerSaveResultParams.md +++ /dev/null @@ -1,6 +0,0 @@ -| Field | Type | Description | -| -------------- | ----- | ----------- | -| stateBump | u8 | | -| permissionBump | u8 | | -| result | bytes | | -| success | bool | | diff --git a/website/idl/types/_CrankInitParams.md b/website/idl/types/_CrankInitParams.md deleted file mode 100644 index a91e365..0000000 --- a/website/idl/types/_CrankInitParams.md +++ /dev/null @@ -1,7 +0,0 @@ -Parameters to create and initialize the CrankAccount. - -| Field | Type | Description | -| --------- | ----- | ---------------------------------------- | -| name | bytes | | -| metadata | bytes | Metadata of the crank to store on-chain. | -| crankSize | u32 | | diff --git a/website/idl/types/_CrankPopParams.md b/website/idl/types/_CrankPopParams.md deleted file mode 100644 index d8dc8ea..0000000 --- a/website/idl/types/_CrankPopParams.md +++ /dev/null @@ -1,9 +0,0 @@ -Pops an aggregator from the crank. - -| Field | Type | Description | -| ------------------------- | ------------------ | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| leaseBumps | bytes | | -| permissionBumps | bytes | | -| nonce | Option<u32> | | -| failOpenOnAccountMismatch | Option<bool> | | diff --git a/website/idl/types/_CrankPushParams.md b/website/idl/types/_CrankPushParams.md deleted file mode 100644 index da60ede..0000000 --- a/website/idl/types/_CrankPushParams.md +++ /dev/null @@ -1,6 +0,0 @@ -Pushes a new aggregator onto the crank. - -| Field | Type | Description | -| -------------- | ---- | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| permissionBump | u8 | | diff --git a/website/idl/types/_EcvrfVerifyParams.md b/website/idl/types/_EcvrfVerifyParams.md deleted file mode 100644 index 2669a63..0000000 --- a/website/idl/types/_EcvrfVerifyParams.md +++ /dev/null @@ -1,4 +0,0 @@ -| Field | Type | Description | -| ----- | ----- | ----------- | -| proof | bytes | | -| alpha | bytes | | diff --git a/website/idl/types/_JobInitParams.md b/website/idl/types/_JobInitParams.md deleted file mode 100644 index f799f8a..0000000 --- a/website/idl/types/_JobInitParams.md +++ /dev/null @@ -1,6 +0,0 @@ -| Field | Type | Description | -| ---------- | ------ | ------------------------------------------------------------------------ | -| name | u8[32] | An optional name to apply to the job account. | -| expiration | i64 | unix_timestamp of when funds can be withdrawn from this account. | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| data | bytes | A serialized protocol buffer holding the schema of the job. | diff --git a/website/idl/types/_LeaseExtendParams.md b/website/idl/types/_LeaseExtendParams.md deleted file mode 100644 index 5313e4e..0000000 --- a/website/idl/types/_LeaseExtendParams.md +++ /dev/null @@ -1,8 +0,0 @@ -Adds fund to a LeaseAccount. Note that funds can always be withdrawn by the withdraw authority if one was set on lease initialization. - -| Field | Type | Description | -| ----------- | ----- | ------------------------------------------------------------------------ | -| loadAmount | u64 | | -| leaseBump | u8 | | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| walletBumps | bytes | | diff --git a/website/idl/types/_LeaseInitParams.md b/website/idl/types/_LeaseInitParams.md deleted file mode 100644 index 03a48a9..0000000 --- a/website/idl/types/_LeaseInitParams.md +++ /dev/null @@ -1,9 +0,0 @@ -Parameters for initializing a LeaseAccount - -| Field | Type | Description | -| ----------------- | --------- | ------------------------------------------------------------------------ | -| loadAmount | u64 | Token amount to load into the lease escrow | -| withdrawAuthority | publicKey | This authority will be permitted to withdraw funds from this lease. | -| leaseBump | u8 | | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| walletBumps | bytes | | diff --git a/website/idl/types/_LeaseSetAuthorityParams.md b/website/idl/types/_LeaseSetAuthorityParams.md deleted file mode 100644 index c5be7f4..0000000 --- a/website/idl/types/_LeaseSetAuthorityParams.md +++ /dev/null @@ -1,2 +0,0 @@ -| Field | Type | Description | -| ----- | ---- | ----------- | diff --git a/website/idl/types/_LeaseWithdrawParams.md b/website/idl/types/_LeaseWithdrawParams.md deleted file mode 100644 index 7cc9351..0000000 --- a/website/idl/types/_LeaseWithdrawParams.md +++ /dev/null @@ -1,7 +0,0 @@ -Parameters for withdrawing from a LeaseAccount - -| Field | Type | Description | -| --------- | ---- | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| leaseBump | u8 | | -| amount | u64 | Token amount to withdraw from the lease escrow | diff --git a/website/idl/types/_OracleHeartbeatParams.md b/website/idl/types/_OracleHeartbeatParams.md deleted file mode 100644 index ab63ffe..0000000 --- a/website/idl/types/_OracleHeartbeatParams.md +++ /dev/null @@ -1,5 +0,0 @@ -Parameters to initiate a heartbeat for an OracleAccount, signifying oracle is still healthy. - -| Field | Type | Description | -| -------------- | ---- | ----------- | -| permissionBump | u8 | | diff --git a/website/idl/types/_OracleInitParams.md b/website/idl/types/_OracleInitParams.md deleted file mode 100644 index 70ac1ca..0000000 --- a/website/idl/types/_OracleInitParams.md +++ /dev/null @@ -1,6 +0,0 @@ -| Field | Type | Description | -| ---------- | ----- | ------------------------------------------------------------------------ | -| name | bytes | Name of the oracle to store on-chain. | -| metadata | bytes | Metadata of the oracle to store on-chain. | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| oracleBump | u8 | | diff --git a/website/idl/types/_OracleQueueInitParams.md b/website/idl/types/_OracleQueueInitParams.md deleted file mode 100644 index bcb3b1d..0000000 --- a/website/idl/types/_OracleQueueInitParams.md +++ /dev/null @@ -1,16 +0,0 @@ -| Field | Type | Description | -| ----------------------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| name | u8[32] | Name of the queue to store on-chain. | -| metadata | u8[64] | Metadata of the queue to store on-chain. | -| reward | u64 | Rewards to provide oracles and round openers on this queue. | -| minStake | u64 | The minimum amount of stake oracles must present to remain on the queue. | -| feedProbationPeriod | u32 | After a feed lease is funded or re-funded, it must consecutively succeed N amount of times or its authorization to use the queue is auto-revoked. | -| oracleTimeout | u32 | Time period we should remove an oracle after if no response. | -| slashingEnabled | bool | Whether slashing is enabled on this queue. | -| varianceToleranceMultiplier | [BorshDecimal](/idl/types/BorshDecimal) | The tolerated variance amount oracle results can have from the accepted round result before being slashed. slashBound = varianceToleranceMultiplier \* stdDeviation Default: 2 | -| consecutiveFeedFailureLimit | u64 | Consecutive failure limit for a feed before feed permission is revoked. | -| consecutiveOracleFailureLimit | u64 | Consecutive failure limit for an oracle before oracle permission is revoked. | -| queueSize | u32 | The size of the queue. | -| unpermissionedFeeds | bool | Enabling this setting means data feeds do not need explicit permission to join the queue. | -| unpermissionedVrf | bool | | -| enableBufferRelayers | bool | | diff --git a/website/idl/types/_OracleQueueSetRewardsParams.md b/website/idl/types/_OracleQueueSetRewardsParams.md deleted file mode 100644 index 8dfd682..0000000 --- a/website/idl/types/_OracleQueueSetRewardsParams.md +++ /dev/null @@ -1,5 +0,0 @@ -Set the rewards to provide oracles and round openers on this queue. - -| Field | Type | Description | -| ------- | ---- | ----------------------------------------------------------- | -| rewards | u64 | Rewards to provide oracles and round openers on this queue. | diff --git a/website/idl/types/_OracleQueueSetVrfSettingsParams.md b/website/idl/types/_OracleQueueSetVrfSettingsParams.md deleted file mode 100644 index 1b036c9..0000000 --- a/website/idl/types/_OracleQueueSetVrfSettingsParams.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| ------------------------ | ---- | ----------- | -| unpermissionedVrfEnabled | bool | | diff --git a/website/idl/types/_OracleQueueVrfConfigParams.md b/website/idl/types/_OracleQueueVrfConfigParams.md deleted file mode 100644 index 1b036c9..0000000 --- a/website/idl/types/_OracleQueueVrfConfigParams.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| ------------------------ | ---- | ----------- | -| unpermissionedVrfEnabled | bool | | diff --git a/website/idl/types/_OracleWithdrawParams.md b/website/idl/types/_OracleWithdrawParams.md deleted file mode 100644 index eb32716..0000000 --- a/website/idl/types/_OracleWithdrawParams.md +++ /dev/null @@ -1,7 +0,0 @@ -Parameters to withdraw stake and/or rewards from an OracleAccount. - -| Field | Type | Description | -| -------------- | ---- | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| permissionBump | u8 | | -| amount | u64 | | diff --git a/website/idl/types/_PermissionInitParams.md b/website/idl/types/_PermissionInitParams.md deleted file mode 100644 index c5be7f4..0000000 --- a/website/idl/types/_PermissionInitParams.md +++ /dev/null @@ -1,2 +0,0 @@ -| Field | Type | Description | -| ----- | ---- | ----------- | diff --git a/website/idl/types/_PermissionSetParams.md b/website/idl/types/_PermissionSetParams.md deleted file mode 100644 index f69856a..0000000 --- a/website/idl/types/_PermissionSetParams.md +++ /dev/null @@ -1,6 +0,0 @@ -Parameters to set the permission in the PermissionAccount - -| Field | Type | Description | -| ---------- | --------------------------------------------------------- | --------------------------------------------------------------------------------- | -| permission | [SwitchboardPermission](/idl/types/SwitchboardPermission) | The [SwitchboardPermission](/idl/types/SwitchboardPermission) enumeration to set. | -| enable | bool | Specifies whether to enable or disable the permission. | diff --git a/website/idl/types/_ProgramConfigParams.md b/website/idl/types/_ProgramConfigParams.md deleted file mode 100644 index 7317298..0000000 --- a/website/idl/types/_ProgramConfigParams.md +++ /dev/null @@ -1,5 +0,0 @@ -| Field | Type | Description | -| ------- | --------- | ----------- | -| token | publicKey | | -| bump | u8 | | -| daoMint | publicKey | | diff --git a/website/idl/types/_ProgramInitParams.md b/website/idl/types/_ProgramInitParams.md deleted file mode 100644 index 62bdfac..0000000 --- a/website/idl/types/_ProgramInitParams.md +++ /dev/null @@ -1,3 +0,0 @@ -| Field | Type | Description | -| --------- | ---- | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | diff --git a/website/idl/types/_VaultTransferParams.md b/website/idl/types/_VaultTransferParams.md deleted file mode 100644 index ab78468..0000000 --- a/website/idl/types/_VaultTransferParams.md +++ /dev/null @@ -1,4 +0,0 @@ -| Field | Type | Description | -| --------- | ---- | ------------------------------------------------------------------------ | -| stateBump | u8 | The [SbState](/idl/accounts/SbState) bump used to derive its public key. | -| amount | u64 | | diff --git a/website/idl/types/_VrfInitParams.md b/website/idl/types/_VrfInitParams.md deleted file mode 100644 index 31add0d..0000000 --- a/website/idl/types/_VrfInitParams.md +++ /dev/null @@ -1,4 +0,0 @@ -| Field | Type | Description | -| --------- | ------------------------------- | ----------- | -| callback | [Callback](/idl/types/Callback) | | -| stateBump | u8 | | diff --git a/website/idl/types/_VrfProveAndVerifyParams.md b/website/idl/types/_VrfProveAndVerifyParams.md deleted file mode 100644 index 5af5ed1..0000000 --- a/website/idl/types/_VrfProveAndVerifyParams.md +++ /dev/null @@ -1,6 +0,0 @@ -| Field | Type | Description | -| --------- | ----------------- | ----------- | -| nonce | Option<u32> | | -| stateBump | u8 | | -| idx | u32 | | -| proof | bytes | | diff --git a/website/idl/types/_VrfProveParams.md b/website/idl/types/_VrfProveParams.md deleted file mode 100644 index 92a579b..0000000 --- a/website/idl/types/_VrfProveParams.md +++ /dev/null @@ -1,4 +0,0 @@ -| Field | Type | Description | -| ----- | ----- | ----------- | -| proof | bytes | | -| idx | u32 | | diff --git a/website/idl/types/_VrfRequestRandomnessParams.md b/website/idl/types/_VrfRequestRandomnessParams.md deleted file mode 100644 index 856ccfd..0000000 --- a/website/idl/types/_VrfRequestRandomnessParams.md +++ /dev/null @@ -1,4 +0,0 @@ -| Field | Type | Description | -| -------------- | ---- | ----------- | -| permissionBump | u8 | | -| stateBump | u8 | | diff --git a/website/idl/types/_VrfVerifyParams.md b/website/idl/types/_VrfVerifyParams.md deleted file mode 100644 index 739171d..0000000 --- a/website/idl/types/_VrfVerifyParams.md +++ /dev/null @@ -1,5 +0,0 @@ -| Field | Type | Description | -| --------- | ----------------- | ----------- | -| nonce | Option<u32> | | -| stateBump | u8 | | -| idx | u32 | | diff --git a/website/idl/types/_bak_SwitchboardPermission.md b/website/idl/types/_bak_SwitchboardPermission.md deleted file mode 100644 index 4346b7e..0000000 --- a/website/idl/types/_bak_SwitchboardPermission.md +++ /dev/null @@ -1,6 +0,0 @@ -| Name | Value | Description | -| ---------------------- | ----- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| NONE | 0 | No permissions currently granted between granter and grantee. | -| PermitOracleHeartbeat | 1 | queue `authority` has permitted an Oracle Account to heartbeat on it's queue and receive update requests. Oracles _always_ need permissions to join a queue. | -| PermitOracleQueueUsage | 2 | queue `authority` has permitted an Aggregator Account to request updates from it's oracles or join an existing crank. **Note:** Not required if a queue has `unpermissionedFeedsEnabled`. | -| PermitVrfRequests | 3 | queue `authority` has permitted a VRF Account to request randomness from it's oracles. **Note:** Not required if a queue has `unpermissionedVrfEnabled`. | diff --git a/website/idl/types/_category_.json b/website/idl/types/_category_.json deleted file mode 100644 index 9997c4a..0000000 --- a/website/idl/types/_category_.json +++ /dev/null @@ -1 +0,0 @@ -{"label":"Types","position":40} \ No newline at end of file diff --git a/website/idl/types/overview.md b/website/idl/types/overview.md deleted file mode 100644 index e78465c..0000000 --- a/website/idl/types/overview.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -sidebar_position: 1 -title: Overview -slug: . ---- - -- [AccountMetaBorsh](/idl/types/AccountMetaBorsh) -- [AccountMetaZC](/idl/types/AccountMetaZC) -- [AggregatorHistoryRow](/idl/types/AggregatorHistoryRow) -- [AggregatorRound](/idl/types/AggregatorRound) -- [BorshDecimal](/idl/types/BorshDecimal) -- [BufferRelayerRound](/idl/types/BufferRelayerRound) -- [Callback](/idl/types/Callback) -- [CallbackZC](/idl/types/CallbackZC) -- [CompletedPointZC](/idl/types/CompletedPointZC) -- [CrankRow](/idl/types/CrankRow) -- [EcvrfIntermediate](/idl/types/EcvrfIntermediate) -- [EcvrfProofZC](/idl/types/EcvrfProofZC) -- [EdwardsPointZC](/idl/types/EdwardsPointZC) -- [Error](/idl/types/Error) -- [FieldElementZC](/idl/types/FieldElementZC) -- [Hash](/idl/types/Hash) -- [Lanes](/idl/types/Lanes) -- [Lanes](/idl/types/Lanes) -- [OracleMetrics](/idl/types/OracleMetrics) -- [OracleResponseType](/idl/types/OracleResponseType) -- [ProjectivePointZC](/idl/types/ProjectivePointZC) -- [Scalar](/idl/types/Scalar) -- [Shuffle](/idl/types/Shuffle) -- [Shuffle](/idl/types/Shuffle) -- [SwitchboardDecimal](/idl/types/SwitchboardDecimal) -- [SwitchboardPermission](/idl/types/SwitchboardPermission) -- [VrfBuilder](/idl/types/VrfBuilder) -- [VrfRound](/idl/types/VrfRound) -- [VrfStatus](/idl/types/VrfStatus) diff --git a/website/package.json b/website/package.json deleted file mode 100644 index 5e9bc00..0000000 --- a/website/package.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "name": "website", - "version": "1.0.0", - "private": true, - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/switchboard-xyz/switchboard-v2", - "directory": "website" - }, - "homepage": "https://docs.switchboard.xyz", - "main": "src/pages/index.tsx", - "scripts": { - "docusaurus": "docusaurus", - "start": "docusaurus start", - "build": "echo \"For workspace anchor-vrf-parser, run 'yarn docs:build' from the project root\" && exit 0", - "build:site": "docusaurus build --out-dir public", - "swizzle": "docusaurus swizzle", - "deploy": "docusaurus build --out-dir public && docusaurus deploy --out-dir public", - "clear": "docusaurus clear", - "serve": "docusaurus serve --dir public", - "write-translations": "docusaurus write-translations", - "write-heading-ids": "docusaurus write-heading-ids", - "update:tasks": "protoc --proto_path=../libraries/protos --doc_out=api --doc_opt=markdown,_tasks.md ../libraries/protos/job_schemas.proto", - "spellcheck": "cspell --config ./cSpell.json \"**/*.md*\"", - "typecheck": "tsc", - "test": "echo \"No test script for website\" && exit 0" - }, - "dependencies": { - "@docusaurus/core": "2.0.0-beta.18", - "@docusaurus/module-type-aliases": "2.0.0-beta.18", - "@docusaurus/preset-classic": "2.0.0-beta.18", - "@docusaurus/remark-plugin-npm2yarn": "2.0.0-beta.18", - "@docusaurus/theme-common": "2.0.0-beta.18", - "@docusaurus/types": "2.0.0-beta.18", - "@emotion/react": "^11.4.1", - "@emotion/styled": "^11.3.0", - "@fontsource/roboto": "^4.5.1", - "@mdx-js/react": "^1.6.21", - "@mui/icons-material": "^5.1.1", - "@mui/material": "^5.8.3", - "@mui/system": "^5.6.2", - "@solana/web3.js": "^1.35.1", - "@svgr/webpack": "^5.5.0", - "clsx": "^1.1.1", - "file-loader": "^6.2.0", - "hast-util-is-element": "1.1.0", - "my-loaders": "file:plugins/my-loaders", - "prism-react-renderer": "^1.2.1", - "react": "^17.0.1", - "react-dom": "^17.0.1", - "react-icons": "^4.3.1", - "react-player": "^2.10.1", - "react-spring": "^9.3.2", - "rehype-katex": "5", - "remark-math": "3", - "url-loader": "^4.1.1" - }, - "devDependencies": { - "@docusaurus/module-type-aliases": "2.0.0-beta.18", - "@docusaurus/types": "2.0.0-beta.18", - "@tsconfig/docusaurus": "^1.0.4", - "@types/eslint": "^8.4.5", - "babel-plugin-import": "^1.13.3", - "cspell": "^5.15.2", - "shx": "^0.3.4", - "typescript": "^4.7" - }, - "browser": { - "fs": false, - "path": false, - "os": false, - "crypto": false - }, - "browserslist": { - "production": [ - ">0.5%", - "not dead", - "not op_mini all" - ], - "development": [ - "last 1 chrome version", - "last 1 firefox version", - "last 1 safari version" - ] - } -} diff --git a/website/plugins/my-loaders/index.js b/website/plugins/my-loaders/index.js deleted file mode 100644 index f6bd2a8..0000000 --- a/website/plugins/my-loaders/index.js +++ /dev/null @@ -1,15 +0,0 @@ -module.exports = function (context, options) { - return { - name: "loaders", - configureWebpack(config, isServer) { - return { - module: { - rules: [{ test: /\.txt$/, use: "file-loader" }], - }, - resolve: { - fallback: { crypto: false, path: false, fs: false }, - }, - }; - }, - }; -}; diff --git a/website/sidebars.js b/website/sidebars.js deleted file mode 100644 index 9df9b83..0000000 --- a/website/sidebars.js +++ /dev/null @@ -1,26 +0,0 @@ -/** - * Creating a sidebar enables you to: - - create an ordered group of docs - - render a sidebar for each doc of that group - - provide next/previous navigation - - The sidebars can be generated from the filesystem, or explicitly defined here. - - Create as many sidebars as you want. - */ - -module.exports = { - // By default, Docusaurus generates a sidebar from the docs folder structure - tutorialSidebar: [{ type: "autogenerated", dirName: "." }], - - // But you can create a sidebar manually - /* - tutorialSidebar: [ - { - type: 'category', - label: 'Tutorial', - items: ['hello'], - }, - ], - */ -}; diff --git a/website/sidebarsAPI.js b/website/sidebarsAPI.js deleted file mode 100644 index b56452a..0000000 --- a/website/sidebarsAPI.js +++ /dev/null @@ -1,68 +0,0 @@ -module.exports = { - tutorialSidebar: [ - { - type: "doc", - label: "Overview", - id: "api", - }, - { - type: "doc", - label: "Switchboard Tasks", - id: "switchboard-tasks", - }, - { - type: "category", - label: "Command Line", - items: [ - { - type: "autogenerated", - dirName: "cli", - }, - ], - }, - { - type: "category", - label: "Solana", - collapsible: false, - items: [ - { - type: "link", - label: "Typescript", - href: "https://docs.switchboard.xyz/api/ts/", - }, - { - type: "link", - label: "Typescript Lite", - href: "https://docs.switchboard.xyz/api/ts-lite/", - }, - { - type: "link", - label: "Sbv2 Utils", - href: "https://docs.switchboard.xyz/api/sbv2-utils/", - }, - { - type: "link", - label: "Python", - href: "https://docs.switchboard.xyz/api/py/", - }, - { - type: "link", - label: "Rust", - href: "https://docs.rs/switchboard-v2/latest/switchboard_v2/", - }, - ], - }, - { - type: "category", - label: "Aptos", - collapsible: false, - items: [ - { - type: "link", - label: "Typescript", - href: "https://docs.switchboard.xyz/api/aptos/", - }, - ], - }, - ], -}; diff --git a/website/sidebarsIDL.js b/website/sidebarsIDL.js deleted file mode 100644 index 9df9b83..0000000 --- a/website/sidebarsIDL.js +++ /dev/null @@ -1,26 +0,0 @@ -/** - * Creating a sidebar enables you to: - - create an ordered group of docs - - render a sidebar for each doc of that group - - provide next/previous navigation - - The sidebars can be generated from the filesystem, or explicitly defined here. - - Create as many sidebars as you want. - */ - -module.exports = { - // By default, Docusaurus generates a sidebar from the docs folder structure - tutorialSidebar: [{ type: "autogenerated", dirName: "." }], - - // But you can create a sidebar manually - /* - tutorialSidebar: [ - { - type: 'category', - label: 'Tutorial', - items: ['hello'], - }, - ], - */ -}; diff --git a/website/src/components/CardSet.tsx b/website/src/components/CardSet.tsx deleted file mode 100644 index 250198e..0000000 --- a/website/src/components/CardSet.tsx +++ /dev/null @@ -1,172 +0,0 @@ -import Link from "@docusaurus/Link"; -import { useColorMode } from "@docusaurus/theme-common"; -import useBaseUrl from "@docusaurus/useBaseUrl"; -import { Card, CardContent, Divider, Grid, Typography } from "@mui/material"; -import { useTheme } from "@mui/material/styles"; -import useMediaQuery from "@mui/material/useMediaQuery"; -import { styled, ThemeProvider } from "@mui/system"; -import { default as React } from "react"; -import theme from "../components/theme"; -import { FeatureItem } from "./FeatureList"; - -export type CardSetFeatureItem = { - title: string; - image: string; - description: string; - linkTo: string; -}; - -const StyledCard = styled(Card)<{ dark: number }>(({ theme, dark }) => ({ - display: "flex", - flexDirection: "column", - justifyContent: "flex-start", - alignItems: "stretch", - textAlign: "left", - backgroundColor: dark ? theme.palette.footer.background : theme.palette.white, - position: "relative", - borderRadius: "13.2px", - boxShadow: `0 6px 7px 5px rgba(${dark ? "107 107 107" : "86, 86, 86"}, 0.03)`, - [theme.breakpoints.down(300)]: { - paddingLeft: "", - }, -})); - -const StyledTitle = styled(Typography)(({ theme }) => ({ - whiteSpace: "nowrap", - fontSize: 22, - marginLeft: "22px", - fontWeight: 600, - letterSpacing: "0.16px", - - [theme.breakpoints.down(300)]: { - marginLeft: "10px", - }, -})); - -const StyledDescription = styled(Typography)(({ theme }) => ({ - fontSize: 18.5, - margin: "20px 0px 0px", - height: "110px", - lineHeight: 1.29, - letterSpacing: "0.44px", - [theme.breakpoints.down(400)]: { - fontSize: "17px", - }, - [theme.breakpoints.down(300)]: { - fontSize: 13, - }, -})); - -const StyledCardContent = styled(CardContent)(({ theme }) => ({ - padding: "21px", - [theme.breakpoints.down(300)]: { - paddingLeft: "10px", - paddingRight: "10px", - }, -})); - -export function CardSet(props: { items: FeatureItem[] }): JSX.Element { - const isMobile = useMediaQuery(theme.breakpoints.down("sm"), { - defaultMatches: true, - }); - const { colorMode } = useColorMode(); - - return ( - <> - - - {props.items.map((props, idx) => ( - - - - ))} - - - - ); -} - -export function FeatureCard({ - title, - image, - description, - linkTo, -}: CardSetFeatureItem) { - const { colorMode } = useColorMode(); - const theme = useTheme(); - - return ( - - -
-
- feature card -
- - {title} - -
- - {description} - -
- - - View More - -
-
-
- ); -} diff --git a/website/src/components/FeatureCard.tsx b/website/src/components/FeatureCard.tsx deleted file mode 100644 index 81897b9..0000000 --- a/website/src/components/FeatureCard.tsx +++ /dev/null @@ -1,137 +0,0 @@ -import Link from "@docusaurus/Link"; -import { useColorMode } from "@docusaurus/theme-common"; -import useBaseUrl from "@docusaurus/useBaseUrl"; -import { Card, CardContent, Divider, Typography } from "@mui/material"; -import { useTheme } from "@mui/material/styles"; -import { styled } from "@mui/system"; -import React from "react"; -import { FeatureItem } from "./FeatureList"; - -const StyledCard = styled(Card)<{ dark: number }>(({ theme, dark }) => ({ - display: "flex", - flexDirection: "column", - justifyContent: "flex-start", - alignItems: "stretch", - textAlign: "left", - backgroundColor: dark ? theme.palette.footer.background : theme.palette.white, - position: "relative", - borderRadius: "13.2px", - boxShadow: `0 6px 7px 5px rgba(${dark ? "107 107 107" : "86, 86, 86"}, 0.03)`, - [theme.breakpoints.down(300)]: { - paddingLeft: "", - }, -})); - -const StyledTitle = styled(Typography)(({ theme }) => ({ - whiteSpace: "nowrap", - fontSize: 22, - marginLeft: "22px", - fontWeight: 600, - letterSpacing: "0.16px", - - [theme.breakpoints.down(300)]: { - marginLeft: "10px", - }, -})); - -const StyledDescription = styled(Typography)(({ theme }) => ({ - fontSize: 18.5, - margin: "20px 0px 0px", - height: "110px", - lineHeight: 1.29, - letterSpacing: "0.44px", - [theme.breakpoints.down(400)]: { - fontSize: "17px", - }, - [theme.breakpoints.down(300)]: { - fontSize: 13, - }, -})); - -const StyledCardContent = styled(CardContent)(({ theme }) => ({ - padding: "21px", - [theme.breakpoints.down(300)]: { - paddingLeft: "10px", - paddingRight: "10px", - }, -})); - -export function FeatureCard({ - title, - image, - description, - linkTo, -}: FeatureItem) { - const { colorMode } = useColorMode(); - const theme = useTheme(); - - return ( - - -
-
- feature card -
- - {title} - -
- - {description} - -
- - - View More - -
-
-
- ); -} diff --git a/website/src/components/FeatureList.tsx b/website/src/components/FeatureList.tsx deleted file mode 100644 index f1c2df6..0000000 --- a/website/src/components/FeatureList.tsx +++ /dev/null @@ -1,50 +0,0 @@ -export type FeatureItem = { - title: string; - image: string; - description: string; - linkTo: string; -}; - -export const FeatureList: FeatureItem[] = [ - { - title: "Introduction", - image: "/img/icons/info.png", - description: - "Learn about Switchboard and how it enables the community to dictate what data lives on-chain.", - linkTo: "/introduction", - }, - { - title: "Architecture", - image: "/img/icons/arc.png", - description: - "Learn about Switchboard Oracle Queues and how they allocate oracle resources on-chain.", - - linkTo: "/queue", - }, - { - title: "Oracle", - image: "/img/icons/oracle.png", - description: - "Learn how to contribute to the network and process data feed updates.", - linkTo: "/oracle", - }, - { - title: "Data Feeds", - image: "/img/icons/sol.png", - description: "Learn how Switchboard data feeds work.", - - linkTo: "/feed", - }, - { - title: "Develop", - image: "/img/icons/developers.png", - description: "Learn how to develop with Switchboard and use the APIs.", - linkTo: "/developers", - }, - { - title: "Publish", - image: "/img/icons/publish.svg", - description: "Publish your own data feeds on-chain through Switchboard.", - linkTo: "https://publish.switchboard.xyz/", - }, -]; diff --git a/website/src/components/HomepageFeatures.tsx b/website/src/components/HomepageFeatures.tsx deleted file mode 100644 index 471c015..0000000 --- a/website/src/components/HomepageFeatures.tsx +++ /dev/null @@ -1,78 +0,0 @@ -import { useColorMode } from "@docusaurus/theme-common"; -import { Grid, Typography } from "@mui/material"; -import { useTheme } from "@mui/material/styles"; -import useMediaQuery from "@mui/material/useMediaQuery"; -import { styled } from "@mui/system"; -import React from "react"; -import { FeatureCard } from "./FeatureCard"; -import { FeatureList } from "./FeatureList"; - -const StyledHeader = styled("div")<{ dark: number }>(({ theme, dark }) => ({ - backgroundColor: dark ? theme.palette.footer.background : theme.palette.white, - width: "100vw", - height: "200px", - display: "flex", - flexDirection: "column", - justifyContent: "center", - margin: "-50px 0px 55px", - paddingLeft: "40px", -})); - -const StyledHeaderTitle = styled(Typography)<{ dark: number }>( - ({ dark, theme }) => ({ - marginBottom: "12px", - fontWeight: 600, - fontFamily: "Poppins", - color: dark ? theme.palette.white : "#171725", - fontSize: 25, - letterSpacing: "0.12px", - }) -); - - -export function HomepageFeatures(): JSX.Element { - const theme = useTheme(); - const isMobile = useMediaQuery(theme.breakpoints.down("sm"), { - defaultMatches: true, - }); - const { colorMode } = useColorMode(); - - return ( - <> - -
- - Welcome to Switchboard Documentation - - - Switchboard provides a permission-less data layer to bridge the gap - between the internet and web3. Click on a card below to learn how - you can build with us. - -
-
- - {FeatureList.map((props, idx) => ( - - - - ))} - - - ); -} diff --git a/website/src/components/MarkdownImage.tsx b/website/src/components/MarkdownImage.tsx deleted file mode 100644 index e4d2463..0000000 --- a/website/src/components/MarkdownImage.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import { useColorMode } from "@docusaurus/theme-common"; -import useBaseUrl from "@docusaurus/useBaseUrl"; -import { Box } from "@mui/material"; -import React from "react"; - -interface MarkdownImageProps { - img: string; - lightBg?: string; - darkBg?: string; - sx?: any; -} - -const MarkdownImage = (props: MarkdownImageProps) => { - const { colorMode } = useColorMode(); - - let backgroundColor = "inherit"; - if (props.lightBg && colorMode !== "dark") { - backgroundColor = props.lightBg; - } - if (props.darkBg && colorMode === "dark") { - backgroundColor = props.darkBg; - } - - let sx: any = {}; - if (props.sx) { - sx = { - backgroundColor, - m: "auto", - display: "flex", - ...sx, - ...props.sx, - }; - } - - return ; -}; - -export default MarkdownImage; diff --git a/website/src/components/ProgramConfig.tsx b/website/src/components/ProgramConfig.tsx deleted file mode 100644 index a3e2d1c..0000000 --- a/website/src/components/ProgramConfig.tsx +++ /dev/null @@ -1,191 +0,0 @@ -import { CircularProgress, Typography } from "@mui/material"; -import * as anchor from "@project-serum/anchor"; -import { clusterApiUrl, Connection, Keypair, PublicKey } from "@solana/web3.js"; -import { - CrankAccount, - OracleQueueAccount, -} from "@switchboard-xyz/switchboard-v2"; -import React, { useEffect, useState } from "react"; - -const DEFAULT_KEYPAIR = Keypair.fromSeed(new Uint8Array(32).fill(1)); -const DEFAULT_PUBKEY = new PublicKey("11111111111111111111111111111111"); - -const MAINNET_PID = new PublicKey( - "SW1TCH7qEPTdLsDHRgPuMQjbQxKdH2aBStViMFnt64f" -); -const MAINNET_PERMISSIONLESS_QUEUE = new PublicKey( - "5JYwqvKkqp35w8Nq3ba4z1WYUeJQ1rB36V8XvaGp6zn1" -); -const MAINNET_PERMISSIONLESS_CRANK = new PublicKey( - "BKtF8yyQsj3Ft6jb2nkfpEKzARZVdGgdEPs6mFmZNmbA" -); -const MAINNET_PERMISSIONED_QUEUE = new PublicKey( - "3HBb2DQqDfuMdzWxNk1Eo9RTMkFYmuEAd32RiLKn9pAn" -); -const MAINNET_PERMISSIONED_CRANK = new PublicKey( - "GdNVLWzcE6h9SPuSbmu69YzxAj8enim9t6mjzuqTXgLd" -); - -const DEVNET_PID = new PublicKey( - "2TfB33aLaneQb5TNVwyDz3jSZXS6jdW2ARw1Dgf84XCG" -); -const DEVNET_PERMISSIONLESS_QUEUE = new PublicKey( - "F8ce7MsckeZAbAGmxjJNetxYXQa9mKr9nnrC3qKubyYy" -); -const DEVNET_PERMISSIONLESS_CRANK = new PublicKey( - "GN9jjCy2THzZxhYqZETmPM3my8vg4R5JyNkgULddUMa5" -); -const DEVNET_PERMISSIONED_QUEUE = new PublicKey( - "GhYg3R1V6DmJbwuc57qZeoYG6gUuvCotUF1zU3WCj98U" -); -const DEVNET_PERMISSIONED_CRANK = new PublicKey( - "GdNVLWzcE6h9SPuSbmu69YzxAj8enim9t6mjzuqTXgLd" -); - -interface QueueData { - queueKey: PublicKey; - crankKey: PublicKey; - queueData: any; - crankData: any; -} - -interface SwitchboardData { - pid: PublicKey; - permissionQueue: QueueData; - permissionlessQueue: QueueData; -} - -interface AnchorData { - mainnet: SwitchboardData; - devnet?: SwitchboardData; -} - -async function getAnchorData(): Promise { - // mainnet program - const provider = new anchor.AnchorProvider( - new Connection(clusterApiUrl("mainnet-beta")), - new anchor.Wallet(DEFAULT_KEYPAIR), - {} - ); - const anchorIdl = await anchor.Program.fetchIdl(MAINNET_PID, provider); - console.log(anchorIdl); - if (!anchorIdl) throw new Error(`failed to read idl for ${MAINNET_PID}`); - const mainnetProgram = new anchor.Program(anchorIdl, MAINNET_PID, provider); - - const permissionedQueue = new OracleQueueAccount({ - program: mainnetProgram, - publicKey: MAINNET_PERMISSIONED_QUEUE, - }); - const permissionedCrank = new CrankAccount({ - program: mainnetProgram, - publicKey: MAINNET_PERMISSIONED_CRANK, - }); - - const permissionlessQueue = new OracleQueueAccount({ - program: mainnetProgram, - publicKey: MAINNET_PERMISSIONLESS_QUEUE, - }); - const permissionlessCrank = new CrankAccount({ - program: mainnetProgram, - publicKey: MAINNET_PERMISSIONLESS_CRANK, - }); - - // get mainnet data - const mainnet = { - pid: MAINNET_PID, - permissionQueue: { - queueKey: MAINNET_PERMISSIONED_QUEUE, - crankKey: MAINNET_PERMISSIONED_CRANK, - queueData: await permissionedQueue.loadData(), - crankData: await permissionedCrank.loadData(), - }, - permissionlessQueue: { - queueKey: MAINNET_PERMISSIONLESS_QUEUE, - crankKey: MAINNET_PERMISSIONLESS_CRANK, - queueData: await permissionlessQueue.loadData(), - crankData: await permissionlessCrank.loadData(), - }, - }; - - // const devnetProgram = new anchor.Program( - // anchorIdl, - // MAINNET_PID, - // new anchor.AnchorProvider( - // new Connection(clusterApiUrl("devnet")), - // new anchor.Wallet(DEFAULT_KEYPAIR), - // {} - // ) - // ); - - // const devnetPermissionedQueue = new OracleQueueAccount({ - // program: devnetProgram, - // publicKey: DEVNET_PERMISSIONED_QUEUE, - // }); - // const devnetPermissionedCrank = new CrankAccount({ - // program: devnetProgram, - // publicKey: DEVNET_PERMISSIONED_CRANK, - // }); - - // const devnetPermissionlessQueue = new OracleQueueAccount({ - // program: devnetProgram, - // publicKey: DEVNET_PERMISSIONLESS_QUEUE, - // }); - // const devnetPermissionlessCrank = new CrankAccount({ - // program: devnetProgram, - // publicKey: DEVNET_PERMISSIONLESS_CRANK, - // }); - - // // get mainnet data - // const devnet = { - // pid: DEVNET_PID, - // permissionQueue: { - // queueKey: DEVNET_PERMISSIONED_QUEUE, - // crankKey: DEVNET_PERMISSIONED_CRANK, - // queueData: await permissionedQueue.loadData(), - // crankData: await permissionedCrank.loadData(), - // }, - // permissionlessQueue: { - // queueKey: DEVNET_PERMISSIONLESS_QUEUE, - // crankKey: DEVNET_PERMISSIONLESS_CRANK, - // queueData: await permissionlessQueue.loadData(), - // crankData: await permissionlessCrank.loadData(), - // }, - // }; - - return { - mainnet, - }; -} - -interface ProgramConfigProps { - cluster?: "mainnet-beta" | "devnet"; -} - -const LABELS = [""]; - -const ProgramConfig = (props: ProgramConfigProps) => { - const [anchorData, setAnchorData] = useState(); - const [loading, setLoading] = useState(true); - - useEffect(() => { - getAnchorData().then((anchorData) => { - setAnchorData(anchorData); - setLoading(false); - }); - }, []); - - return ( - <> - TEST - {loading === true ? ( - - ) : ( - - {JSON.stringify(anchorData.mainnet, undefined, 2)} - - )} - - ); -}; - -export default ProgramConfig; diff --git a/website/src/components/PublicKeyButton.tsx b/website/src/components/PublicKeyButton.tsx deleted file mode 100644 index b9211dd..0000000 --- a/website/src/components/PublicKeyButton.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import ContentCopyIcon from "@mui/icons-material/ContentCopy"; -import { Button, Tooltip, Typography } from "@mui/material"; -import React from "react"; - -interface PublicKeyButtonProps { - publicKey: string; - sx?: any; -} - -const PublicKeyButton = (props: PublicKeyButtonProps) => { - let sx: any = { - textTransform: "none", - color: "#4c6fff", - fontWeight: 800, - margin: 0, - }; - if (props.sx) { - sx = { - ...sx, - ...props.sx, - }; - } - - const copyToClipboard = () => { - const el = document.createElement("textarea"); - el.value = props.publicKey; - document.body.appendChild(el); - el.select(); - document.execCommand("copy"); - document.body.removeChild(el); - }; - - return ( - - - - ); -}; - -export default PublicKeyButton; diff --git a/website/src/components/icons/AlephIcon.tsx b/website/src/components/icons/AlephIcon.tsx deleted file mode 100644 index e097e08..0000000 --- a/website/src/components/icons/AlephIcon.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import { SvgIcon } from "@mui/material"; -import * as React from "react"; - -export function AlephIcon(props) { - return ( - - - - - - ); -} diff --git a/website/src/components/icons/JupiterIcon.tsx b/website/src/components/icons/JupiterIcon.tsx deleted file mode 100644 index 0f9ed09..0000000 --- a/website/src/components/icons/JupiterIcon.tsx +++ /dev/null @@ -1,119 +0,0 @@ -import * as React from "react"; -import { SvgIcon } from "@mui/material"; - -export function JupiterIcon(props) { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ); -} diff --git a/website/src/components/icons/MangoIcon.tsx b/website/src/components/icons/MangoIcon.tsx deleted file mode 100644 index 671fc9f..0000000 --- a/website/src/components/icons/MangoIcon.tsx +++ /dev/null @@ -1,172 +0,0 @@ -import * as React from "react"; -import { SvgIcon } from "@mui/material"; - -export function MangoIcon(props) { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ); -} diff --git a/website/src/components/icons/OrcaIcon.tsx b/website/src/components/icons/OrcaIcon.tsx deleted file mode 100644 index 1ccba3a..0000000 --- a/website/src/components/icons/OrcaIcon.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import { SvgIcon } from "@mui/material"; -import * as React from "react"; - -export function OrcaIcon(props) { - return ( - - - - - - - - - - - - ); -} diff --git a/website/src/components/icons/SerumIcon.tsx b/website/src/components/icons/SerumIcon.tsx deleted file mode 100644 index b3aca61..0000000 --- a/website/src/components/icons/SerumIcon.tsx +++ /dev/null @@ -1,62 +0,0 @@ -import * as React from "react"; -import { SvgIcon } from "@mui/material"; - -export function SerumIcon(props) { - return ( - - - - - - - - - - - - - - - - - - ); -} diff --git a/website/src/components/theme/index.ts b/website/src/components/theme/index.ts deleted file mode 100644 index 3affd97..0000000 --- a/website/src/components/theme/index.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { MuiButton, MuiIconButton } from "./src/muiButton"; -import { MuiTypography } from "./src/muiTypography"; -import Palette from "./src/palette"; -import { theme } from "./src/theme"; - -// Apply the overrides -theme.components = { - MuiTypography: { styleOverrides: MuiTypography }, - MuiButton: { styleOverrides: MuiButton }, - MuiIconButton: { styleOverrides: MuiIconButton }, -}; - -export { theme, Palette }; -export default theme; diff --git a/website/src/components/theme/src/muiButton.ts b/website/src/components/theme/src/muiButton.ts deleted file mode 100644 index 4de267f..0000000 --- a/website/src/components/theme/src/muiButton.ts +++ /dev/null @@ -1,80 +0,0 @@ -import { ButtonClasses, IconButtonClasses } from "@mui/material"; -import { OverridesStyleRules } from "@mui/material/styles/overrides"; -import { theme } from "./theme"; - -export const MuiIconButton: Partial< - OverridesStyleRules -> = { - root: { - backgroundColor: "rgba(0, 0, 0, 0)", - "&:hover": { - backgroundColor: "rgba(0, 0, 0, 0.2)", - }, - }, -}; - -export const MuiButton: Partial> = { - root: { - backgroundColor: theme.palette.white, - height: 52, - borderRadius: 26, - fontFamily: "Source Sans Pro", - fontSize: 16, - fontWeight: 600, - fontStretch: "normal", - fontStyle: "normal", - whiteSpace: "nowrap", - lineHeight: "normal", - letterSpacing: 0.51, - color: theme.palette.black, - "&.Mui-disabled": { - color: theme.palette.white[1], - }, - }, - contained: { - color: theme.palette.white, - textTransform: "none", - padding: "0px 72px", - backgroundColor: theme.palette.blue, - boxShadow: `0 11px 15px 0 rgba(164, 164, 164, 0.21)`, - [theme.breakpoints.down("sm")]: { - padding: "0px 56px", - }, - "&:hover": { - boxShadow: `0 11px 15px 0 rgba(164, 164, 164, 0.21)`, - backgroundColor: theme.palette.footer.background, - }, - "@media (hover: none)": { - "&:hover": { - boxShadow: `0 11px 15px 0 rgba(164, 164, 164, 0.21) !important`, - backgroundColor: `${theme.palette.footer.background} !important`, - }, - }, - }, - containedSecondary: { - color: theme.palette.blue, - backgroundColor: theme.palette.white, - "&:hover": { - color: theme.palette.white, - backgroundColor: theme.palette.footer.background, - }, - "@media (hover: none)": { - "&:hover": { - color: `${theme.palette.white} !important`, - backgroundColor: `${theme.palette.footer.background} !important`, - }, - }, - }, - text: { - backgroundColor: theme.palette.transparent, - color: theme.palette.blue, - borderRadius: 12, - "&:hover": { - backgroundColor: theme.palette.transparent, - color: theme.palette.cyan, - }, - "& .MuiTouchRipple-root span": { - backgroundColor: "rgba(0, 0, 0, 0.08)!important", - }, - }, -}; diff --git a/website/src/components/theme/src/muiTypography.tsx b/website/src/components/theme/src/muiTypography.tsx deleted file mode 100644 index d67e5ae..0000000 --- a/website/src/components/theme/src/muiTypography.tsx +++ /dev/null @@ -1,107 +0,0 @@ -import { TypographyClasses } from "@mui/material"; -import { OverridesStyleRules } from "@mui/material/styles/overrides"; -import { theme } from "./theme"; - -export const MuiTypography: Partial< - OverridesStyleRules -> = { - root: { - fontFamily: "Source Sans Pro", - fontSize: 16, - fontWeight: "normal", - fontStretch: "normal", - fontStyle: "normal", - lineHeight: "normal", - letterSpacing: "normal", - color: theme.palette.pageText.title, - marginRight: 12, - }, - - h1: { - fontFamily: "Source Sans Pro", - fontSize: 56, - fontWeight: 500, - fontStretch: "normal", - fontStyle: "normal", - lineHeight: 1.21, - letterSpacing: 0.08, - color: theme.palette.pageText.title, - [theme.breakpoints.down("sm")]: { - fontSize: 42, - lineHeight: 1.28, - letterSpacing: -2.23, - }, - }, - - h2: { - fontFamily: "Source Sans Pro", - fontSize: 32, - fontWeight: 600, - fontStretch: "normal", - fontStyle: "normal", - lineHeight: 1.03, - letterSpacing: 2.91, - color: theme.palette.pageText.title, - }, - - h3: { - fontFamily: "Source Sans Pro", - fontSize: 22, - fontWeight: 600, - fontStretch: "normal", - fontStyle: "normal", - lineHeight: 1.5, - letterSpacing: 2, - color: theme.palette.pageText.title, - [theme.breakpoints.down("sm")]: { - fontSize: 15.4, - letterSpacing: "1.4px", - }, - }, - - subtitle1: { - fontFamily: "Source Sans Pro", - fontSize: 18, - fontWeight: 600, - fontStretch: "normal", - fontStyle: "normal", - lineHeight: 1.83, - letterSpacing: 1.64, - color: theme.palette.blue, - }, - - subtitle2: {}, - - body1: { - fontFamily: "Source Sans Pro", - fontSize: 20, - fontWeight: "normal", - fontStretch: "normal", - fontStyle: "normal", - lineHeight: 1.6, - letterSpacing: 0.49, - color: theme.palette.pageText.body, - [theme.breakpoints.down("sm")]: { - fontSize: 17, - lineHeight: 1.5, - letterSpacing: 0.7, - }, - }, - - body2: { - fontFamily: "Source Sans Pro", - fontSize: 17, - fontWeight: "normal", - fontStretch: "normal", - fontStyle: "normal", - lineHeight: 1.53, - letterSpacing: 0.5, - color: theme.palette.pageText.body, - }, - - button: {}, - - gutterBottom: { - marginBottom: "8px", - }, -}; diff --git a/website/src/components/theme/src/palette.ts b/website/src/components/theme/src/palette.ts deleted file mode 100644 index e668b63..0000000 --- a/website/src/components/theme/src/palette.ts +++ /dev/null @@ -1,55 +0,0 @@ -/** - * File for app colors - */ - -const colors = { - black: "#000000", - blue: "#4c6fff", - white: "#ffffff", - indigo: "#635bff", - pink: "#D372FC", - yellow: "#fab007", - orange: "#ff7602", - cyan: "#12bcf5", - transparent: "rgba(0,0,0,0)", - red: "#fc5a5a", - lightGray: "#f3f4f7", -}; - -const Palette = { - black: colors.black, - blue: colors.blue, - white: colors.white, - indigo: colors.indigo, - yellow: colors.yellow, - orange: colors.orange, - cyan: colors.cyan, - pink: colors.pink, - red: colors.red, - lightGray: colors.lightGray, - transparent: colors.transparent, - footer: { - background: "#0a2540", - text: "#8998AA", - }, - pageText: { - title: "#0a2540", - body: "#425466", - bodySecondary: "#6B7C93", - highlight: colors.blue, - }, - pageBackground: { - primary: colors.white, - secondary: "#f7f9fc", - }, - navbar: { - marketplace: "#061024", - }, - background: {}, - primary: {}, -}; -// examples of applying some initial colors -Palette.background = { default: Palette.white }; -Palette.primary = { main: Palette.black }; - -export default Palette; diff --git a/website/src/components/theme/src/theme.ts b/website/src/components/theme/src/theme.ts deleted file mode 100644 index 8dfcf15..0000000 --- a/website/src/components/theme/src/theme.ts +++ /dev/null @@ -1,25 +0,0 @@ -// Set MUI Theme -import { createTheme } from "@mui/material/styles"; -import Palette from "./palette"; - -// create theme and apply defaults -export const theme = createTheme({ - typography: { - // apply fonts here - fontFamily: ["Source Sans Pro", "Poppins"].join(","), - fontPrimary: "Source Sans Pro", - }, - components: { - MuiTextField: { - defaultProps: { - autoComplete: "off", - }, - }, - MuiFilledInput: { - defaultProps: { - autoComplete: "off", - }, - }, - }, - palette: Palette, -}); diff --git a/website/src/components/theme/types/mui.d.ts b/website/src/components/theme/types/mui.d.ts deleted file mode 100644 index 8a74597..0000000 --- a/website/src/components/theme/types/mui.d.ts +++ /dev/null @@ -1,51 +0,0 @@ -import "@mui/material/styles"; - -declare module "@mui/material/styles/createPalette" { - interface Palette { - white: string; - black: string; - indigo: string; - yellow: string; - orange: string; - blue: string; - cyan: string; - pink: string; - red: string; - lightGray: string; - transparent: string; - - pageText: { - title: string; - body: string; - bodySecondary: string; - highlight: string; - }; - - pageBackground: { - primary: string; - secondary: string; - }; - - footer: { - background: string; - text: string; - }; - navbar: { - marketplace: string; - }; - } -} - -declare module "@mui/material/styles/createTypography" { - interface TypographyOptions { - color?: string; - fontPrimary?: string; - fontSecondary?: string; - } -} - -declare module "@mui/material/styles/createTheme" { - interface ThemeOptions { - background?: string; - } -} diff --git a/website/src/css/custom.css b/website/src/css/custom.css deleted file mode 100644 index 73e9d4e..0000000 --- a/website/src/css/custom.css +++ /dev/null @@ -1,185 +0,0 @@ -@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;500;600&display=swap"); -@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap"); -/** - * Any CSS included here will be global. The classic template - * bundles Infima by default. Infima is a CSS framework designed to - * work well for content-centric websites. - */ - -/* You can override the default Infima variables here. */ -:root { - --ifm-color-primary: #4c6fff; - --ifm-code-font-size: 95%; - --ifm-font-family-base: "Source Sans Pro"; - --ifm-link-hover-color: #0a2540; -} - -html[data-theme="dark"] { - --ifm-background-color: #1f354b; - --ifm-color-emphasis-100: #182436; - --ifm-link-hover-color: #fff; -} - -.alert--info { - --ifm-alert-background-color: inherit; -} - -/* In dark mode, set background opacity of every other row */ -html[data-theme="dark"] .docs-doc-page tr:even { - background-color: rgba(31, 53, 75, 0.75); -} - -/* Make last column in table full width */ -td:last-child { - width: 100%; -} - -/* .table_no_border table { - margin-left: 0; - padding-left: 0; - padding-bottom: 0; - margin-bottom: 0; -} */ - -.table_no_border td, -.table_no_border tr { - border: none; - border-collapse: collapse; - padding: 0.5em 2em; -} - -.centeredText { - text-align: center; -} - -html[data-theme="dark"] a { - font-weight: 800; -} - -.docusaurus-highlight-code-line { - background-color: rgba(0, 0, 0, 0.1); - display: block; - margin: 0 calc(-1 * var(--ifm-pre-padding)); - padding: 0 var(--ifm-pre-padding); -} - -html[data-theme="dark"] .docusaurus-highlight-code-line { - background-color: rgba(0, 0, 0, 0.3); -} - -html[data-theme="dark"] .navbar { - background-color: #0a2540; -} -.footer--dark { - background-color: #0a2540; - width: 100%; - display: flex; - padding-left: 40px; - margin-top: auto; -} - -.footer__link-item, -.footer__title { - color: #8998aa; -} - -.footer > .container { - max-width: 1024px; -} - -@media (max-width: 996px) { - .row .col.col.col { - --ifm-col-width: 180px; - } -} - -.col.footer__col { - max-width: 300px; -} - -.footer__link-item:hover { - color: white; -} - -.clean-btn { - color: #6b7c93; - margin-right: 15px; -} - -.menu__link--active { - font-weight: 600; -} - -/* a:hover, -a:visited, -a:link, -a:active { - text-decoration: none; -} - -.theme-doc-markdown a:hover { - text-decoration: underline; -} -.theme-doc-markdown a:visited { - text-decoration: underline; -} -.theme-doc-markdown a:link { - text-decoration: underline; -} -.theme-doc-markdown a:active { - text-decoration: underline; -} */ - -.navbar { - height: 80px; - width: 100vw; - display: flex; - padding-left: 40px; -} - -html[data-theme="dark"] .navbar { - border-bottom: solid 1px #8998aa; -} - -.navbar__inner { - max-width: 1024px; - margin: auto; -} - -.navbar__logo { - margin-right: 20px; - height: 44px; - width: 44px; -} - -.navbar__link--active { - font-weight: 700; -} - -.devicons { - color: #4c6fff; -} - -.nowrap { - white-space: nowrap; -} - -html[data-theme="dark"] .devicons { - color: #4c6fff; -} - -.instruction-icon { - color: #ffa500; -} - -html[data-theme="dark"] .instruction-icon { - color: #ffcb4c; -} - -a.link__nocolor, -a.link__nocolor:hover, -a.link__nocolorvisited, -a.link__nocolor:link, -a.link__nocolor:active { - color: inherit; -} diff --git a/website/src/pages/index.tsx b/website/src/pages/index.tsx deleted file mode 100644 index 54658dc..0000000 --- a/website/src/pages/index.tsx +++ /dev/null @@ -1,50 +0,0 @@ -import { useColorMode } from "@docusaurus/theme-common"; -import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; -import { Box, CssBaseline } from "@mui/material"; -import { styled, ThemeProvider } from "@mui/system"; -import Layout from "@theme/Layout"; -import React from "react"; -/* eslint-disable import/extensions */ -import { HomepageFeatures } from "../components/HomepageFeatures"; -import theme from "../components/theme"; - -const StyledMain = styled("main")<{ dark: number }>(({ theme, dark }) => ({ - backgroundColor: dark ? "#1f354b" : theme.palette.pageBackground.secondary, - padding: "50px 32px 90px", - minHeight: "calc(100vh - 324px)", // 100vh - footer/padding - width: "100vw", - display: "flex", - flexDirection: "column", - alignItems: "center", - [theme.breakpoints.down(966)]: { - padding: "50px 32px 90px", - }, -})); - -const Main = () => { - const { colorMode } = useColorMode(); - - return ( - - - - - ); -}; - -export default function Home(): JSX.Element { - const { siteConfig } = useDocusaurusContext(); - - return ( - - - -
- - - - ); -} diff --git a/website/static/.nojekyll b/website/static/.nojekyll deleted file mode 100644 index e69de29..0000000 diff --git a/website/static/CNAME b/website/static/CNAME deleted file mode 100644 index ef8aff8..0000000 --- a/website/static/CNAME +++ /dev/null @@ -1 +0,0 @@ -docs.switchboard.xyz \ No newline at end of file diff --git a/website/static/api/aptos/.nojekyll b/website/static/api/aptos/.nojekyll deleted file mode 100644 index e2ac661..0000000 --- a/website/static/api/aptos/.nojekyll +++ /dev/null @@ -1 +0,0 @@ -TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/website/static/api/aptos/assets/highlight.css b/website/static/api/aptos/assets/highlight.css deleted file mode 100644 index 5335386..0000000 --- a/website/static/api/aptos/assets/highlight.css +++ /dev/null @@ -1,106 +0,0 @@ -:root { - --light-hl-0: #001080; - --dark-hl-0: #9CDCFE; - --light-hl-1: #000000; - --dark-hl-1: #D4D4D4; - --light-hl-2: #000000; - --dark-hl-2: #C8C8C8; - --light-hl-3: #008000; - --dark-hl-3: #6A9955; - --light-hl-4: #AF00DB; - --dark-hl-4: #C586C0; - --light-hl-5: #A31515; - --dark-hl-5: #CE9178; - --light-hl-6: #0000FF; - --dark-hl-6: #569CD6; - --light-hl-7: #0070C1; - --dark-hl-7: #4FC1FF; - --light-hl-8: #795E26; - --dark-hl-8: #DCDCAA; - --light-hl-9: #098658; - --dark-hl-9: #B5CEA8; - --light-hl-10: #000000FF; - --dark-hl-10: #D4D4D4; - --light-hl-11: #267F99; - --dark-hl-11: #4EC9B0; - --light-code-background: #FFFFFF; - --dark-code-background: #1E1E1E; -} - -@media (prefers-color-scheme: light) { :root { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); - --hl-2: var(--light-hl-2); - --hl-3: var(--light-hl-3); - --hl-4: var(--light-hl-4); - --hl-5: var(--light-hl-5); - --hl-6: var(--light-hl-6); - --hl-7: var(--light-hl-7); - --hl-8: var(--light-hl-8); - --hl-9: var(--light-hl-9); - --hl-10: var(--light-hl-10); - --hl-11: var(--light-hl-11); - --code-background: var(--light-code-background); -} } - -@media (prefers-color-scheme: dark) { :root { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); - --hl-2: var(--dark-hl-2); - --hl-3: var(--dark-hl-3); - --hl-4: var(--dark-hl-4); - --hl-5: var(--dark-hl-5); - --hl-6: var(--dark-hl-6); - --hl-7: var(--dark-hl-7); - --hl-8: var(--dark-hl-8); - --hl-9: var(--dark-hl-9); - --hl-10: var(--dark-hl-10); - --hl-11: var(--dark-hl-11); - --code-background: var(--dark-code-background); -} } - -:root[data-theme='light'] { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); - --hl-2: var(--light-hl-2); - --hl-3: var(--light-hl-3); - --hl-4: var(--light-hl-4); - --hl-5: var(--light-hl-5); - --hl-6: var(--light-hl-6); - --hl-7: var(--light-hl-7); - --hl-8: var(--light-hl-8); - --hl-9: var(--light-hl-9); - --hl-10: var(--light-hl-10); - --hl-11: var(--light-hl-11); - --code-background: var(--light-code-background); -} - -:root[data-theme='dark'] { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); - --hl-2: var(--dark-hl-2); - --hl-3: var(--dark-hl-3); - --hl-4: var(--dark-hl-4); - --hl-5: var(--dark-hl-5); - --hl-6: var(--dark-hl-6); - --hl-7: var(--dark-hl-7); - --hl-8: var(--dark-hl-8); - --hl-9: var(--dark-hl-9); - --hl-10: var(--dark-hl-10); - --hl-11: var(--dark-hl-11); - --code-background: var(--dark-code-background); -} - -.hl-0 { color: var(--hl-0); } -.hl-1 { color: var(--hl-1); } -.hl-2 { color: var(--hl-2); } -.hl-3 { color: var(--hl-3); } -.hl-4 { color: var(--hl-4); } -.hl-5 { color: var(--hl-5); } -.hl-6 { color: var(--hl-6); } -.hl-7 { color: var(--hl-7); } -.hl-8 { color: var(--hl-8); } -.hl-9 { color: var(--hl-9); } -.hl-10 { color: var(--hl-10); } -.hl-11 { color: var(--hl-11); } -pre, code { background: var(--code-background); } diff --git a/website/static/api/aptos/assets/main.js b/website/static/api/aptos/assets/main.js deleted file mode 100644 index abd0485..0000000 --- a/website/static/api/aptos/assets/main.js +++ /dev/null @@ -1,54 +0,0 @@ -"use strict"; -"use strict";(()=>{var Qe=Object.create;var ae=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Ce=Object.getOwnPropertyNames;var Oe=Object.getPrototypeOf,Re=Object.prototype.hasOwnProperty;var _e=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Me=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Ce(e))!Re.call(t,i)&&i!==n&&ae(t,i,{get:()=>e[i],enumerable:!(r=Pe(e,i))||r.enumerable});return t};var De=(t,e,n)=>(n=t!=null?Qe(Oe(t)):{},Me(e||!t||!t.__esModule?ae(n,"default",{value:t,enumerable:!0}):n,t));var de=_e((ce,he)=>{(function(){var t=function(e){var n=new t.Builder;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),n.searchPipeline.add(t.stemmer),e.call(n,n),n.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(n){e.console&&console.warn&&console.warn(n)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var n=Object.create(null),r=Object.keys(e),i=0;i0){var h=t.utils.clone(n)||{};h.position=[a,l],h.index=s.length,s.push(new t.Token(r.slice(a,o),h))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. -`,e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(r){var i=t.Pipeline.registeredFunctions[r];if(i)n.add(i);else throw new Error("Cannot load unregistered function: "+r)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(n){t.Pipeline.warnIfFunctionNotRegistered(n),this._stack.push(n)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");r=r+1,this._stack.splice(r,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");this._stack.splice(r,0,n)},t.Pipeline.prototype.remove=function(e){var n=this._stack.indexOf(e);n!=-1&&this._stack.splice(n,1)},t.Pipeline.prototype.run=function(e){for(var n=this._stack.length,r=0;r1&&(oe&&(r=s),o!=e);)i=r-n,s=n+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ou?h+=2:a==u&&(n+=r[l+1]*i[h+1],l+=2,h+=2);return n},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),n=1,r=0;n0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}if(s.str.length==0&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),m=s.str.charAt(1),v;m in s.node.edges?v=s.node.edges[m]:(v=new t.TokenSet,s.node.edges[m]=v),s.str.length==1&&(v.final=!0),i.push({node:v,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return r},t.TokenSet.fromString=function(e){for(var n=new t.TokenSet,r=n,i=0,s=e.length;i=e;n--){var r=this.uncheckedNodes[n],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(n){var r=new t.QueryParser(e,n);r.parse()})},t.Index.prototype.query=function(e){for(var n=new t.Query(this.fields),r=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,n){var r=e[this._ref],i=Object.keys(this._fields);this._documents[r]=n||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,n;do e=this.next(),n=e.charCodeAt(0);while(n>47&&n<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var n=e.next();if(n==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(n.charCodeAt(0)==92){e.escapeCharacter();continue}if(n==":")return t.QueryLexer.lexField;if(n=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(n=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(n=="+"&&e.width()===1||n=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(n.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,n){this.lexer=new t.QueryLexer(e),this.query=n,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var n=e.peekLexeme();if(n!=null)switch(n.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+n.type;throw n.str.length>=1&&(r+=" with value '"+n.str+"'"),new t.QueryParseError(r,n.start,n.end)}},t.QueryParser.parsePresence=function(e){var n=e.consumeLexeme();if(n!=null){switch(n.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+n.str+"'";throw new t.QueryParseError(r,n.start,n.end)}var i=e.peekLexeme();if(i==null){var r="expecting term or field, found nothing";throw new t.QueryParseError(r,n.start,n.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(r,i.start,i.end)}}},t.QueryParser.parseField=function(e){var n=e.consumeLexeme();if(n!=null){if(e.query.allFields.indexOf(n.str)==-1){var r=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+n.str+"', possible fields: "+r;throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.fields=[n.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,n.start,n.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var n=e.consumeLexeme();if(n!=null){e.currentClause.term=n.str.toLowerCase(),n.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(r==null){e.nextClause();return}switch(r.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+r.type+"'";throw new t.QueryParseError(i,r.start,r.end)}}},t.QueryParser.parseEditDistance=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="edit distance must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.editDistance=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="boost must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.boost=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,n){typeof define=="function"&&define.amd?define(n):typeof ce=="object"?he.exports=n():e.lunr=n()}(this,function(){return t})})()});var le=[];function j(t,e){le.push({selector:e,constructor:t})}var Y=class{constructor(){this.createComponents(document.body)}createComponents(e){le.forEach(n=>{e.querySelectorAll(n.selector).forEach(r=>{r.dataset.hasInstance||(new n.constructor({el:r}),r.dataset.hasInstance=String(!0))})})}};var k=class{constructor(e){this.el=e.el}};var J=class{constructor(){this.listeners={}}addEventListener(e,n){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(n)}removeEventListener(e,n){if(!(e in this.listeners))return;let r=this.listeners[e];for(let i=0,s=r.length;i{let n=Date.now();return(...r)=>{n+e-Date.now()<0&&(t(...r),n=Date.now())}};var re=class extends J{constructor(){super();this.scrollTop=0;this.lastY=0;this.width=0;this.height=0;this.showToolbar=!0;this.toolbar=document.querySelector(".tsd-page-toolbar"),this.navigation=document.querySelector(".col-menu"),window.addEventListener("scroll",ne(()=>this.onScroll(),10)),window.addEventListener("resize",ne(()=>this.onResize(),10)),this.searchInput=document.querySelector("#tsd-search input"),this.searchInput&&this.searchInput.addEventListener("focus",()=>{this.hideShowToolbar()}),this.onResize(),this.onScroll()}triggerResize(){let n=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(n)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let n=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(n)}onScroll(){this.scrollTop=window.scrollY||0;let n=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(n),this.hideShowToolbar()}hideShowToolbar(){let n=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0||!!this.searchInput&&this.searchInput===document.activeElement,n!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),this.navigation?.classList.toggle("col-menu--hide")),this.lastY=this.scrollTop}},R=re;R.instance=new re;var X=class extends k{constructor(n){super(n);this.anchors=[];this.index=-1;R.instance.addEventListener("resize",()=>this.onResize()),R.instance.addEventListener("scroll",r=>this.onScroll(r)),this.createAnchors()}createAnchors(){let n=window.location.href;n.indexOf("#")!=-1&&(n=n.substring(0,n.indexOf("#"))),this.el.querySelectorAll("a").forEach(r=>{let i=r.href;if(i.indexOf("#")==-1||i.substring(0,n.length)!=n)return;let s=i.substring(i.indexOf("#")+1),o=document.querySelector("a.tsd-anchor[name="+s+"]"),a=r.parentNode;!o||!a||this.anchors.push({link:a,anchor:o,position:0})}),this.onResize()}onResize(){let n;for(let i=0,s=this.anchors.length;ii.position-s.position);let r=new CustomEvent("scroll",{detail:{scrollTop:R.instance.scrollTop}});this.onScroll(r)}onScroll(n){let r=n.detail.scrollTop+5,i=this.anchors,s=i.length-1,o=this.index;for(;o>-1&&i[o].position>r;)o-=1;for(;o-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=o,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}};var ue=(t,e=100)=>{let n;return(...r)=>{clearTimeout(n),n=setTimeout(()=>t(r),e)}};var me=De(de());function ve(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let n=document.querySelector("#tsd-search input"),r=document.querySelector("#tsd-search .results");if(!n||!r)throw new Error("The input field or the result list wrapper was not found");let i=!1;r.addEventListener("mousedown",()=>i=!0),r.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),n.addEventListener("focus",()=>t.classList.add("has-focus")),n.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Fe(t,r,n,s)}function Fe(t,e,n,r){n.addEventListener("input",ue(()=>{Ae(t,e,n,r)},200));let i=!1;n.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ve(e,n):s.key=="Escape"?n.blur():s.key=="ArrowUp"?fe(e,-1):s.key==="ArrowDown"?fe(e,1):i=!1}),n.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!n.matches(":focus")&&s.key==="/"&&(n.focus(),s.preventDefault())})}function He(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=me.Index.load(window.searchData.index))}function Ae(t,e,n,r){if(He(r,t),!r.index||!r.data)return;e.textContent="";let i=n.value.trim(),s=i?r.index.search(`*${i}*`):[];for(let o=0;oa.score-o.score);for(let o=0,a=Math.min(10,s.length);o${pe(u.parent,i)}.${l}`);let h=document.createElement("li");h.classList.value=u.classes??"";let m=document.createElement("a");m.href=r.base+u.url,m.innerHTML=l,h.append(m),e.appendChild(h)}}function fe(t,e){let n=t.querySelector(".current");if(!n)n=t.querySelector(e==1?"li:first-child":"li:last-child"),n&&n.classList.add("current");else{let r=n;if(e===1)do r=r.nextElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);else do r=r.previousElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);r&&(n.classList.remove("current"),r.classList.add("current"))}}function Ve(t,e){let n=t.querySelector(".current");if(n||(n=t.querySelector("li:first-child")),n){let r=n.querySelector("a");r&&(window.location.href=r.href),e.blur()}}function pe(t,e){if(e==="")return t;let n=t.toLocaleLowerCase(),r=e.toLocaleLowerCase(),i=[],s=0,o=n.indexOf(r);for(;o!=-1;)i.push(ie(t.substring(s,o)),`${ie(t.substring(o,o+r.length))}`),s=o+r.length,o=n.indexOf(r,s);return i.push(ie(t.substring(s))),i.join("")}var Ne={"&":"&","<":"<",">":">","'":"'",'"':"""};function ie(t){return t.replace(/[&<>"'"]/g,e=>Ne[e])}var F="mousedown",ye="mousemove",B="mouseup",Z={x:0,y:0},ge=!1,se=!1,je=!1,H=!1,xe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(xe?"is-mobile":"not-mobile");xe&&"ontouchstart"in document.documentElement&&(je=!0,F="touchstart",ye="touchmove",B="touchend");document.addEventListener(F,t=>{se=!0,H=!1;let e=F=="touchstart"?t.targetTouches[0]:t;Z.y=e.pageY||0,Z.x=e.pageX||0});document.addEventListener(ye,t=>{if(!!se&&!H){let e=F=="touchstart"?t.targetTouches[0]:t,n=Z.x-(e.pageX||0),r=Z.y-(e.pageY||0);H=Math.sqrt(n*n+r*r)>10}});document.addEventListener(B,()=>{se=!1});document.addEventListener("click",t=>{ge&&(t.preventDefault(),t.stopImmediatePropagation(),ge=!1)});var K=class extends k{constructor(n){super(n);this.className=this.el.dataset.toggle||"",this.el.addEventListener(B,r=>this.onPointerUp(r)),this.el.addEventListener("click",r=>r.preventDefault()),document.addEventListener(F,r=>this.onDocumentPointerDown(r)),document.addEventListener(B,r=>this.onDocumentPointerUp(r))}setActive(n){if(this.active==n)return;this.active=n,document.documentElement.classList.toggle("has-"+this.className,n),this.el.classList.toggle("active",n);let r=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(r),setTimeout(()=>document.documentElement.classList.remove(r),500)}onPointerUp(n){H||(this.setActive(!0),n.preventDefault())}onDocumentPointerDown(n){if(this.active){if(n.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(n){if(!H&&this.active&&n.target.closest(".col-menu")){let r=n.target.closest("a");if(r){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substring(0,i.indexOf("#"))),r.href.substring(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var oe;try{oe=localStorage}catch{oe={getItem(){return null},setItem(){}}}var Q=oe;var Le=document.head.appendChild(document.createElement("style"));Le.dataset.for="filters";var ee=class extends k{constructor(n){super(n);this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),Le.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } -`}fromLocalStorage(){let n=Q.getItem(this.key);return n?n==="true":this.el.checked}setLocalStorage(n){Q.setItem(this.key,n.toString()),this.value=n,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),document.querySelectorAll(".tsd-index-section").forEach(n=>{n.style.display="block";let r=Array.from(n.querySelectorAll(".tsd-index-link")).every(i=>i.offsetParent==null);n.style.display=r?"none":"block"})}};var te=class extends k{constructor(n){super(n);this.calculateHeights(),this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.textContent.replace(/\s+/g,"-").toLowerCase()}`,this.setLocalStorage(this.fromLocalStorage(),!0),this.summary.addEventListener("click",r=>this.toggleVisibility(r)),this.icon.style.transform=this.getIconRotation()}getIconRotation(n=this.el.open){return`rotate(${n?0:-90}deg)`}calculateHeights(){let n=this.el.open,{position:r,left:i}=this.el.style;this.el.style.position="fixed",this.el.style.left="-9999px",this.el.open=!0,this.expandedHeight=this.el.offsetHeight+"px",this.el.open=!1,this.collapsedHeight=this.el.offsetHeight+"px",this.el.open=n,this.el.style.height=n?this.expandedHeight:this.collapsedHeight,this.el.style.position=r,this.el.style.left=i}toggleVisibility(n){n.preventDefault(),this.el.style.overflow="hidden",this.el.open?this.collapse():this.expand()}expand(n=!0){this.el.open=!0,this.animate(this.collapsedHeight,this.expandedHeight,{opening:!0,duration:n?300:0})}collapse(n=!0){this.animate(this.expandedHeight,this.collapsedHeight,{opening:!1,duration:n?300:0})}animate(n,r,{opening:i,duration:s=300}){if(this.animation)return;let o={duration:s,easing:"ease"};this.animation=this.el.animate({height:[n,r]},o),this.icon.animate({transform:[this.icon.style.transform||this.getIconRotation(!i),this.getIconRotation(i)]},o).addEventListener("finish",()=>{this.icon.style.transform=this.getIconRotation(i)}),this.animation.addEventListener("finish",()=>this.animationEnd(i))}animationEnd(n){this.el.open=n,this.animation=void 0,this.el.style.height="auto",this.el.style.overflow="visible",this.setLocalStorage(n)}fromLocalStorage(){let n=Q.getItem(this.key);return n?n==="true":this.el.open}setLocalStorage(n,r=!1){this.fromLocalStorage()===n&&!r||(Q.setItem(this.key,n.toString()),this.el.open=n,this.handleValueChange(r))}handleValueChange(n=!1){this.fromLocalStorage()===this.el.open&&!n||(this.fromLocalStorage()?this.expand(!1):this.collapse(!1))}};function be(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,Ee(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),Ee(t.value)})}function Ee(t){document.documentElement.dataset.theme=t}ve();j(X,".menu-highlight");j(K,"a[data-toggle]");j(te,".tsd-index-accordion");j(ee,".tsd-filter-item input[type=checkbox]");var Se=document.getElementById("theme");Se&&be(Se);var Be=new Y;Object.defineProperty(window,"app",{value:Be});})(); -/*! - * lunr.Builder - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.Index - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.Pipeline - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.Set - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.TokenSet - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.Vector - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.stemmer - * Copyright (C) 2020 Oliver Nightingale - * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt - */ -/*! - * lunr.stopWordFilter - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.tokenizer - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.trimmer - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.utils - * Copyright (C) 2020 Oliver Nightingale - */ -/** - * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 - * Copyright (C) 2020 Oliver Nightingale - * @license MIT - */ diff --git a/website/static/api/aptos/assets/search.js b/website/static/api/aptos/assets/search.js deleted file mode 100644 index a189d69..0000000 --- a/website/static/api/aptos/assets/search.js +++ /dev/null @@ -1 +0,0 @@ -window.searchData = JSON.parse("{\"kinds\":{\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\"},\"rows\":[{\"kind\":64,\"name\":\"sendAptosTx\",\"url\":\"functions/sendAptosTx.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"getAptosTx\",\"url\":\"functions/getAptosTx.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"simulateAndRun\",\"url\":\"functions/simulateAndRun.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"sendRawAptosTx\",\"url\":\"functions/sendRawAptosTx.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"createFeedTx\",\"url\":\"functions/createFeedTx.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"createFeed\",\"url\":\"functions/createFeed.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"bcsAddressToBytes\",\"url\":\"functions/bcsAddressToBytes.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"generateResourceAccountAddress\",\"url\":\"functions/generateResourceAccountAddress.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"fetchAggregators\",\"url\":\"functions/fetchAggregators.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":32,\"name\":\"SWITCHBOARD_DEVNET_ADDRESS\",\"url\":\"variables/SWITCHBOARD_DEVNET_ADDRESS.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":32,\"name\":\"SWITCHBOARD_STATE_ADDRESS\",\"url\":\"variables/SWITCHBOARD_STATE_ADDRESS.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":128,\"name\":\"AptosDecimal\",\"url\":\"classes/AptosDecimal.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"fromBig\",\"url\":\"classes/AptosDecimal.html#fromBig\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AptosDecimal\"},{\"kind\":2048,\"name\":\"fromObj\",\"url\":\"classes/AptosDecimal.html#fromObj\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AptosDecimal\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/AptosDecimal.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"AptosDecimal\"},{\"kind\":1024,\"name\":\"mantissa\",\"url\":\"classes/AptosDecimal.html#mantissa\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AptosDecimal\"},{\"kind\":1024,\"name\":\"scale\",\"url\":\"classes/AptosDecimal.html#scale\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AptosDecimal\"},{\"kind\":1024,\"name\":\"neg\",\"url\":\"classes/AptosDecimal.html#neg\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AptosDecimal\"},{\"kind\":2048,\"name\":\"toBig\",\"url\":\"classes/AptosDecimal.html#toBig\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AptosDecimal\"},{\"kind\":8,\"name\":\"SwitchboardPermission\",\"url\":\"enums/SwitchboardPermission.html\",\"classes\":\"tsd-kind-enum\"},{\"kind\":16,\"name\":\"PERMIT_ORACLE_HEARTBEAT\",\"url\":\"enums/SwitchboardPermission.html#PERMIT_ORACLE_HEARTBEAT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SwitchboardPermission\"},{\"kind\":16,\"name\":\"PERMIT_ORACLE_QUEUE_USAGE\",\"url\":\"enums/SwitchboardPermission.html#PERMIT_ORACLE_QUEUE_USAGE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SwitchboardPermission\"},{\"kind\":16,\"name\":\"PERMIT_VRF_REQUESTS\",\"url\":\"enums/SwitchboardPermission.html#PERMIT_VRF_REQUESTS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SwitchboardPermission\"},{\"kind\":256,\"name\":\"AggregatorAddJobParams\",\"url\":\"interfaces/AggregatorAddJobParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"job\",\"url\":\"interfaces/AggregatorAddJobParams.html#job\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorAddJobParams\"},{\"kind\":1024,\"name\":\"weight\",\"url\":\"interfaces/AggregatorAddJobParams.html#weight\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorAddJobParams\"},{\"kind\":256,\"name\":\"AggregatorInitParams\",\"url\":\"interfaces/AggregatorInitParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"authority\",\"url\":\"interfaces/AggregatorInitParams.html#authority\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/AggregatorInitParams.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/AggregatorInitParams.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"queueAddress\",\"url\":\"interfaces/AggregatorInitParams.html#queueAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"interfaces/AggregatorInitParams.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/AggregatorInitParams.html#batchSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"minOracleResults\",\"url\":\"interfaces/AggregatorInitParams.html#minOracleResults\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"minJobResults\",\"url\":\"interfaces/AggregatorInitParams.html#minJobResults\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"minUpdateDelaySeconds\",\"url\":\"interfaces/AggregatorInitParams.html#minUpdateDelaySeconds\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"startAfter\",\"url\":\"interfaces/AggregatorInitParams.html#startAfter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"varianceThreshold\",\"url\":\"interfaces/AggregatorInitParams.html#varianceThreshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"forceReportPeriod\",\"url\":\"interfaces/AggregatorInitParams.html#forceReportPeriod\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"expiration\",\"url\":\"interfaces/AggregatorInitParams.html#expiration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"disableCrank\",\"url\":\"interfaces/AggregatorInitParams.html#disableCrank\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"historySize\",\"url\":\"interfaces/AggregatorInitParams.html#historySize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"readCharge\",\"url\":\"interfaces/AggregatorInitParams.html#readCharge\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":1024,\"name\":\"rewardEscrow\",\"url\":\"interfaces/AggregatorInitParams.html#rewardEscrow\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorInitParams\"},{\"kind\":256,\"name\":\"AggregatorSaveResultParams\",\"url\":\"interfaces/AggregatorSaveResultParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"oracleAddress\",\"url\":\"interfaces/AggregatorSaveResultParams.html#oracleAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSaveResultParams\"},{\"kind\":1024,\"name\":\"oracleIdx\",\"url\":\"interfaces/AggregatorSaveResultParams.html#oracleIdx\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSaveResultParams\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/AggregatorSaveResultParams.html#error\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSaveResultParams\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/AggregatorSaveResultParams.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSaveResultParams\"},{\"kind\":1024,\"name\":\"jobsChecksum\",\"url\":\"interfaces/AggregatorSaveResultParams.html#jobsChecksum\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSaveResultParams\"},{\"kind\":1024,\"name\":\"minResponse\",\"url\":\"interfaces/AggregatorSaveResultParams.html#minResponse\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSaveResultParams\"},{\"kind\":1024,\"name\":\"maxResponse\",\"url\":\"interfaces/AggregatorSaveResultParams.html#maxResponse\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSaveResultParams\"},{\"kind\":256,\"name\":\"JobInitParams\",\"url\":\"interfaces/JobInitParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/JobInitParams.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"JobInitParams\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/JobInitParams.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"JobInitParams\"},{\"kind\":1024,\"name\":\"authority\",\"url\":\"interfaces/JobInitParams.html#authority\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"JobInitParams\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/JobInitParams.html#data\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"JobInitParams\"},{\"kind\":1024,\"name\":\"weight\",\"url\":\"interfaces/JobInitParams.html#weight\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"JobInitParams\"},{\"kind\":256,\"name\":\"AggregatorRemoveJobParams\",\"url\":\"interfaces/AggregatorRemoveJobParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"aggregatorAddress\",\"url\":\"interfaces/AggregatorRemoveJobParams.html#aggregatorAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorRemoveJobParams\"},{\"kind\":1024,\"name\":\"job\",\"url\":\"interfaces/AggregatorRemoveJobParams.html#job\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorRemoveJobParams\"},{\"kind\":256,\"name\":\"AggregatorSetConfigParams\",\"url\":\"interfaces/AggregatorSetConfigParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/AggregatorSetConfigParams.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"authority\",\"url\":\"interfaces/AggregatorSetConfigParams.html#authority\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/AggregatorSetConfigParams.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/AggregatorSetConfigParams.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"queueAddress\",\"url\":\"interfaces/AggregatorSetConfigParams.html#queueAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/AggregatorSetConfigParams.html#batchSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"minOracleResults\",\"url\":\"interfaces/AggregatorSetConfigParams.html#minOracleResults\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"minJobResults\",\"url\":\"interfaces/AggregatorSetConfigParams.html#minJobResults\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"minUpdateDelaySeconds\",\"url\":\"interfaces/AggregatorSetConfigParams.html#minUpdateDelaySeconds\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"startAfter\",\"url\":\"interfaces/AggregatorSetConfigParams.html#startAfter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"varianceThreshold\",\"url\":\"interfaces/AggregatorSetConfigParams.html#varianceThreshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"forceReportPeriod\",\"url\":\"interfaces/AggregatorSetConfigParams.html#forceReportPeriod\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"expiration\",\"url\":\"interfaces/AggregatorSetConfigParams.html#expiration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"disableCrank\",\"url\":\"interfaces/AggregatorSetConfigParams.html#disableCrank\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"historySize\",\"url\":\"interfaces/AggregatorSetConfigParams.html#historySize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"readCharge\",\"url\":\"interfaces/AggregatorSetConfigParams.html#readCharge\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"rewardEscrow\",\"url\":\"interfaces/AggregatorSetConfigParams.html#rewardEscrow\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"interfaces/AggregatorSetConfigParams.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AggregatorSetConfigParams\"},{\"kind\":256,\"name\":\"CrankInitParams\",\"url\":\"interfaces/CrankInitParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/CrankInitParams.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CrankInitParams\"},{\"kind\":1024,\"name\":\"queueAddress\",\"url\":\"interfaces/CrankInitParams.html#queueAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CrankInitParams\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"interfaces/CrankInitParams.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CrankInitParams\"},{\"kind\":256,\"name\":\"CrankPopParams\",\"url\":\"interfaces/CrankPopParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"crankAddress\",\"url\":\"interfaces/CrankPopParams.html#crankAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CrankPopParams\"},{\"kind\":256,\"name\":\"CrankPushParams\",\"url\":\"interfaces/CrankPushParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"aggregatorAddress\",\"url\":\"interfaces/CrankPushParams.html#aggregatorAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CrankPushParams\"},{\"kind\":256,\"name\":\"OracleInitParams\",\"url\":\"interfaces/OracleInitParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/OracleInitParams.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleInitParams\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/OracleInitParams.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleInitParams\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/OracleInitParams.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleInitParams\"},{\"kind\":1024,\"name\":\"authority\",\"url\":\"interfaces/OracleInitParams.html#authority\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleInitParams\"},{\"kind\":1024,\"name\":\"queue\",\"url\":\"interfaces/OracleInitParams.html#queue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleInitParams\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"interfaces/OracleInitParams.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleInitParams\"},{\"kind\":256,\"name\":\"OracleQueueInitParams\",\"url\":\"interfaces/OracleQueueInitParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/OracleQueueInitParams.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/OracleQueueInitParams.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"authority\",\"url\":\"interfaces/OracleQueueInitParams.html#authority\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"oracleTimeout\",\"url\":\"interfaces/OracleQueueInitParams.html#oracleTimeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"reward\",\"url\":\"interfaces/OracleQueueInitParams.html#reward\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"minStake\",\"url\":\"interfaces/OracleQueueInitParams.html#minStake\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"slashingEnabled\",\"url\":\"interfaces/OracleQueueInitParams.html#slashingEnabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"varianceToleranceMultiplierValue\",\"url\":\"interfaces/OracleQueueInitParams.html#varianceToleranceMultiplierValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"varianceToleranceMultiplierScale\",\"url\":\"interfaces/OracleQueueInitParams.html#varianceToleranceMultiplierScale\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"feedProbationPeriod\",\"url\":\"interfaces/OracleQueueInitParams.html#feedProbationPeriod\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"consecutiveFeedFailureLimit\",\"url\":\"interfaces/OracleQueueInitParams.html#consecutiveFeedFailureLimit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"consecutiveOracleFailureLimit\",\"url\":\"interfaces/OracleQueueInitParams.html#consecutiveOracleFailureLimit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"unpermissionedFeedsEnabled\",\"url\":\"interfaces/OracleQueueInitParams.html#unpermissionedFeedsEnabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"unpermissionedVrfEnabled\",\"url\":\"interfaces/OracleQueueInitParams.html#unpermissionedVrfEnabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"lockLeaseFunding\",\"url\":\"interfaces/OracleQueueInitParams.html#lockLeaseFunding\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"mint\",\"url\":\"interfaces/OracleQueueInitParams.html#mint\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"enableBufferRelayers\",\"url\":\"interfaces/OracleQueueInitParams.html#enableBufferRelayers\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"maxSize\",\"url\":\"interfaces/OracleQueueInitParams.html#maxSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"interfaces/OracleQueueInitParams.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleQueueInitParams\"},{\"kind\":256,\"name\":\"LeaseInitParams\",\"url\":\"interfaces/LeaseInitParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"queueAddress\",\"url\":\"interfaces/LeaseInitParams.html#queueAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LeaseInitParams\"},{\"kind\":1024,\"name\":\"withdrawAuthority\",\"url\":\"interfaces/LeaseInitParams.html#withdrawAuthority\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LeaseInitParams\"},{\"kind\":1024,\"name\":\"initialAmount\",\"url\":\"interfaces/LeaseInitParams.html#initialAmount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LeaseInitParams\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"interfaces/LeaseInitParams.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LeaseInitParams\"},{\"kind\":256,\"name\":\"LeaseExtendParams\",\"url\":\"interfaces/LeaseExtendParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"loadAmount\",\"url\":\"interfaces/LeaseExtendParams.html#loadAmount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LeaseExtendParams\"},{\"kind\":256,\"name\":\"LeaseWithdrawParams\",\"url\":\"interfaces/LeaseWithdrawParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"interfaces/LeaseWithdrawParams.html#amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LeaseWithdrawParams\"},{\"kind\":256,\"name\":\"OracleWalletInitParams\",\"url\":\"interfaces/OracleWalletInitParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"oracleAddress\",\"url\":\"interfaces/OracleWalletInitParams.html#oracleAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleWalletInitParams\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"interfaces/OracleWalletInitParams.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleWalletInitParams\"},{\"kind\":256,\"name\":\"OracleWalletContributeParams\",\"url\":\"interfaces/OracleWalletContributeParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"oracleWalletAddr\",\"url\":\"interfaces/OracleWalletContributeParams.html#oracleWalletAddr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleWalletContributeParams\"},{\"kind\":1024,\"name\":\"loadAmount\",\"url\":\"interfaces/OracleWalletContributeParams.html#loadAmount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleWalletContributeParams\"},{\"kind\":256,\"name\":\"OracleWalletWithdrawParams\",\"url\":\"interfaces/OracleWalletWithdrawParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"oracleWalletAddr\",\"url\":\"interfaces/OracleWalletWithdrawParams.html#oracleWalletAddr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleWalletWithdrawParams\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"interfaces/OracleWalletWithdrawParams.html#amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OracleWalletWithdrawParams\"},{\"kind\":256,\"name\":\"PermissionInitParams\",\"url\":\"interfaces/PermissionInitParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"authority\",\"url\":\"interfaces/PermissionInitParams.html#authority\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PermissionInitParams\"},{\"kind\":1024,\"name\":\"granter\",\"url\":\"interfaces/PermissionInitParams.html#granter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PermissionInitParams\"},{\"kind\":1024,\"name\":\"grantee\",\"url\":\"interfaces/PermissionInitParams.html#grantee\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PermissionInitParams\"},{\"kind\":256,\"name\":\"PermissionSetParams\",\"url\":\"interfaces/PermissionSetParams.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"authority\",\"url\":\"interfaces/PermissionSetParams.html#authority\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PermissionSetParams\"},{\"kind\":1024,\"name\":\"granter\",\"url\":\"interfaces/PermissionSetParams.html#granter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PermissionSetParams\"},{\"kind\":1024,\"name\":\"grantee\",\"url\":\"interfaces/PermissionSetParams.html#grantee\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PermissionSetParams\"},{\"kind\":1024,\"name\":\"permission\",\"url\":\"interfaces/PermissionSetParams.html#permission\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PermissionSetParams\"},{\"kind\":1024,\"name\":\"enable\",\"url\":\"interfaces/PermissionSetParams.html#enable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PermissionSetParams\"},{\"kind\":4194304,\"name\":\"EventCallback\",\"url\":\"types/EventCallback.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/EventCallback.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"EventCallback\"},{\"kind\":128,\"name\":\"AptosEvent\",\"url\":\"classes/AptosEvent.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/AptosEvent.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"AptosEvent\"},{\"kind\":1024,\"name\":\"intervalId\",\"url\":\"classes/AptosEvent.html#intervalId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AptosEvent\"},{\"kind\":1024,\"name\":\"client\",\"url\":\"classes/AptosEvent.html#client\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AptosEvent\"},{\"kind\":1024,\"name\":\"eventHandlerOwner\",\"url\":\"classes/AptosEvent.html#eventHandlerOwner\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AptosEvent\"},{\"kind\":1024,\"name\":\"eventOwnerStruct\",\"url\":\"classes/AptosEvent.html#eventOwnerStruct\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AptosEvent\"},{\"kind\":1024,\"name\":\"eventHandlerName\",\"url\":\"classes/AptosEvent.html#eventHandlerName\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AptosEvent\"},{\"kind\":1024,\"name\":\"pollIntervalMs\",\"url\":\"classes/AptosEvent.html#pollIntervalMs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AptosEvent\"},{\"kind\":2048,\"name\":\"onTrigger\",\"url\":\"classes/AptosEvent.html#onTrigger\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AptosEvent\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/AptosEvent.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AptosEvent\"},{\"kind\":128,\"name\":\"StateAccount\",\"url\":\"classes/StateAccount.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/StateAccount.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"StateAccount\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StateAccount.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"StateAccount\"},{\"kind\":1024,\"name\":\"client\",\"url\":\"classes/StateAccount.html#client\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StateAccount\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/StateAccount.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StateAccount\"},{\"kind\":1024,\"name\":\"payer\",\"url\":\"classes/StateAccount.html#payer\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StateAccount\"},{\"kind\":1024,\"name\":\"switchboardAddress\",\"url\":\"classes/StateAccount.html#switchboardAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StateAccount\"},{\"kind\":2048,\"name\":\"loadData\",\"url\":\"classes/StateAccount.html#loadData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"StateAccount\"},{\"kind\":128,\"name\":\"AggregatorAccount\",\"url\":\"classes/AggregatorAccount.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/AggregatorAccount.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":2048,\"name\":\"shouldReportValue\",\"url\":\"classes/AggregatorAccount.html#shouldReportValue\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/AggregatorAccount.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":1024,\"name\":\"client\",\"url\":\"classes/AggregatorAccount.html#client\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/AggregatorAccount.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":1024,\"name\":\"switchboardAddress\",\"url\":\"classes/AggregatorAccount.html#switchboardAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"classes/AggregatorAccount.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":2048,\"name\":\"loadData\",\"url\":\"classes/AggregatorAccount.html#loadData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":2048,\"name\":\"loadJobs\",\"url\":\"classes/AggregatorAccount.html#loadJobs\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":2048,\"name\":\"addJob\",\"url\":\"classes/AggregatorAccount.html#addJob\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":2048,\"name\":\"addJobTx\",\"url\":\"classes/AggregatorAccount.html#addJobTx\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":2048,\"name\":\"saveResult\",\"url\":\"classes/AggregatorAccount.html#saveResult\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":2048,\"name\":\"openRound\",\"url\":\"classes/AggregatorAccount.html#openRound\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":2048,\"name\":\"openRoundTx\",\"url\":\"classes/AggregatorAccount.html#openRoundTx\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":2048,\"name\":\"setConfigTx\",\"url\":\"classes/AggregatorAccount.html#setConfigTx\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":2048,\"name\":\"watch\",\"url\":\"classes/AggregatorAccount.html#watch\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AggregatorAccount\"},{\"kind\":128,\"name\":\"JobAccount\",\"url\":\"classes/JobAccount.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/JobAccount.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"JobAccount\"},{\"kind\":2048,\"name\":\"initTx\",\"url\":\"classes/JobAccount.html#initTx\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"JobAccount\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/JobAccount.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"JobAccount\"},{\"kind\":1024,\"name\":\"client\",\"url\":\"classes/JobAccount.html#client\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"JobAccount\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/JobAccount.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"JobAccount\"},{\"kind\":1024,\"name\":\"switchboardAddress\",\"url\":\"classes/JobAccount.html#switchboardAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"JobAccount\"},{\"kind\":2048,\"name\":\"loadData\",\"url\":\"classes/JobAccount.html#loadData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"JobAccount\"},{\"kind\":2048,\"name\":\"loadJob\",\"url\":\"classes/JobAccount.html#loadJob\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"JobAccount\"},{\"kind\":128,\"name\":\"CrankAccount\",\"url\":\"classes/CrankAccount.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/CrankAccount.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CrankAccount\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/CrankAccount.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"CrankAccount\"},{\"kind\":1024,\"name\":\"client\",\"url\":\"classes/CrankAccount.html#client\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CrankAccount\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/CrankAccount.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CrankAccount\"},{\"kind\":1024,\"name\":\"switchboardAddress\",\"url\":\"classes/CrankAccount.html#switchboardAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CrankAccount\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"classes/CrankAccount.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CrankAccount\"},{\"kind\":2048,\"name\":\"push\",\"url\":\"classes/CrankAccount.html#push\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CrankAccount\"},{\"kind\":2048,\"name\":\"pushTx\",\"url\":\"classes/CrankAccount.html#pushTx\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CrankAccount\"},{\"kind\":2048,\"name\":\"pop\",\"url\":\"classes/CrankAccount.html#pop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CrankAccount\"},{\"kind\":2048,\"name\":\"loadData\",\"url\":\"classes/CrankAccount.html#loadData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CrankAccount\"},{\"kind\":128,\"name\":\"OracleAccount\",\"url\":\"classes/OracleAccount.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/OracleAccount.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"OracleAccount\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/OracleAccount.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"OracleAccount\"},{\"kind\":1024,\"name\":\"client\",\"url\":\"classes/OracleAccount.html#client\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"OracleAccount\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/OracleAccount.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"OracleAccount\"},{\"kind\":1024,\"name\":\"switchboardAddress\",\"url\":\"classes/OracleAccount.html#switchboardAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"OracleAccount\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"classes/OracleAccount.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"OracleAccount\"},{\"kind\":2048,\"name\":\"loadData\",\"url\":\"classes/OracleAccount.html#loadData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"OracleAccount\"},{\"kind\":2048,\"name\":\"heartbeat\",\"url\":\"classes/OracleAccount.html#heartbeat\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"OracleAccount\"},{\"kind\":128,\"name\":\"OracleQueueAccount\",\"url\":\"classes/OracleQueueAccount.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/OracleQueueAccount.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"OracleQueueAccount\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/OracleQueueAccount.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"OracleQueueAccount\"},{\"kind\":1024,\"name\":\"client\",\"url\":\"classes/OracleQueueAccount.html#client\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"OracleQueueAccount\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/OracleQueueAccount.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"OracleQueueAccount\"},{\"kind\":1024,\"name\":\"switchboardAddress\",\"url\":\"classes/OracleQueueAccount.html#switchboardAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"OracleQueueAccount\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"classes/OracleQueueAccount.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"OracleQueueAccount\"},{\"kind\":2048,\"name\":\"loadData\",\"url\":\"classes/OracleQueueAccount.html#loadData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"OracleQueueAccount\"},{\"kind\":128,\"name\":\"LeaseAccount\",\"url\":\"classes/LeaseAccount.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/LeaseAccount.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LeaseAccount\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/LeaseAccount.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"LeaseAccount\"},{\"kind\":1024,\"name\":\"client\",\"url\":\"classes/LeaseAccount.html#client\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LeaseAccount\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/LeaseAccount.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LeaseAccount\"},{\"kind\":1024,\"name\":\"switchboardAddress\",\"url\":\"classes/LeaseAccount.html#switchboardAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LeaseAccount\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"classes/LeaseAccount.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LeaseAccount\"},{\"kind\":2048,\"name\":\"extend\",\"url\":\"classes/LeaseAccount.html#extend\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LeaseAccount\"},{\"kind\":2048,\"name\":\"extendTx\",\"url\":\"classes/LeaseAccount.html#extendTx\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LeaseAccount\"},{\"kind\":2048,\"name\":\"withdraw\",\"url\":\"classes/LeaseAccount.html#withdraw\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LeaseAccount\"},{\"kind\":2048,\"name\":\"withdrawTx\",\"url\":\"classes/LeaseAccount.html#withdrawTx\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LeaseAccount\"},{\"kind\":2048,\"name\":\"loadData\",\"url\":\"classes/LeaseAccount.html#loadData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LeaseAccount\"},{\"kind\":128,\"name\":\"OracleWallet\",\"url\":\"classes/OracleWallet.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/OracleWallet.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"OracleWallet\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/OracleWallet.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"OracleWallet\"},{\"kind\":1024,\"name\":\"client\",\"url\":\"classes/OracleWallet.html#client\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"OracleWallet\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/OracleWallet.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"OracleWallet\"},{\"kind\":1024,\"name\":\"switchboardAddress\",\"url\":\"classes/OracleWallet.html#switchboardAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"OracleWallet\"},{\"kind\":1024,\"name\":\"coinType\",\"url\":\"classes/OracleWallet.html#coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"OracleWallet\"},{\"kind\":2048,\"name\":\"contribute\",\"url\":\"classes/OracleWallet.html#contribute\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"OracleWallet\"},{\"kind\":2048,\"name\":\"withdraw\",\"url\":\"classes/OracleWallet.html#withdraw\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"OracleWallet\"},{\"kind\":2048,\"name\":\"loadData\",\"url\":\"classes/OracleWallet.html#loadData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"OracleWallet\"},{\"kind\":128,\"name\":\"Permission\",\"url\":\"classes/Permission.html\",\"classes\":\"tsd-kind-class\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/Permission.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Permission\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Permission.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Permission\"},{\"kind\":1024,\"name\":\"client\",\"url\":\"classes/Permission.html#client\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Permission\"},{\"kind\":1024,\"name\":\"switchboardAddress\",\"url\":\"classes/Permission.html#switchboardAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Permission\"},{\"kind\":2048,\"name\":\"set\",\"url\":\"classes/Permission.html#set\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Permission\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,50.999]],[\"comment/0\",[]],[\"name/1\",[1,50.999]],[\"comment/1\",[]],[\"name/2\",[2,50.999]],[\"comment/2\",[]],[\"name/3\",[3,50.999]],[\"comment/3\",[]],[\"name/4\",[4,50.999]],[\"comment/4\",[]],[\"name/5\",[5,50.999]],[\"comment/5\",[]],[\"name/6\",[6,50.999]],[\"comment/6\",[]],[\"name/7\",[7,50.999]],[\"comment/7\",[]],[\"name/8\",[8,50.999]],[\"comment/8\",[]],[\"name/9\",[9,50.999]],[\"comment/9\",[]],[\"name/10\",[10,50.999]],[\"comment/10\",[]],[\"name/11\",[11,50.999]],[\"comment/11\",[]],[\"name/12\",[12,50.999]],[\"comment/12\",[]],[\"name/13\",[13,50.999]],[\"comment/13\",[]],[\"name/14\",[14,30.63]],[\"comment/14\",[]],[\"name/15\",[15,50.999]],[\"comment/15\",[]],[\"name/16\",[16,50.999]],[\"comment/16\",[]],[\"name/17\",[17,50.999]],[\"comment/17\",[]],[\"name/18\",[18,50.999]],[\"comment/18\",[]],[\"name/19\",[19,50.999]],[\"comment/19\",[]],[\"name/20\",[20,50.999]],[\"comment/20\",[]],[\"name/21\",[21,50.999]],[\"comment/21\",[]],[\"name/22\",[22,50.999]],[\"comment/22\",[]],[\"name/23\",[23,50.999]],[\"comment/23\",[]],[\"name/24\",[24,45.89]],[\"comment/24\",[]],[\"name/25\",[25,45.89]],[\"comment/25\",[]],[\"name/26\",[26,50.999]],[\"comment/26\",[]],[\"name/27\",[27,34.904]],[\"comment/27\",[]],[\"name/28\",[28,38.006]],[\"comment/28\",[]],[\"name/29\",[29,38.006]],[\"comment/29\",[]],[\"name/30\",[30,40.013]],[\"comment/30\",[]],[\"name/31\",[31,29.026]],[\"comment/31\",[]],[\"name/32\",[32,45.89]],[\"comment/32\",[]],[\"name/33\",[33,45.89]],[\"comment/33\",[]],[\"name/34\",[34,45.89]],[\"comment/34\",[]],[\"name/35\",[35,45.89]],[\"comment/35\",[]],[\"name/36\",[36,45.89]],[\"comment/36\",[]],[\"name/37\",[37,45.89]],[\"comment/37\",[]],[\"name/38\",[38,45.89]],[\"comment/38\",[]],[\"name/39\",[39,45.89]],[\"comment/39\",[]],[\"name/40\",[40,45.89]],[\"comment/40\",[]],[\"name/41\",[41,45.89]],[\"comment/41\",[]],[\"name/42\",[42,45.89]],[\"comment/42\",[]],[\"name/43\",[43,45.89]],[\"comment/43\",[]],[\"name/44\",[44,50.999]],[\"comment/44\",[]],[\"name/45\",[45,45.89]],[\"comment/45\",[]],[\"name/46\",[46,50.999]],[\"comment/46\",[]],[\"name/47\",[47,50.999]],[\"comment/47\",[]],[\"name/48\",[48,50.999]],[\"comment/48\",[]],[\"name/49\",[49,50.999]],[\"comment/49\",[]],[\"name/50\",[50,50.999]],[\"comment/50\",[]],[\"name/51\",[51,50.999]],[\"comment/51\",[]],[\"name/52\",[52,50.999]],[\"comment/52\",[]],[\"name/53\",[28,38.006]],[\"comment/53\",[]],[\"name/54\",[29,38.006]],[\"comment/54\",[]],[\"name/55\",[27,34.904]],[\"comment/55\",[]],[\"name/56\",[53,50.999]],[\"comment/56\",[]],[\"name/57\",[25,45.89]],[\"comment/57\",[]],[\"name/58\",[54,50.999]],[\"comment/58\",[]],[\"name/59\",[55,45.89]],[\"comment/59\",[]],[\"name/60\",[24,45.89]],[\"comment/60\",[]],[\"name/61\",[56,50.999]],[\"comment/61\",[]],[\"name/62\",[57,30.63]],[\"comment/62\",[]],[\"name/63\",[27,34.904]],[\"comment/63\",[]],[\"name/64\",[28,38.006]],[\"comment/64\",[]],[\"name/65\",[29,38.006]],[\"comment/65\",[]],[\"name/66\",[30,40.013]],[\"comment/66\",[]],[\"name/67\",[32,45.89]],[\"comment/67\",[]],[\"name/68\",[33,45.89]],[\"comment/68\",[]],[\"name/69\",[34,45.89]],[\"comment/69\",[]],[\"name/70\",[35,45.89]],[\"comment/70\",[]],[\"name/71\",[36,45.89]],[\"comment/71\",[]],[\"name/72\",[37,45.89]],[\"comment/72\",[]],[\"name/73\",[38,45.89]],[\"comment/73\",[]],[\"name/74\",[39,45.89]],[\"comment/74\",[]],[\"name/75\",[40,45.89]],[\"comment/75\",[]],[\"name/76\",[41,45.89]],[\"comment/76\",[]],[\"name/77\",[42,45.89]],[\"comment/77\",[]],[\"name/78\",[43,45.89]],[\"comment/78\",[]],[\"name/79\",[31,29.026]],[\"comment/79\",[]],[\"name/80\",[58,50.999]],[\"comment/80\",[]],[\"name/81\",[57,30.63]],[\"comment/81\",[]],[\"name/82\",[30,40.013]],[\"comment/82\",[]],[\"name/83\",[31,29.026]],[\"comment/83\",[]],[\"name/84\",[59,50.999]],[\"comment/84\",[]],[\"name/85\",[60,50.999]],[\"comment/85\",[]],[\"name/86\",[61,50.999]],[\"comment/86\",[]],[\"name/87\",[55,45.89]],[\"comment/87\",[]],[\"name/88\",[62,50.999]],[\"comment/88\",[]],[\"name/89\",[57,30.63]],[\"comment/89\",[]],[\"name/90\",[28,38.006]],[\"comment/90\",[]],[\"name/91\",[29,38.006]],[\"comment/91\",[]],[\"name/92\",[27,34.904]],[\"comment/92\",[]],[\"name/93\",[63,50.999]],[\"comment/93\",[]],[\"name/94\",[31,29.026]],[\"comment/94\",[]],[\"name/95\",[64,50.999]],[\"comment/95\",[]],[\"name/96\",[28,38.006]],[\"comment/96\",[]],[\"name/97\",[29,38.006]],[\"comment/97\",[]],[\"name/98\",[27,34.904]],[\"comment/98\",[]],[\"name/99\",[65,50.999]],[\"comment/99\",[]],[\"name/100\",[66,50.999]],[\"comment/100\",[]],[\"name/101\",[67,50.999]],[\"comment/101\",[]],[\"name/102\",[68,50.999]],[\"comment/102\",[]],[\"name/103\",[69,50.999]],[\"comment/103\",[]],[\"name/104\",[70,50.999]],[\"comment/104\",[]],[\"name/105\",[71,50.999]],[\"comment/105\",[]],[\"name/106\",[72,50.999]],[\"comment/106\",[]],[\"name/107\",[73,50.999]],[\"comment/107\",[]],[\"name/108\",[74,50.999]],[\"comment/108\",[]],[\"name/109\",[75,50.999]],[\"comment/109\",[]],[\"name/110\",[76,50.999]],[\"comment/110\",[]],[\"name/111\",[77,50.999]],[\"comment/111\",[]],[\"name/112\",[78,50.999]],[\"comment/112\",[]],[\"name/113\",[79,50.999]],[\"comment/113\",[]],[\"name/114\",[31,29.026]],[\"comment/114\",[]],[\"name/115\",[80,50.999]],[\"comment/115\",[]],[\"name/116\",[30,40.013]],[\"comment/116\",[]],[\"name/117\",[81,50.999]],[\"comment/117\",[]],[\"name/118\",[82,50.999]],[\"comment/118\",[]],[\"name/119\",[31,29.026]],[\"comment/119\",[]],[\"name/120\",[83,50.999]],[\"comment/120\",[]],[\"name/121\",[84,45.89]],[\"comment/121\",[]],[\"name/122\",[85,50.999]],[\"comment/122\",[]],[\"name/123\",[86,45.89]],[\"comment/123\",[]],[\"name/124\",[87,50.999]],[\"comment/124\",[]],[\"name/125\",[45,45.89]],[\"comment/125\",[]],[\"name/126\",[31,29.026]],[\"comment/126\",[]],[\"name/127\",[88,50.999]],[\"comment/127\",[]],[\"name/128\",[89,45.89]],[\"comment/128\",[]],[\"name/129\",[84,45.89]],[\"comment/129\",[]],[\"name/130\",[90,50.999]],[\"comment/130\",[]],[\"name/131\",[89,45.89]],[\"comment/131\",[]],[\"name/132\",[86,45.89]],[\"comment/132\",[]],[\"name/133\",[91,50.999]],[\"comment/133\",[]],[\"name/134\",[27,34.904]],[\"comment/134\",[]],[\"name/135\",[92,45.89]],[\"comment/135\",[]],[\"name/136\",[93,45.89]],[\"comment/136\",[]],[\"name/137\",[94,50.999]],[\"comment/137\",[]],[\"name/138\",[27,34.904]],[\"comment/138\",[]],[\"name/139\",[92,45.89]],[\"comment/139\",[]],[\"name/140\",[93,45.89]],[\"comment/140\",[]],[\"name/141\",[95,45.89]],[\"comment/141\",[]],[\"name/142\",[96,50.999]],[\"comment/142\",[]],[\"name/143\",[97,50.999]],[\"comment/143\",[]],[\"name/144\",[98,50.999]],[\"comment/144\",[]],[\"name/145\",[99,50.999]],[\"comment/145\",[]],[\"name/146\",[14,30.63]],[\"comment/146\",[]],[\"name/147\",[100,50.999]],[\"comment/147\",[]],[\"name/148\",[101,31.54]],[\"comment/148\",[]],[\"name/149\",[102,50.999]],[\"comment/149\",[]],[\"name/150\",[103,50.999]],[\"comment/150\",[]],[\"name/151\",[104,50.999]],[\"comment/151\",[]],[\"name/152\",[105,50.999]],[\"comment/152\",[]],[\"name/153\",[106,50.999]],[\"comment/153\",[]],[\"name/154\",[107,50.999]],[\"comment/154\",[]],[\"name/155\",[108,50.999]],[\"comment/155\",[]],[\"name/156\",[109,32.54]],[\"comment/156\",[]],[\"name/157\",[14,30.63]],[\"comment/157\",[]],[\"name/158\",[101,31.54]],[\"comment/158\",[]],[\"name/159\",[57,30.63]],[\"comment/159\",[]],[\"name/160\",[110,50.999]],[\"comment/160\",[]],[\"name/161\",[111,32.54]],[\"comment/161\",[]],[\"name/162\",[112,33.653]],[\"comment/162\",[]],[\"name/163\",[113,50.999]],[\"comment/163\",[]],[\"name/164\",[109,32.54]],[\"comment/164\",[]],[\"name/165\",[114,50.999]],[\"comment/165\",[]],[\"name/166\",[14,30.63]],[\"comment/166\",[]],[\"name/167\",[101,31.54]],[\"comment/167\",[]],[\"name/168\",[57,30.63]],[\"comment/168\",[]],[\"name/169\",[111,32.54]],[\"comment/169\",[]],[\"name/170\",[31,29.026]],[\"comment/170\",[]],[\"name/171\",[112,33.653]],[\"comment/171\",[]],[\"name/172\",[115,50.999]],[\"comment/172\",[]],[\"name/173\",[116,50.999]],[\"comment/173\",[]],[\"name/174\",[117,50.999]],[\"comment/174\",[]],[\"name/175\",[118,50.999]],[\"comment/175\",[]],[\"name/176\",[119,50.999]],[\"comment/176\",[]],[\"name/177\",[120,50.999]],[\"comment/177\",[]],[\"name/178\",[121,50.999]],[\"comment/178\",[]],[\"name/179\",[122,50.999]],[\"comment/179\",[]],[\"name/180\",[123,50.999]],[\"comment/180\",[]],[\"name/181\",[109,32.54]],[\"comment/181\",[]],[\"name/182\",[124,50.999]],[\"comment/182\",[]],[\"name/183\",[14,30.63]],[\"comment/183\",[]],[\"name/184\",[101,31.54]],[\"comment/184\",[]],[\"name/185\",[57,30.63]],[\"comment/185\",[]],[\"name/186\",[111,32.54]],[\"comment/186\",[]],[\"name/187\",[112,33.653]],[\"comment/187\",[]],[\"name/188\",[125,50.999]],[\"comment/188\",[]],[\"name/189\",[126,50.999]],[\"comment/189\",[]],[\"name/190\",[109,32.54]],[\"comment/190\",[]],[\"name/191\",[14,30.63]],[\"comment/191\",[]],[\"name/192\",[101,31.54]],[\"comment/192\",[]],[\"name/193\",[57,30.63]],[\"comment/193\",[]],[\"name/194\",[111,32.54]],[\"comment/194\",[]],[\"name/195\",[31,29.026]],[\"comment/195\",[]],[\"name/196\",[127,50.999]],[\"comment/196\",[]],[\"name/197\",[128,50.999]],[\"comment/197\",[]],[\"name/198\",[129,50.999]],[\"comment/198\",[]],[\"name/199\",[112,33.653]],[\"comment/199\",[]],[\"name/200\",[130,50.999]],[\"comment/200\",[]],[\"name/201\",[109,32.54]],[\"comment/201\",[]],[\"name/202\",[14,30.63]],[\"comment/202\",[]],[\"name/203\",[101,31.54]],[\"comment/203\",[]],[\"name/204\",[57,30.63]],[\"comment/204\",[]],[\"name/205\",[111,32.54]],[\"comment/205\",[]],[\"name/206\",[31,29.026]],[\"comment/206\",[]],[\"name/207\",[112,33.653]],[\"comment/207\",[]],[\"name/208\",[131,50.999]],[\"comment/208\",[]],[\"name/209\",[132,50.999]],[\"comment/209\",[]],[\"name/210\",[109,32.54]],[\"comment/210\",[]],[\"name/211\",[14,30.63]],[\"comment/211\",[]],[\"name/212\",[101,31.54]],[\"comment/212\",[]],[\"name/213\",[57,30.63]],[\"comment/213\",[]],[\"name/214\",[111,32.54]],[\"comment/214\",[]],[\"name/215\",[31,29.026]],[\"comment/215\",[]],[\"name/216\",[112,33.653]],[\"comment/216\",[]],[\"name/217\",[133,50.999]],[\"comment/217\",[]],[\"name/218\",[109,32.54]],[\"comment/218\",[]],[\"name/219\",[14,30.63]],[\"comment/219\",[]],[\"name/220\",[101,31.54]],[\"comment/220\",[]],[\"name/221\",[57,30.63]],[\"comment/221\",[]],[\"name/222\",[111,32.54]],[\"comment/222\",[]],[\"name/223\",[31,29.026]],[\"comment/223\",[]],[\"name/224\",[134,50.999]],[\"comment/224\",[]],[\"name/225\",[135,50.999]],[\"comment/225\",[]],[\"name/226\",[136,45.89]],[\"comment/226\",[]],[\"name/227\",[137,50.999]],[\"comment/227\",[]],[\"name/228\",[112,33.653]],[\"comment/228\",[]],[\"name/229\",[138,50.999]],[\"comment/229\",[]],[\"name/230\",[109,32.54]],[\"comment/230\",[]],[\"name/231\",[14,30.63]],[\"comment/231\",[]],[\"name/232\",[101,31.54]],[\"comment/232\",[]],[\"name/233\",[57,30.63]],[\"comment/233\",[]],[\"name/234\",[111,32.54]],[\"comment/234\",[]],[\"name/235\",[31,29.026]],[\"comment/235\",[]],[\"name/236\",[139,50.999]],[\"comment/236\",[]],[\"name/237\",[136,45.89]],[\"comment/237\",[]],[\"name/238\",[112,33.653]],[\"comment/238\",[]],[\"name/239\",[95,45.89]],[\"comment/239\",[]],[\"name/240\",[109,32.54]],[\"comment/240\",[]],[\"name/241\",[14,30.63]],[\"comment/241\",[]],[\"name/242\",[101,31.54]],[\"comment/242\",[]],[\"name/243\",[111,32.54]],[\"comment/243\",[]],[\"name/244\",[140,50.999]],[\"comment/244\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":98,\"name\":{\"144\":{}},\"comment\":{}}],[\"addjob\",{\"_index\":116,\"name\":{\"173\":{}},\"comment\":{}}],[\"addjobtx\",{\"_index\":117,\"name\":{\"174\":{}},\"comment\":{}}],[\"address\",{\"_index\":57,\"name\":{\"62\":{},\"81\":{},\"89\":{},\"159\":{},\"168\":{},\"185\":{},\"193\":{},\"204\":{},\"213\":{},\"221\":{},\"233\":{}},\"comment\":{}}],[\"aggregatoraccount\",{\"_index\":113,\"name\":{\"163\":{}},\"comment\":{}}],[\"aggregatoraddjobparams\",{\"_index\":23,\"name\":{\"23\":{}},\"comment\":{}}],[\"aggregatoraddress\",{\"_index\":55,\"name\":{\"59\":{},\"87\":{}},\"comment\":{}}],[\"aggregatorinitparams\",{\"_index\":26,\"name\":{\"26\":{}},\"comment\":{}}],[\"aggregatorremovejobparams\",{\"_index\":54,\"name\":{\"58\":{}},\"comment\":{}}],[\"aggregatorsaveresultparams\",{\"_index\":44,\"name\":{\"44\":{}},\"comment\":{}}],[\"aggregatorsetconfigparams\",{\"_index\":56,\"name\":{\"61\":{}},\"comment\":{}}],[\"amount\",{\"_index\":86,\"name\":{\"123\":{},\"132\":{}},\"comment\":{}}],[\"aptosdecimal\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"aptosevent\",{\"_index\":99,\"name\":{\"145\":{}},\"comment\":{}}],[\"authority\",{\"_index\":27,\"name\":{\"27\":{},\"55\":{},\"63\":{},\"92\":{},\"98\":{},\"134\":{},\"138\":{}},\"comment\":{}}],[\"batchsize\",{\"_index\":32,\"name\":{\"32\":{},\"67\":{}},\"comment\":{}}],[\"bcsaddresstobytes\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"client\",{\"_index\":101,\"name\":{\"148\":{},\"158\":{},\"167\":{},\"184\":{},\"192\":{},\"203\":{},\"212\":{},\"220\":{},\"232\":{},\"242\":{}},\"comment\":{}}],[\"cointype\",{\"_index\":31,\"name\":{\"31\":{},\"79\":{},\"83\":{},\"94\":{},\"114\":{},\"119\":{},\"126\":{},\"170\":{},\"195\":{},\"206\":{},\"215\":{},\"223\":{},\"235\":{}},\"comment\":{}}],[\"consecutivefeedfailurelimit\",{\"_index\":72,\"name\":{\"106\":{}},\"comment\":{}}],[\"consecutiveoraclefailurelimit\",{\"_index\":73,\"name\":{\"107\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":14,\"name\":{\"14\":{},\"146\":{},\"157\":{},\"166\":{},\"183\":{},\"191\":{},\"202\":{},\"211\":{},\"219\":{},\"231\":{},\"241\":{}},\"comment\":{}}],[\"contribute\",{\"_index\":139,\"name\":{\"236\":{}},\"comment\":{}}],[\"crankaccount\",{\"_index\":126,\"name\":{\"189\":{}},\"comment\":{}}],[\"crankaddress\",{\"_index\":60,\"name\":{\"85\":{}},\"comment\":{}}],[\"crankinitparams\",{\"_index\":58,\"name\":{\"80\":{}},\"comment\":{}}],[\"crankpopparams\",{\"_index\":59,\"name\":{\"84\":{}},\"comment\":{}}],[\"crankpushparams\",{\"_index\":61,\"name\":{\"86\":{}},\"comment\":{}}],[\"createfeed\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"createfeedtx\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"data\",{\"_index\":53,\"name\":{\"56\":{}},\"comment\":{}}],[\"disablecrank\",{\"_index\":40,\"name\":{\"40\":{},\"75\":{}},\"comment\":{}}],[\"enable\",{\"_index\":96,\"name\":{\"142\":{}},\"comment\":{}}],[\"enablebufferrelayers\",{\"_index\":78,\"name\":{\"112\":{}},\"comment\":{}}],[\"error\",{\"_index\":47,\"name\":{\"47\":{}},\"comment\":{}}],[\"eventcallback\",{\"_index\":97,\"name\":{\"143\":{}},\"comment\":{}}],[\"eventhandlername\",{\"_index\":104,\"name\":{\"151\":{}},\"comment\":{}}],[\"eventhandlerowner\",{\"_index\":102,\"name\":{\"149\":{}},\"comment\":{}}],[\"eventownerstruct\",{\"_index\":103,\"name\":{\"150\":{}},\"comment\":{}}],[\"expiration\",{\"_index\":39,\"name\":{\"39\":{},\"74\":{}},\"comment\":{}}],[\"extend\",{\"_index\":134,\"name\":{\"224\":{}},\"comment\":{}}],[\"extendtx\",{\"_index\":135,\"name\":{\"225\":{}},\"comment\":{}}],[\"feedprobationperiod\",{\"_index\":71,\"name\":{\"105\":{}},\"comment\":{}}],[\"fetchaggregators\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"forcereportperiod\",{\"_index\":38,\"name\":{\"38\":{},\"73\":{}},\"comment\":{}}],[\"frombig\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"fromobj\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"generateresourceaccountaddress\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"getaptostx\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"grantee\",{\"_index\":93,\"name\":{\"136\":{},\"140\":{}},\"comment\":{}}],[\"granter\",{\"_index\":92,\"name\":{\"135\":{},\"139\":{}},\"comment\":{}}],[\"heartbeat\",{\"_index\":131,\"name\":{\"208\":{}},\"comment\":{}}],[\"historysize\",{\"_index\":41,\"name\":{\"41\":{},\"76\":{}},\"comment\":{}}],[\"init\",{\"_index\":109,\"name\":{\"156\":{},\"164\":{},\"181\":{},\"190\":{},\"201\":{},\"210\":{},\"218\":{},\"230\":{},\"240\":{}},\"comment\":{}}],[\"initialamount\",{\"_index\":82,\"name\":{\"118\":{}},\"comment\":{}}],[\"inittx\",{\"_index\":124,\"name\":{\"182\":{}},\"comment\":{}}],[\"intervalid\",{\"_index\":100,\"name\":{\"147\":{}},\"comment\":{}}],[\"job\",{\"_index\":24,\"name\":{\"24\":{},\"60\":{}},\"comment\":{}}],[\"jobaccount\",{\"_index\":123,\"name\":{\"180\":{}},\"comment\":{}}],[\"jobinitparams\",{\"_index\":52,\"name\":{\"52\":{}},\"comment\":{}}],[\"jobschecksum\",{\"_index\":49,\"name\":{\"49\":{}},\"comment\":{}}],[\"leaseaccount\",{\"_index\":133,\"name\":{\"217\":{}},\"comment\":{}}],[\"leaseextendparams\",{\"_index\":83,\"name\":{\"120\":{}},\"comment\":{}}],[\"leaseinitparams\",{\"_index\":80,\"name\":{\"115\":{}},\"comment\":{}}],[\"leasewithdrawparams\",{\"_index\":85,\"name\":{\"122\":{}},\"comment\":{}}],[\"loadamount\",{\"_index\":84,\"name\":{\"121\":{},\"129\":{}},\"comment\":{}}],[\"loaddata\",{\"_index\":112,\"name\":{\"162\":{},\"171\":{},\"187\":{},\"199\":{},\"207\":{},\"216\":{},\"228\":{},\"238\":{}},\"comment\":{}}],[\"loadjob\",{\"_index\":125,\"name\":{\"188\":{}},\"comment\":{}}],[\"loadjobs\",{\"_index\":115,\"name\":{\"172\":{}},\"comment\":{}}],[\"lockleasefunding\",{\"_index\":76,\"name\":{\"110\":{}},\"comment\":{}}],[\"mantissa\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"maxresponse\",{\"_index\":51,\"name\":{\"51\":{}},\"comment\":{}}],[\"maxsize\",{\"_index\":79,\"name\":{\"113\":{}},\"comment\":{}}],[\"metadata\",{\"_index\":29,\"name\":{\"29\":{},\"54\":{},\"65\":{},\"91\":{},\"97\":{}},\"comment\":{}}],[\"minjobresults\",{\"_index\":34,\"name\":{\"34\":{},\"69\":{}},\"comment\":{}}],[\"minoracleresults\",{\"_index\":33,\"name\":{\"33\":{},\"68\":{}},\"comment\":{}}],[\"minresponse\",{\"_index\":50,\"name\":{\"50\":{}},\"comment\":{}}],[\"minstake\",{\"_index\":67,\"name\":{\"101\":{}},\"comment\":{}}],[\"mint\",{\"_index\":77,\"name\":{\"111\":{}},\"comment\":{}}],[\"minupdatedelayseconds\",{\"_index\":35,\"name\":{\"35\":{},\"70\":{}},\"comment\":{}}],[\"name\",{\"_index\":28,\"name\":{\"28\":{},\"53\":{},\"64\":{},\"90\":{},\"96\":{}},\"comment\":{}}],[\"neg\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"ontrigger\",{\"_index\":106,\"name\":{\"153\":{}},\"comment\":{}}],[\"openround\",{\"_index\":119,\"name\":{\"176\":{}},\"comment\":{}}],[\"openroundtx\",{\"_index\":120,\"name\":{\"177\":{}},\"comment\":{}}],[\"oracleaccount\",{\"_index\":130,\"name\":{\"200\":{}},\"comment\":{}}],[\"oracleaddress\",{\"_index\":45,\"name\":{\"45\":{},\"125\":{}},\"comment\":{}}],[\"oracleidx\",{\"_index\":46,\"name\":{\"46\":{}},\"comment\":{}}],[\"oracleinitparams\",{\"_index\":62,\"name\":{\"88\":{}},\"comment\":{}}],[\"oraclequeueaccount\",{\"_index\":132,\"name\":{\"209\":{}},\"comment\":{}}],[\"oraclequeueinitparams\",{\"_index\":64,\"name\":{\"95\":{}},\"comment\":{}}],[\"oracletimeout\",{\"_index\":65,\"name\":{\"99\":{}},\"comment\":{}}],[\"oraclewallet\",{\"_index\":138,\"name\":{\"229\":{}},\"comment\":{}}],[\"oraclewalletaddr\",{\"_index\":89,\"name\":{\"128\":{},\"131\":{}},\"comment\":{}}],[\"oraclewalletcontributeparams\",{\"_index\":88,\"name\":{\"127\":{}},\"comment\":{}}],[\"oraclewalletinitparams\",{\"_index\":87,\"name\":{\"124\":{}},\"comment\":{}}],[\"oraclewalletwithdrawparams\",{\"_index\":90,\"name\":{\"130\":{}},\"comment\":{}}],[\"payer\",{\"_index\":110,\"name\":{\"160\":{}},\"comment\":{}}],[\"permission\",{\"_index\":95,\"name\":{\"141\":{},\"239\":{}},\"comment\":{}}],[\"permissioninitparams\",{\"_index\":91,\"name\":{\"133\":{}},\"comment\":{}}],[\"permissionsetparams\",{\"_index\":94,\"name\":{\"137\":{}},\"comment\":{}}],[\"permit_oracle_heartbeat\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"permit_oracle_queue_usage\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"permit_vrf_requests\",{\"_index\":22,\"name\":{\"22\":{}},\"comment\":{}}],[\"pollintervalms\",{\"_index\":105,\"name\":{\"152\":{}},\"comment\":{}}],[\"pop\",{\"_index\":129,\"name\":{\"198\":{}},\"comment\":{}}],[\"push\",{\"_index\":127,\"name\":{\"196\":{}},\"comment\":{}}],[\"pushtx\",{\"_index\":128,\"name\":{\"197\":{}},\"comment\":{}}],[\"queue\",{\"_index\":63,\"name\":{\"93\":{}},\"comment\":{}}],[\"queueaddress\",{\"_index\":30,\"name\":{\"30\":{},\"66\":{},\"82\":{},\"116\":{}},\"comment\":{}}],[\"readcharge\",{\"_index\":42,\"name\":{\"42\":{},\"77\":{}},\"comment\":{}}],[\"reward\",{\"_index\":66,\"name\":{\"100\":{}},\"comment\":{}}],[\"rewardescrow\",{\"_index\":43,\"name\":{\"43\":{},\"78\":{}},\"comment\":{}}],[\"saveresult\",{\"_index\":118,\"name\":{\"175\":{}},\"comment\":{}}],[\"scale\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"sendaptostx\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"sendrawaptostx\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"set\",{\"_index\":140,\"name\":{\"244\":{}},\"comment\":{}}],[\"setconfigtx\",{\"_index\":121,\"name\":{\"178\":{}},\"comment\":{}}],[\"shouldreportvalue\",{\"_index\":114,\"name\":{\"165\":{}},\"comment\":{}}],[\"simulateandrun\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"slashingenabled\",{\"_index\":68,\"name\":{\"102\":{}},\"comment\":{}}],[\"startafter\",{\"_index\":36,\"name\":{\"36\":{},\"71\":{}},\"comment\":{}}],[\"stateaccount\",{\"_index\":108,\"name\":{\"155\":{}},\"comment\":{}}],[\"stop\",{\"_index\":107,\"name\":{\"154\":{}},\"comment\":{}}],[\"switchboard_devnet_address\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"switchboard_state_address\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"switchboardaddress\",{\"_index\":111,\"name\":{\"161\":{},\"169\":{},\"186\":{},\"194\":{},\"205\":{},\"214\":{},\"222\":{},\"234\":{},\"243\":{}},\"comment\":{}}],[\"switchboardpermission\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"tobig\",{\"_index\":18,\"name\":{\"18\":{}},\"comment\":{}}],[\"unpermissionedfeedsenabled\",{\"_index\":74,\"name\":{\"108\":{}},\"comment\":{}}],[\"unpermissionedvrfenabled\",{\"_index\":75,\"name\":{\"109\":{}},\"comment\":{}}],[\"value\",{\"_index\":48,\"name\":{\"48\":{}},\"comment\":{}}],[\"variancethreshold\",{\"_index\":37,\"name\":{\"37\":{},\"72\":{}},\"comment\":{}}],[\"variancetolerancemultiplierscale\",{\"_index\":70,\"name\":{\"104\":{}},\"comment\":{}}],[\"variancetolerancemultipliervalue\",{\"_index\":69,\"name\":{\"103\":{}},\"comment\":{}}],[\"watch\",{\"_index\":122,\"name\":{\"179\":{}},\"comment\":{}}],[\"weight\",{\"_index\":25,\"name\":{\"25\":{},\"57\":{}},\"comment\":{}}],[\"withdraw\",{\"_index\":136,\"name\":{\"226\":{},\"237\":{}},\"comment\":{}}],[\"withdrawauthority\",{\"_index\":81,\"name\":{\"117\":{}},\"comment\":{}}],[\"withdrawtx\",{\"_index\":137,\"name\":{\"227\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/website/static/api/aptos/assets/style.css b/website/static/api/aptos/assets/style.css deleted file mode 100644 index 3dc7bde..0000000 --- a/website/static/api/aptos/assets/style.css +++ /dev/null @@ -1,1225 +0,0 @@ -:root { - /* Light */ - --light-color-background: #f2f4f8; - --light-color-background-secondary: #eff0f1; - --light-color-icon-background: var(--light-color-background); - --light-color-accent: #c5c7c9; - --light-color-text: #222; - --light-color-text-aside: #707070; - --light-color-link: #4da6ff; - --light-color-ts: #db1373; - --light-color-ts-interface: #139d2c; - --light-color-ts-enum: #9c891a; - --light-color-ts-class: #2484e5; - --light-color-ts-function: #572be7; - --light-color-ts-namespace: #b111c9; - --light-color-ts-private: #707070; - --light-color-ts-variable: #4d68ff; - --light-external-icon: url("data:image/svg+xml;utf8,"); - --light-color-scheme: light; - - /* Dark */ - --dark-color-background: #2b2e33; - --dark-color-background-secondary: #1e2024; - --dark-color-icon-background: var(--dark-color-background-secondary); - --dark-color-accent: #9096a2; - --dark-color-text: #f5f5f5; - --dark-color-text-aside: #dddddd; - --dark-color-link: #00aff4; - --dark-color-ts: #ff6492; - --dark-color-ts-interface: #6cff87; - --dark-color-ts-enum: #f4d93e; - --dark-color-ts-class: #61b0ff; - --dark-color-ts-function: #9772ff; - --dark-color-ts-namespace: #e14dff; - --dark-color-ts-private: #e2e2e2; - --dark-color-ts-variable: #4d68ff; - --dark-external-icon: url("data:image/svg+xml;utf8,"); - --dark-color-scheme: dark; -} - -@media (prefers-color-scheme: light) { - :root { - --color-background: var(--light-color-background); - --color-background-secondary: var(--light-color-background-secondary); - --color-icon-background: var(--light-color-icon-background); - --color-accent: var(--light-color-accent); - --color-text: var(--light-color-text); - --color-text-aside: var(--light-color-text-aside); - --color-link: var(--light-color-link); - --color-ts: var(--light-color-ts); - --color-ts-interface: var(--light-color-ts-interface); - --color-ts-enum: var(--light-color-ts-enum); - --color-ts-class: var(--light-color-ts-class); - --color-ts-function: var(--light-color-ts-function); - --color-ts-namespace: var(--light-color-ts-namespace); - --color-ts-private: var(--light-color-ts-private); - --color-ts-variable: var(--light-color-ts-variable); - --external-icon: var(--light-external-icon); - --color-scheme: var(--light-color-scheme); - } -} - -@media (prefers-color-scheme: dark) { - :root { - --color-background: var(--dark-color-background); - --color-background-secondary: var(--dark-color-background-secondary); - --color-icon-background: var(--dark-color-icon-background); - --color-accent: var(--dark-color-accent); - --color-text: var(--dark-color-text); - --color-text-aside: var(--dark-color-text-aside); - --color-link: var(--dark-color-link); - --color-ts: var(--dark-color-ts); - --color-ts-interface: var(--dark-color-ts-interface); - --color-ts-enum: var(--dark-color-ts-enum); - --color-ts-class: var(--dark-color-ts-class); - --color-ts-function: var(--dark-color-ts-function); - --color-ts-namespace: var(--dark-color-ts-namespace); - --color-ts-private: var(--dark-color-ts-private); - --color-ts-variable: var(--dark-color-ts-variable); - --external-icon: var(--dark-external-icon); - --color-scheme: var(--dark-color-scheme); - } -} - -html { - color-scheme: var(--color-scheme); -} - -body { - margin: 0; -} - -:root[data-theme="light"] { - --color-background: var(--light-color-background); - --color-background-secondary: var(--light-color-background-secondary); - --color-icon-background: var(--light-color-icon-background); - --color-accent: var(--light-color-accent); - --color-text: var(--light-color-text); - --color-text-aside: var(--light-color-text-aside); - --color-link: var(--light-color-link); - --color-ts: var(--light-color-ts); - --color-ts-interface: var(--light-color-ts-interface); - --color-ts-enum: var(--light-color-ts-enum); - --color-ts-class: var(--light-color-ts-class); - --color-ts-function: var(--light-color-ts-function); - --color-ts-namespace: var(--light-color-ts-namespace); - --color-ts-private: var(--light-color-ts-private); - --color-ts-variable: var(--light-color-ts-variable); - --external-icon: var(--light-external-icon); - --color-scheme: var(--light-color-scheme); -} - -:root[data-theme="dark"] { - --color-background: var(--dark-color-background); - --color-background-secondary: var(--dark-color-background-secondary); - --color-icon-background: var(--dark-color-icon-background); - --color-accent: var(--dark-color-accent); - --color-text: var(--dark-color-text); - --color-text-aside: var(--dark-color-text-aside); - --color-link: var(--dark-color-link); - --color-ts: var(--dark-color-ts); - --color-ts-interface: var(--dark-color-ts-interface); - --color-ts-enum: var(--dark-color-ts-enum); - --color-ts-class: var(--dark-color-ts-class); - --color-ts-function: var(--dark-color-ts-function); - --color-ts-namespace: var(--dark-color-ts-namespace); - --color-ts-private: var(--dark-color-ts-private); - --color-ts-variable: var(--dark-color-ts-variable); - --external-icon: var(--dark-external-icon); - --color-scheme: var(--dark-color-scheme); -} - -h1, -h2, -h3, -h4, -h5, -h6 { - line-height: 1.2; -} - -h1 { - font-size: 1.875rem; - margin: 0.67rem 0; -} - -h2 { - font-size: 1.5rem; - margin: 0.83rem 0; -} - -h3 { - font-size: 1.25rem; - margin: 1rem 0; -} - -h4 { - font-size: 1.05rem; - margin: 1.33rem 0; -} - -h5 { - font-size: 1rem; - margin: 1.5rem 0; -} - -h6 { - font-size: 0.875rem; - margin: 2.33rem 0; -} - -.uppercase { - text-transform: uppercase; -} - -pre { - white-space: pre; - white-space: pre-wrap; - word-wrap: break-word; -} - -dl, -menu, -ol, -ul { - margin: 1em 0; -} - -dd { - margin: 0 0 0 40px; -} - -.container { - max-width: 1600px; - padding: 0 2rem; -} - -@media (min-width: 640px) { - .container { - padding: 0 4rem; - } -} -@media (min-width: 1200px) { - .container { - padding: 0 8rem; - } -} -@media (min-width: 1600px) { - .container { - padding: 0 12rem; - } -} - -/* Footer */ -.tsd-generator { - border-top: 1px solid var(--color-accent); - padding-top: 1rem; - padding-bottom: 1rem; - max-height: 3.5rem; -} - -.tsd-generator > p { - margin-top: 0; - margin-bottom: 0; - padding: 0 1rem; -} - -.container-main { - display: flex; - justify-content: space-between; - position: relative; - margin: 0 auto; -} - -.col-4, -.col-8 { - box-sizing: border-box; - float: left; - padding: 2rem 1rem; -} - -.col-4 { - flex: 0 0 25%; -} -.col-8 { - flex: 1 0; - flex-wrap: wrap; - padding-left: 0; -} - -@keyframes fade-in { - from { - opacity: 0; - } - to { - opacity: 1; - } -} -@keyframes fade-out { - from { - opacity: 1; - visibility: visible; - } - to { - opacity: 0; - } -} -@keyframes fade-in-delayed { - 0% { - opacity: 0; - } - 33% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@keyframes fade-out-delayed { - 0% { - opacity: 1; - visibility: visible; - } - 66% { - opacity: 0; - } - 100% { - opacity: 0; - } -} -@keyframes shift-to-left { - from { - transform: translate(0, 0); - } - to { - transform: translate(-25%, 0); - } -} -@keyframes unshift-to-left { - from { - transform: translate(-25%, 0); - } - to { - transform: translate(0, 0); - } -} -@keyframes pop-in-from-right { - from { - transform: translate(100%, 0); - } - to { - transform: translate(0, 0); - } -} -@keyframes pop-out-to-right { - from { - transform: translate(0, 0); - visibility: visible; - } - to { - transform: translate(100%, 0); - } -} -body { - background: var(--color-background); - font-family: "Segoe UI", sans-serif; - font-size: 16px; - color: var(--color-text); -} - -a { - color: var(--color-link); - text-decoration: none; -} -a:hover { - text-decoration: underline; -} -a.external[target="_blank"] { - background-image: var(--external-icon); - background-position: top 3px right; - background-repeat: no-repeat; - padding-right: 13px; -} - -code, -pre { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - padding: 0.2em; - margin: 0; - font-size: 0.875rem; - border-radius: 0.8em; -} - -pre { - padding: 10px; - border: 0.1em solid var(--color-accent); -} -pre code { - padding: 0; - font-size: 100%; -} - -blockquote { - margin: 1em 0; - padding-left: 1em; - border-left: 4px solid gray; -} - -.tsd-typography { - line-height: 1.333em; -} -.tsd-typography ul { - list-style: square; - padding: 0 0 0 20px; - margin: 0; -} -.tsd-typography h4, -.tsd-typography .tsd-index-panel h3, -.tsd-index-panel .tsd-typography h3, -.tsd-typography h5, -.tsd-typography h6 { - font-size: 1em; - margin: 0; -} -.tsd-typography h5, -.tsd-typography h6 { - font-weight: normal; -} -.tsd-typography p, -.tsd-typography ul, -.tsd-typography ol { - margin: 1em 0; -} - -@media (max-width: 1024px) { - html .col-content { - float: none; - max-width: 100%; - width: 100%; - padding-top: 3rem; - } - html .col-menu { - position: fixed !important; - overflow-y: auto; - -webkit-overflow-scrolling: touch; - z-index: 1024; - top: 0 !important; - bottom: 0 !important; - left: auto !important; - right: 0 !important; - padding: 1.5rem 1.5rem 0 0; - max-width: 25rem; - visibility: hidden; - background-color: var(--color-background); - transform: translate(100%, 0); - } - html .col-menu > *:last-child { - padding-bottom: 20px; - } - html .overlay { - content: ""; - display: block; - position: fixed; - z-index: 1023; - top: 0; - left: 0; - right: 0; - bottom: 0; - background-color: rgba(0, 0, 0, 0.75); - visibility: hidden; - } - - .to-has-menu .overlay { - animation: fade-in 0.4s; - } - - .to-has-menu :is(header, footer, .col-content) { - animation: shift-to-left 0.4s; - } - - .to-has-menu .col-menu { - animation: pop-in-from-right 0.4s; - } - - .from-has-menu .overlay { - animation: fade-out 0.4s; - } - - .from-has-menu :is(header, footer, .col-content) { - animation: unshift-to-left 0.4s; - } - - .from-has-menu .col-menu { - animation: pop-out-to-right 0.4s; - } - - .has-menu body { - overflow: hidden; - } - .has-menu .overlay { - visibility: visible; - } - .has-menu :is(header, footer, .col-content) { - transform: translate(-25%, 0); - } - .has-menu .col-menu { - visibility: visible; - transform: translate(0, 0); - display: grid; - align-items: center; - grid-template-rows: auto 1fr; - grid-gap: 1.5rem; - max-height: 100vh; - padding: 1rem 2rem; - } - .has-menu .tsd-navigation { - max-height: 100%; - } -} - -.tsd-breadcrumb { - margin: 0; - padding: 0; - color: var(--color-text-aside); -} -.tsd-breadcrumb a { - color: var(--color-text-aside); - text-decoration: none; -} -.tsd-breadcrumb a:hover { - text-decoration: underline; -} -.tsd-breadcrumb li { - display: inline; -} -.tsd-breadcrumb li:after { - content: " / "; -} - -.tsd-comment-tags { - display: flex; - flex-direction: column; -} -dl.tsd-comment-tag-group { - display: flex; - align-items: center; - overflow: hidden; - margin: 0.5em 0; -} -dl.tsd-comment-tag-group dt { - display: flex; - margin-right: 0.5em; - font-size: 0.875em; - font-weight: normal; -} -dl.tsd-comment-tag-group dd { - margin: 0; -} -code.tsd-tag { - padding: 0.25em 0.4em; - border: 0.1em solid var(--color-accent); - margin-right: 0.25em; - font-size: 70%; -} -h1 code.tsd-tag:first-of-type { - margin-left: 0.25em; -} - -dl.tsd-comment-tag-group dd:before, -dl.tsd-comment-tag-group dd:after { - content: " "; -} -dl.tsd-comment-tag-group dd pre, -dl.tsd-comment-tag-group dd:after { - clear: both; -} -dl.tsd-comment-tag-group p { - margin: 0; -} - -.tsd-panel.tsd-comment .lead { - font-size: 1.1em; - line-height: 1.333em; - margin-bottom: 2em; -} -.tsd-panel.tsd-comment .lead:last-child { - margin-bottom: 0; -} - -.tsd-filter-visibility h4 { - font-size: 1rem; - padding-top: 0.75rem; - padding-bottom: 0.5rem; - margin: 0; -} -.tsd-filter-item:not(:last-child) { - margin-bottom: 0.5rem; -} -.tsd-filter-input { - display: flex; - width: fit-content; - width: -moz-fit-content; - align-items: center; - user-select: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - cursor: pointer; -} -.tsd-filter-input input[type="checkbox"] { - cursor: pointer; - position: absolute; - width: 1.5em; - height: 1.5em; - opacity: 0; -} -.tsd-filter-input input[type="checkbox"]:disabled { - pointer-events: none; -} -.tsd-filter-input svg { - cursor: pointer; - width: 1.5em; - height: 1.5em; - margin-right: 0.5em; - border-radius: 0.33em; - /* Leaving this at full opacity breaks event listeners on Firefox. - Don't remove unless you know what you're doing. */ - opacity: 0.99; -} -.tsd-filter-input input[type="checkbox"]:focus + svg { - transform: scale(0.95); -} -.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { - transform: scale(1); -} -.tsd-checkbox-background { - fill: var(--color-accent); -} -input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { - stroke: var(--color-text); -} -.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { - fill: var(--color-background); - stroke: var(--color-accent); - stroke-width: 0.25rem; -} -.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { - stroke: var(--color-accent); -} - -.tsd-theme-toggle { - padding-top: 0.75rem; -} -.tsd-theme-toggle > h4 { - display: inline; - vertical-align: middle; - margin-right: 0.75rem; -} - -.tsd-hierarchy { - list-style: square; - margin: 0; -} -.tsd-hierarchy .target { - font-weight: bold; -} - -.tsd-panel-group.tsd-index-group { - margin-bottom: 0; -} -.tsd-index-panel .tsd-index-list { - list-style: none; - line-height: 1.333em; - margin: 0; - padding: 0.25rem 0 0 0; - overflow: hidden; - display: grid; - grid-template-columns: repeat(3, 1fr); - column-gap: 1rem; - grid-template-rows: auto; -} -@media (max-width: 1024px) { - .tsd-index-panel .tsd-index-list { - grid-template-columns: repeat(2, 1fr); - } -} -@media (max-width: 768px) { - .tsd-index-panel .tsd-index-list { - grid-template-columns: repeat(1, 1fr); - } -} -.tsd-index-panel .tsd-index-list li { - -webkit-page-break-inside: avoid; - -moz-page-break-inside: avoid; - -ms-page-break-inside: avoid; - -o-page-break-inside: avoid; - page-break-inside: avoid; -} -.tsd-index-panel a, -.tsd-index-panel a.tsd-parent-kind-module { - color: var(--color-ts); -} -.tsd-index-panel a.tsd-parent-kind-interface { - color: var(--color-ts-interface); -} -.tsd-index-panel a.tsd-parent-kind-enum { - color: var(--color-ts-enum); -} -.tsd-index-panel a.tsd-parent-kind-class { - color: var(--color-ts-class); -} -.tsd-index-panel a.tsd-kind-module { - color: var(--color-ts-namespace); -} -.tsd-index-panel a.tsd-kind-interface { - color: var(--color-ts-interface); -} -.tsd-index-panel a.tsd-kind-enum { - color: var(--color-ts-enum); -} -.tsd-index-panel a.tsd-kind-class { - color: var(--color-ts-class); -} -.tsd-index-panel a.tsd-kind-function { - color: var(--color-ts-function); -} -.tsd-index-panel a.tsd-kind-namespace { - color: var(--color-ts-namespace); -} -.tsd-index-panel a.tsd-kind-variable { - color: var(--color-ts-variable); -} -.tsd-index-panel a.tsd-is-private { - color: var(--color-ts-private); -} - -.tsd-flag { - display: inline-block; - padding: 0.25em 0.4em; - border-radius: 4px; - color: var(--color-comment-tag-text); - background-color: var(--color-comment-tag); - text-indent: 0; - font-size: 75%; - line-height: 1; - font-weight: normal; -} - -.tsd-anchor { - position: absolute; - top: -100px; -} - -.tsd-member { - position: relative; -} -.tsd-member .tsd-anchor + h3 { - display: flex; - align-items: center; - margin-top: 0; - margin-bottom: 0; - border-bottom: none; -} -.tsd-member [data-tsd-kind] { - color: var(--color-ts); -} -.tsd-member [data-tsd-kind="Interface"] { - color: var(--color-ts-interface); -} -.tsd-member [data-tsd-kind="Enum"] { - color: var(--color-ts-enum); -} -.tsd-member [data-tsd-kind="Class"] { - color: var(--color-ts-class); -} -.tsd-member [data-tsd-kind="Private"] { - color: var(--color-ts-private); -} - -.tsd-navigation a { - display: block; - margin: 0.4rem 0; - border-left: 2px solid transparent; - color: var(--color-text); - text-decoration: none; - transition: border-left-color 0.1s; -} -.tsd-navigation a:hover { - text-decoration: underline; -} -.tsd-navigation ul { - margin: 0; - padding: 0; - list-style: none; -} -.tsd-navigation li { - padding: 0; -} - -.tsd-navigation.primary .tsd-accordion-details > ul { - margin-top: 0.75rem; -} -.tsd-navigation.primary a { - padding: 0.75rem 0.5rem; - margin: 0; -} -.tsd-navigation.primary ul li a { - margin-left: 0.5rem; -} -.tsd-navigation.primary ul li li a { - margin-left: 1.5rem; -} -.tsd-navigation.primary ul li li li a { - margin-left: 2.5rem; -} -.tsd-navigation.primary ul li li li li a { - margin-left: 3.5rem; -} -.tsd-navigation.primary ul li li li li li a { - margin-left: 4.5rem; -} -.tsd-navigation.primary ul li li li li li li a { - margin-left: 5.5rem; -} -.tsd-navigation.primary li.current > a { - border-left: 0.15rem var(--color-text) solid; -} -.tsd-navigation.primary li.selected > a { - font-weight: bold; - border-left: 0.2rem var(--color-text) solid; -} -.tsd-navigation.primary ul li a:hover { - border-left: 0.2rem var(--color-text-aside) solid; -} -.tsd-navigation.primary li.globals + li > span, -.tsd-navigation.primary li.globals + li > a { - padding-top: 20px; -} - -.tsd-navigation.secondary.tsd-navigation--toolbar-hide { - max-height: calc(100vh - 1rem); - top: 0.5rem; -} -.tsd-navigation.secondary > ul { - display: inline; - padding-right: 0.5rem; - transition: opacity 0.2s; -} -.tsd-navigation.secondary ul li a { - padding-left: 0; -} -.tsd-navigation.secondary ul li li a { - padding-left: 1.1rem; -} -.tsd-navigation.secondary ul li li li a { - padding-left: 2.2rem; -} -.tsd-navigation.secondary ul li li li li a { - padding-left: 3.3rem; -} -.tsd-navigation.secondary ul li li li li li a { - padding-left: 4.4rem; -} -.tsd-navigation.secondary ul li li li li li li a { - padding-left: 5.5rem; -} - -a.tsd-index-link { - margin: 0.25rem 0; - font-size: 1rem; - line-height: 1.25rem; - display: inline-flex; - align-items: center; -} -.tsd-accordion-summary > h1, -.tsd-accordion-summary > h2, -.tsd-accordion-summary > h3, -.tsd-accordion-summary > h4, -.tsd-accordion-summary > h5 { - display: inline-flex; - align-items: center; - vertical-align: middle; - margin-bottom: 0; - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; -} -.tsd-accordion-summary { - display: block; - cursor: pointer; -} -.tsd-accordion-summary > * { - margin-top: 0; - margin-bottom: 0; - padding-top: 0; - padding-bottom: 0; -} -.tsd-accordion-summary::-webkit-details-marker { - display: none; -} -.tsd-index-accordion .tsd-accordion-summary svg { - margin-right: 0.25rem; -} -.tsd-index-content > :not(:first-child) { - margin-top: 0.75rem; -} -.tsd-index-heading { - margin-top: 1.5rem; - margin-bottom: 0.75rem; -} - -.tsd-kind-icon { - margin-right: 0.5rem; - width: 1.25rem; - height: 1.25rem; - min-width: 1.25rem; - min-height: 1.25rem; -} -.tsd-kind-icon path { - transform-origin: center; - transform: scale(1.1); -} -.tsd-signature > .tsd-kind-icon { - margin-right: 0.8rem; -} - -@media (min-width: 1024px) { - .col-content { - margin: 2rem auto; - } - - .menu-sticky-wrap { - position: sticky; - height: calc(100vh - 2rem); - top: 4rem; - right: 0; - padding: 0 1.5rem; - padding-top: 1rem; - margin-top: 3rem; - transition: 0.3s ease-in-out; - transition-property: top, padding-top, padding, height; - overflow-y: auto; - } - .col-menu { - border-left: 1px solid var(--color-accent); - } - .col-menu--hide { - top: 1rem; - } - .col-menu .tsd-navigation:not(:last-child) { - padding-bottom: 1.75rem; - } -} - -.tsd-panel { - margin-bottom: 2.5rem; -} -.tsd-panel.tsd-member { - margin-bottom: 4rem; -} -.tsd-panel:empty { - display: none; -} -.tsd-panel > h1, -.tsd-panel > h2, -.tsd-panel > h3 { - margin: 1.5rem -1.5rem 0.75rem -1.5rem; - padding: 0 1.5rem 0.75rem 1.5rem; -} -.tsd-panel > h1.tsd-before-signature, -.tsd-panel > h2.tsd-before-signature, -.tsd-panel > h3.tsd-before-signature { - margin-bottom: 0; - border-bottom: none; -} - -.tsd-panel-group { - margin: 4rem 0; -} -.tsd-panel-group.tsd-index-group { - margin: 2rem 0; -} -.tsd-panel-group.tsd-index-group details { - margin: 2rem 0; -} - -#tsd-search { - transition: background-color 0.2s; -} -#tsd-search .title { - position: relative; - z-index: 2; -} -#tsd-search .field { - position: absolute; - left: 0; - top: 0; - right: 2.5rem; - height: 100%; -} -#tsd-search .field input { - box-sizing: border-box; - position: relative; - top: -50px; - z-index: 1; - width: 100%; - padding: 0 10px; - opacity: 0; - outline: 0; - border: 0; - background: transparent; - color: var(--color-text); -} -#tsd-search .field label { - position: absolute; - overflow: hidden; - right: -40px; -} -#tsd-search .field input, -#tsd-search .title { - transition: opacity 0.2s; -} -#tsd-search .results { - position: absolute; - visibility: hidden; - top: 40px; - width: 100%; - margin: 0; - padding: 0; - list-style: none; - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); -} -#tsd-search .results li { - padding: 0 10px; - background-color: var(--color-background); -} -#tsd-search .results li:nth-child(even) { - background-color: var(--color-background-secondary); -} -#tsd-search .results li.state { - display: none; -} -#tsd-search .results li.current, -#tsd-search .results li:hover { - background-color: var(--color-accent); -} -#tsd-search .results a { - display: block; -} -#tsd-search .results a:before { - top: 10px; -} -#tsd-search .results span.parent { - color: var(--color-text-aside); - font-weight: normal; -} -#tsd-search.has-focus { - background-color: var(--color-accent); -} -#tsd-search.has-focus .field input { - top: 0; - opacity: 1; -} -#tsd-search.has-focus .title { - z-index: 0; - opacity: 0; -} -#tsd-search.has-focus .results { - visibility: visible; -} -#tsd-search.loading .results li.state.loading { - display: block; -} -#tsd-search.failure .results li.state.failure { - display: block; -} - -.tsd-signature { - margin: 0 0 1rem 0; - padding: 1rem 0.5rem; - border: 1px solid var(--color-accent); - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - font-size: 14px; - overflow-x: auto; -} - -.tsd-signature-symbol { - color: var(--color-text-aside); - font-weight: normal; -} - -.tsd-signature-type { - font-style: italic; - font-weight: normal; -} - -.tsd-signatures { - padding: 0; - margin: 0 0 1em 0; - list-style-type: none; -} -.tsd-signatures .tsd-signature { - margin: 0; - border-color: var(--color-accent); - border-width: 1px 0; - transition: background-color 0.1s; -} -.tsd-description .tsd-signatures .tsd-signature { - border-width: 1px; -} - -ul.tsd-parameter-list, -ul.tsd-type-parameter-list { - list-style: square; - margin: 0; - padding-left: 20px; -} -ul.tsd-parameter-list > li.tsd-parameter-signature, -ul.tsd-type-parameter-list > li.tsd-parameter-signature { - list-style: none; - margin-left: -20px; -} -ul.tsd-parameter-list h5, -ul.tsd-type-parameter-list h5 { - font-size: 16px; - margin: 1em 0 0.5em 0; -} -.tsd-sources { - margin-top: 1rem; - font-size: 0.875em; -} -.tsd-sources a { - color: var(--color-text-aside); - text-decoration: underline; -} -.tsd-sources ul { - list-style: none; - padding: 0; -} - -.tsd-page-toolbar { - position: fixed; - z-index: 1; - top: 0; - left: 0; - width: 100%; - color: var(--color-text); - background: var(--color-background-secondary); - border-bottom: 1px var(--color-accent) solid; - transition: transform 0.3s ease-in-out; - margin: 0 auto; -} -.tsd-page-toolbar a { - color: var(--color-text); - text-decoration: none; -} -.tsd-page-toolbar a.title { - font-weight: bold; -} -.tsd-page-toolbar a.title:hover { - text-decoration: underline; -} -.tsd-page-toolbar .tsd-toolbar-contents { - display: flex; - justify-content: space-between; - height: 2.5rem; -} -.tsd-page-toolbar .table-cell { - position: relative; - white-space: nowrap; - line-height: 40px; -} -.tsd-page-toolbar .table-cell:first-child { - width: 100%; -} - -.tsd-page-toolbar--hide { - transform: translateY(-100%); -} - -.tsd-widget { - display: inline-block; - overflow: hidden; - opacity: 0.8; - height: 40px; - transition: opacity 0.1s, background-color 0.2s; - vertical-align: bottom; - cursor: pointer; -} -.tsd-widget:hover { - opacity: 0.9; -} -.tsd-widget.active { - opacity: 1; - background-color: var(--color-accent); -} -.tsd-widget.no-caption { - width: 40px; -} -.tsd-widget.no-caption:before { - margin: 0; -} - -.tsd-widget.options, -.tsd-widget.menu { - display: none; -} -@media (max-width: 1024px) { - .tsd-widget.options, - .tsd-widget.menu { - display: inline-block; - } -} -input[type="checkbox"] + .tsd-widget:before { - background-position: -120px 0; -} -input[type="checkbox"]:checked + .tsd-widget:before { - background-position: -160px 0; -} - -img { - max-width: 100%; -} - -.tsd-anchor-icon { - display: inline-flex; - align-items: center; - margin-left: 0.5rem; - vertical-align: middle; - color: var(--color-text); -} - -.tsd-anchor-icon svg { - width: 1em; - height: 1em; - visibility: hidden; -} - -.tsd-anchor-link:hover > .tsd-anchor-icon svg { - visibility: visible; -} - -.deprecated { - text-decoration: line-through; -} - -* { - scrollbar-width: thin; - scrollbar-color: var(--color-accent) var(--color-icon-background); -} - -*::-webkit-scrollbar { - width: 0.75rem; -} - -*::-webkit-scrollbar-track { - background: var(--color-icon-background); -} - -*::-webkit-scrollbar-thumb { - background-color: var(--color-accent); - border-radius: 999rem; - border: 0.25rem solid var(--color-icon-background); -} diff --git a/website/static/api/aptos/assets/widgets.png b/website/static/api/aptos/assets/widgets.png deleted file mode 100644 index c738053..0000000 Binary files a/website/static/api/aptos/assets/widgets.png and /dev/null differ diff --git a/website/static/api/aptos/assets/widgets@2x.png b/website/static/api/aptos/assets/widgets@2x.png deleted file mode 100644 index 4bbbd57..0000000 Binary files a/website/static/api/aptos/assets/widgets@2x.png and /dev/null differ diff --git a/website/static/api/aptos/classes/AggregatorAccount.html b/website/static/api/aptos/classes/AggregatorAccount.html deleted file mode 100644 index 191a1a4..0000000 --- a/website/static/api/aptos/classes/AggregatorAccount.html +++ /dev/null @@ -1,295 +0,0 @@ -AggregatorAccount | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class AggregatorAccount

-
-

Hierarchy

-
    -
  • AggregatorAccount
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      address: MaybeHexString
    • -
    • -
      switchboardAddress: MaybeHexString
    • -
    • -
      coinType: string = "0x1::aptos_coin::AptosCoin"
    -

    Returns AggregatorAccount

-
-

Properties

-
- -
address: MaybeHexString
-
- -
client: AptosClient
-
- -
coinType: string = "0x1::aptos_coin::AptosCoin"
-
- -
switchboardAddress: MaybeHexString
-
-

Methods

-
- -
-
- -
-
- -
    - -
  • -

    Returns Promise<any>

-
- -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      account: AptosAccount
    -

    Returns Promise<string>

-
- -
    - -
  • -

    Returns TransactionPayload

-
- -
-
- -
-
- -
-
- -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      value: Big
    • -
    • -
      aggregator: any
    -

    Returns Promise<boolean>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/AptosDecimal.html b/website/static/api/aptos/classes/AptosDecimal.html deleted file mode 100644 index 3b568fd..0000000 --- a/website/static/api/aptos/classes/AptosDecimal.html +++ /dev/null @@ -1,158 +0,0 @@ -AptosDecimal | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class AptosDecimal

-
-

Hierarchy

-
    -
  • AptosDecimal
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      mantissa: string
    • -
    • -
      scale: number
    • -
    • -
      neg: boolean
    -

    Returns AptosDecimal

-
-

Properties

-
- -
mantissa: string
-
- -
neg: boolean
-
- -
scale: number
-
-

Methods

-
- -
-
- -
-
- -
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/AptosEvent.html b/website/static/api/aptos/classes/AptosEvent.html deleted file mode 100644 index 5a8855d..0000000 --- a/website/static/api/aptos/classes/AptosEvent.html +++ /dev/null @@ -1,186 +0,0 @@ -AptosEvent | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class AptosEvent

-
-

Poll Events on Aptos

- -

Note

uncleared setTimeout calls will keep processes from ending organically (SIGTERM is needed)

-
-
-

Hierarchy

-
    -
  • AptosEvent
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      eventHandlerOwner: HexString
    • -
    • -
      eventOwnerStruct: string
    • -
    • -
      eventHandlerName: string
    • -
    • -
      pollIntervalMs: number = 1000
    -

    Returns AptosEvent

-
-

Properties

-
- -
client: AptosClient
-
- -
eventHandlerName: string
-
- -
eventHandlerOwner: HexString
-
- -
eventOwnerStruct: string
-
- -
intervalId?: Timer
-
- -
pollIntervalMs: number = 1000
-
-

Methods

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      callback: EventCallback
    • -
    • -
      Optional errorHandler: ((error: unknown) => void)
      -
        -
      • -
          -
        • (error: unknown): void
        • -
        • -
          -

          Parameters

          -
            -
          • -
            error: unknown
          -

          Returns void

    -

    Returns Promise<Timer>

-
- -
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/CrankAccount.html b/website/static/api/aptos/classes/CrankAccount.html deleted file mode 100644 index 9a17cfd..0000000 --- a/website/static/api/aptos/classes/CrankAccount.html +++ /dev/null @@ -1,219 +0,0 @@ -CrankAccount | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class CrankAccount

-
-

Hierarchy

-
    -
  • CrankAccount
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      address: MaybeHexString
    • -
    • -
      switchboardAddress: MaybeHexString
    • -
    • -
      coinType: string = "0x1::aptos_coin::AptosCoin"
    -

    Returns CrankAccount

-
-

Properties

-
- -
address: MaybeHexString
-
- -
client: AptosClient
-
- -
coinType: string = "0x1::aptos_coin::AptosCoin"
-
- -
switchboardAddress: MaybeHexString
-
-

Methods

-
- -
    - -
  • -

    Returns Promise<any>

-
- -
    - -
  • -

    Pop an aggregator off the Crank

    -
    -
    -

    Parameters

    -
      -
    • -
      account: AptosAccount
    -

    Returns Promise<string>

-
- -
    - -
  • -

    Push an aggregator to a Crank

    -
    -
    -

    Parameters

    -
    -

    Returns Promise<string>

-
- -
-
- -
    - -
  • -

    Initialize a Crank

    -
    -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      account: AptosAccount
      -

      account that will be the authority of the Crank

      -
    • -
    • -
      params: CrankInitParams
      -

      CrankInitParams initialization params

      -
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns Promise<[CrankAccount, string]>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/JobAccount.html b/website/static/api/aptos/classes/JobAccount.html deleted file mode 100644 index f2e29da..0000000 --- a/website/static/api/aptos/classes/JobAccount.html +++ /dev/null @@ -1,188 +0,0 @@ -JobAccount | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class JobAccount

-
-

Hierarchy

-
    -
  • JobAccount
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      address: MaybeHexString
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns JobAccount

-
-

Properties

-
- -
address: MaybeHexString
-
- -
client: AptosClient
-
- -
switchboardAddress: MaybeHexString
-
-

Methods

-
- -
    - -
  • -

    Returns Promise<any>

-
- -
-
- -
    - -
  • -

    Initialize a JobAccount

    -
    -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      account: AptosAccount
    • -
    • -
      params: JobInitParams
      -

      JobInitParams initialization params

      -
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns Promise<[JobAccount, string]>

-
- -
    - -
  • -

    Initialize a JobAccount

    -
    -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      account: MaybeHexString
    • -
    • -
      params: JobInitParams
      -

      JobInitParams initialization params

      -
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns [JobAccount, TransactionPayload]

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/LeaseAccount.html b/website/static/api/aptos/classes/LeaseAccount.html deleted file mode 100644 index fae7437..0000000 --- a/website/static/api/aptos/classes/LeaseAccount.html +++ /dev/null @@ -1,244 +0,0 @@ -LeaseAccount | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class LeaseAccount

-
-

Hierarchy

-
    -
  • LeaseAccount
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      address: MaybeHexString
    • -
    • -
      switchboardAddress: MaybeHexString
    • -
    • -
      coinType: string = "0x1::aptos_coin::AptosCoin"
    -

    Returns LeaseAccount

-
-

Properties

-
- -
address: MaybeHexString
-
- -
client: AptosClient
-
- -
coinType: string = "0x1::aptos_coin::AptosCoin"
-
- -
switchboardAddress: MaybeHexString
-
-

Methods

-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
    - -
  • -

    Initialize a LeaseAccount

    -
    -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      account: AptosAccount
      -

      account that will be the authority of the LeaseAccount

      -
    • -
    • -
      params: LeaseInitParams
      -

      LeaseInitParams initialization params

      -
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns Promise<[LeaseAccount, string]>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleAccount.html b/website/static/api/aptos/classes/OracleAccount.html deleted file mode 100644 index d7c75e9..0000000 --- a/website/static/api/aptos/classes/OracleAccount.html +++ /dev/null @@ -1,179 +0,0 @@ -OracleAccount | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class OracleAccount

-
-

Hierarchy

-
    -
  • OracleAccount
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      address: MaybeHexString
    • -
    • -
      switchboardAddress: MaybeHexString
    • -
    • -
      coinType: string = "0x1::aptos_coin::AptosCoin"
    -

    Returns OracleAccount

-
-

Properties

-
- -
address: MaybeHexString
-
- -
client: AptosClient
-
- -
coinType: string = "0x1::aptos_coin::AptosCoin"
-
- -
switchboardAddress: MaybeHexString
-
-

Methods

-
- -
    - -
  • -

    Oracle Heartbeat Action

    -
    -
    -

    Parameters

    -
      -
    • -
      account: AptosAccount
    -

    Returns Promise<string>

-
- -
    - -
  • -

    Returns Promise<any>

-
- -
    - -
  • -

    Initialize a Oracle

    -
    -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      account: AptosAccount
    • -
    • -
      params: OracleInitParams
      -

      Oracle initialization params

      -
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns Promise<[OracleAccount, string]>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob-1.html b/website/static/api/aptos/classes/OracleJob-1.html deleted file mode 100644 index aab5c1e..0000000 --- a/website/static/api/aptos/classes/OracleJob-1.html +++ /dev/null @@ -1,333 +0,0 @@ -OracleJob | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class OracleJob

-
-

Represents an OracleJob.

-
-
-

Hierarchy

-
    -
  • OracleJob
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new OracleJob.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IOracleJob
      -

      Properties to set

      -
    -

    Returns OracleJob

-
-

Properties

-
- -
tasks: ITask[]
-

OracleJob tasks.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this OracleJob to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new OracleJob instance using the specified properties.

    - -

    Returns

    OracleJob instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IOracleJob
      -

      Properties to set

      -
    -

    Returns OracleJob

-
- -
    - -
  • -

    Decodes an OracleJob message from the specified reader or buffer.

    - -

    Returns

    OracleJob

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns OracleJob

-
- -
    - -
  • -

    Decodes an OracleJob message from the specified reader or buffer, length delimited.

    - -

    Returns

    OracleJob

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns OracleJob

-
- -
    - -
  • -

    Encodes the specified OracleJob message. Does not implicitly OracleJob.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IOracleJob
      -

      OracleJob message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified OracleJob message, length delimited. Does not implicitly OracleJob.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IOracleJob
      -

      OracleJob message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates an OracleJob message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    OracleJob

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns OracleJob

-
- -
    - -
  • -

    Creates a plain object from an OracleJob message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: OracleJob
      -

      OracleJob

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies an OracleJob message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.AddTask.html b/website/static/api/aptos/classes/OracleJob.AddTask.html deleted file mode 100644 index 5a881a6..0000000 --- a/website/static/api/aptos/classes/OracleJob.AddTask.html +++ /dev/null @@ -1,372 +0,0 @@ -AddTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents an AddTask.

-
-
-

Hierarchy

-
    -
  • AddTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new AddTask.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IAddTask
      -

      Properties to set

      -
    -

    Returns AddTask

-
-

Properties

-
- -
Addition?: "aggregatorPubkey" | "big" | "scalar" | "job"
-

AddTask Addition.

-
-
- -
aggregatorPubkey?: string
-

AddTask aggregatorPubkey.

-
-
- -
big?: string
-

AddTask big.

-
-
- - -

AddTask job.

-
-
- -
scalar?: number
-

AddTask scalar.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this AddTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new AddTask instance using the specified properties.

    - -

    Returns

    AddTask instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IAddTask
      -

      Properties to set

      -
    -

    Returns AddTask

-
- -
    - -
  • -

    Decodes an AddTask message from the specified reader or buffer.

    - -

    Returns

    AddTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns AddTask

-
- -
    - -
  • -

    Decodes an AddTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    AddTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns AddTask

-
- -
    - -
  • -

    Encodes the specified AddTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IAddTask
      -

      AddTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified AddTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IAddTask
      -

      AddTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates an AddTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    AddTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns AddTask

-
- -
    - -
  • -

    Creates a plain object from an AddTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: AddTask
      -

      AddTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies an AddTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.AnchorFetchTask.html b/website/static/api/aptos/classes/OracleJob.AnchorFetchTask.html deleted file mode 100644 index a9bcbfe..0000000 --- a/website/static/api/aptos/classes/OracleJob.AnchorFetchTask.html +++ /dev/null @@ -1,343 +0,0 @@ -AnchorFetchTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents an AnchorFetchTask.

-
-
-

Hierarchy

-
    -
  • AnchorFetchTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
accountAddress: string
-

AnchorFetchTask accountAddress.

-
-
- -
programId: string
-

AnchorFetchTask programId.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this AnchorFetchTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new AnchorFetchTask instance using the specified properties.

    - -

    Returns

    AnchorFetchTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns AnchorFetchTask

-
- -
    - -
  • -

    Decodes an AnchorFetchTask message from the specified reader or buffer.

    - -

    Returns

    AnchorFetchTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns AnchorFetchTask

-
- -
    - -
  • -

    Decodes an AnchorFetchTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    AnchorFetchTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns AnchorFetchTask

-
- -
    - -
  • -

    Encodes the specified AnchorFetchTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IAnchorFetchTask
      -

      AnchorFetchTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified AnchorFetchTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IAnchorFetchTask
      -

      AnchorFetchTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates an AnchorFetchTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    AnchorFetchTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns AnchorFetchTask

-
- -
    - -
  • -

    Creates a plain object from an AnchorFetchTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: AnchorFetchTask
      -

      AnchorFetchTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies an AnchorFetchTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.BufferLayoutParseTask-1.html b/website/static/api/aptos/classes/OracleJob.BufferLayoutParseTask-1.html deleted file mode 100644 index 36db772..0000000 --- a/website/static/api/aptos/classes/OracleJob.BufferLayoutParseTask-1.html +++ /dev/null @@ -1,354 +0,0 @@ -BufferLayoutParseTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class BufferLayoutParseTask

-
-

Represents a BufferLayoutParseTask.

-
-
-

Hierarchy

-
    -
  • BufferLayoutParseTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
endian: Endian
-

BufferLayoutParseTask endian.

-
-
- -
offset: number
-

BufferLayoutParseTask offset.

-
-
- - -

BufferLayoutParseTask type.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this BufferLayoutParseTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
-
- -
    - -
  • -

    Decodes a BufferLayoutParseTask message from the specified reader or buffer.

    - -

    Returns

    BufferLayoutParseTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns BufferLayoutParseTask

-
- -
    - -
  • -

    Decodes a BufferLayoutParseTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    BufferLayoutParseTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns BufferLayoutParseTask

-
- -
    - -
  • -

    Encodes the specified BufferLayoutParseTask message. Does not implicitly OracleJob.BufferLayoutParseTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IBufferLayoutParseTask
      -

      BufferLayoutParseTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified BufferLayoutParseTask message, length delimited. Does not implicitly OracleJob.BufferLayoutParseTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IBufferLayoutParseTask
      -

      BufferLayoutParseTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a BufferLayoutParseTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    BufferLayoutParseTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns BufferLayoutParseTask

-
- -
    - -
  • -

    Creates a plain object from a BufferLayoutParseTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: BufferLayoutParseTask
      -

      BufferLayoutParseTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a BufferLayoutParseTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.CacheTask-1.html b/website/static/api/aptos/classes/OracleJob.CacheTask-1.html deleted file mode 100644 index 0739887..0000000 --- a/website/static/api/aptos/classes/OracleJob.CacheTask-1.html +++ /dev/null @@ -1,334 +0,0 @@ -CacheTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a CacheTask.

-
-
-

Hierarchy

-
    -
  • CacheTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new CacheTask.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: ICacheTask
      -

      Properties to set

      -
    -

    Returns CacheTask

-
-

Properties

-
- -
cacheItems: ICacheItem[]
-

CacheTask cacheItems.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this CacheTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new CacheTask instance using the specified properties.

    - -

    Returns

    CacheTask instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: ICacheTask
      -

      Properties to set

      -
    -

    Returns CacheTask

-
- -
    - -
  • -

    Decodes a CacheTask message from the specified reader or buffer.

    - -

    Returns

    CacheTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns CacheTask

-
- -
    - -
  • -

    Decodes a CacheTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    CacheTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns CacheTask

-
- -
    - -
  • -

    Encodes the specified CacheTask message. Does not implicitly OracleJob.CacheTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ICacheTask
      -

      CacheTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified CacheTask message, length delimited. Does not implicitly OracleJob.CacheTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ICacheTask
      -

      CacheTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a CacheTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    CacheTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns CacheTask

-
- -
    - -
  • -

    Creates a plain object from a CacheTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: CacheTask
      -

      CacheTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a CacheTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.CacheTask.CacheItem.html b/website/static/api/aptos/classes/OracleJob.CacheTask.CacheItem.html deleted file mode 100644 index 86e3874..0000000 --- a/website/static/api/aptos/classes/OracleJob.CacheTask.CacheItem.html +++ /dev/null @@ -1,344 +0,0 @@ -CacheItem | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a CacheItem.

-
-
-

Hierarchy

-
    -
  • CacheItem
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new CacheItem.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: ICacheItem
      -

      Properties to set

      -
    -

    Returns CacheItem

-
-

Properties

-
- - -

CacheItem job.

-
-
- -
variableName: string
-

CacheItem variableName.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this CacheItem to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new CacheItem instance using the specified properties.

    - -

    Returns

    CacheItem instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: ICacheItem
      -

      Properties to set

      -
    -

    Returns CacheItem

-
- -
    - -
  • -

    Decodes a CacheItem message from the specified reader or buffer.

    - -

    Returns

    CacheItem

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns CacheItem

-
- -
    - -
  • -

    Decodes a CacheItem message from the specified reader or buffer, length delimited.

    - -

    Returns

    CacheItem

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns CacheItem

-
- -
    - -
  • -

    Encodes the specified CacheItem message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ICacheItem
      -

      CacheItem message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified CacheItem message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ICacheItem
      -

      CacheItem message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a CacheItem message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    CacheItem

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns CacheItem

-
- -
    - -
  • -

    Creates a plain object from a CacheItem message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: CacheItem
      -

      CacheItem

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a CacheItem message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.ConditionalTask.html b/website/static/api/aptos/classes/OracleJob.ConditionalTask.html deleted file mode 100644 index 9da7fee..0000000 --- a/website/static/api/aptos/classes/OracleJob.ConditionalTask.html +++ /dev/null @@ -1,343 +0,0 @@ -ConditionalTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a ConditionalTask.

-
-
-

Hierarchy

-
    -
  • ConditionalTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
attempt: ITask[]
-

ConditionalTask attempt.

-
-
- -
onFailure: ITask[]
-

ConditionalTask onFailure.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this ConditionalTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new ConditionalTask instance using the specified properties.

    - -

    Returns

    ConditionalTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns ConditionalTask

-
- -
    - -
  • -

    Decodes a ConditionalTask message from the specified reader or buffer.

    - -

    Returns

    ConditionalTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns ConditionalTask

-
- -
    - -
  • -

    Decodes a ConditionalTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    ConditionalTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns ConditionalTask

-
- -
    - -
  • -

    Encodes the specified ConditionalTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IConditionalTask
      -

      ConditionalTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified ConditionalTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IConditionalTask
      -

      ConditionalTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a ConditionalTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    ConditionalTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns ConditionalTask

-
- -
    - -
  • -

    Creates a plain object from a ConditionalTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ConditionalTask
      -

      ConditionalTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a ConditionalTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.CronParseTask-1.html b/website/static/api/aptos/classes/OracleJob.CronParseTask-1.html deleted file mode 100644 index 4aae5c3..0000000 --- a/website/static/api/aptos/classes/OracleJob.CronParseTask-1.html +++ /dev/null @@ -1,354 +0,0 @@ -CronParseTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a CronParseTask.

-
-
-

Hierarchy

-
    -
  • CronParseTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new CronParseTask.

    -
    -
    -

    Parameters

    -
    -

    Returns CronParseTask

-
-

Properties

-
- -
clock: ClockType
-

CronParseTask clock.

-
-
- -
clockOffset: number
-

CronParseTask clockOffset.

-
-
- -
cronPattern: string
-

CronParseTask cronPattern.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this CronParseTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new CronParseTask instance using the specified properties.

    - -

    Returns

    CronParseTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns CronParseTask

-
- -
    - -
  • -

    Decodes a CronParseTask message from the specified reader or buffer.

    - -

    Returns

    CronParseTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns CronParseTask

-
- -
    - -
  • -

    Decodes a CronParseTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    CronParseTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns CronParseTask

-
- -
    - -
  • -

    Encodes the specified CronParseTask message. Does not implicitly OracleJob.CronParseTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ICronParseTask
      -

      CronParseTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified CronParseTask message, length delimited. Does not implicitly OracleJob.CronParseTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ICronParseTask
      -

      CronParseTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a CronParseTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    CronParseTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns CronParseTask

-
- -
    - -
  • -

    Creates a plain object from a CronParseTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: CronParseTask
      -

      CronParseTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a CronParseTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.DefiKingdomsTask-1.html b/website/static/api/aptos/classes/OracleJob.DefiKingdomsTask-1.html deleted file mode 100644 index 9893e82..0000000 --- a/website/static/api/aptos/classes/OracleJob.DefiKingdomsTask-1.html +++ /dev/null @@ -1,354 +0,0 @@ -DefiKingdomsTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a DefiKingdomsTask.

-
-
-

Hierarchy

-
    -
  • DefiKingdomsTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
inToken?: IToken
-

DefiKingdomsTask inToken.

-
-
- -
outToken?: IToken
-

DefiKingdomsTask outToken.

-
-
- -
provider: string
-

DefiKingdomsTask provider.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this DefiKingdomsTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new DefiKingdomsTask instance using the specified properties.

    - -

    Returns

    DefiKingdomsTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns DefiKingdomsTask

-
- -
    - -
  • -

    Decodes a DefiKingdomsTask message from the specified reader or buffer.

    - -

    Returns

    DefiKingdomsTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns DefiKingdomsTask

-
- -
    - -
  • -

    Decodes a DefiKingdomsTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    DefiKingdomsTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns DefiKingdomsTask

-
- -
    - -
  • -

    Encodes the specified DefiKingdomsTask message. Does not implicitly OracleJob.DefiKingdomsTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IDefiKingdomsTask
      -

      DefiKingdomsTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified DefiKingdomsTask message, length delimited. Does not implicitly OracleJob.DefiKingdomsTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IDefiKingdomsTask
      -

      DefiKingdomsTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a DefiKingdomsTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    DefiKingdomsTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns DefiKingdomsTask

-
- -
    - -
  • -

    Creates a plain object from a DefiKingdomsTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: DefiKingdomsTask
      -

      DefiKingdomsTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a DefiKingdomsTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.DefiKingdomsTask.Token.html b/website/static/api/aptos/classes/OracleJob.DefiKingdomsTask.Token.html deleted file mode 100644 index ec00332..0000000 --- a/website/static/api/aptos/classes/OracleJob.DefiKingdomsTask.Token.html +++ /dev/null @@ -1,344 +0,0 @@ -Token | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a Token.

-
-
-

Hierarchy

-
    -
  • Token
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new Token.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IToken
      -

      Properties to set

      -
    -

    Returns Token

-
-

Properties

-
- -
address: string
-

Token address.

-
-
- -
decimals: number
-

Token decimals.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this Token to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new Token instance using the specified properties.

    - -

    Returns

    Token instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IToken
      -

      Properties to set

      -
    -

    Returns Token

-
- -
    - -
  • -

    Decodes a Token message from the specified reader or buffer.

    - -

    Returns

    Token

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns Token

-
- -
    - -
  • -

    Decodes a Token message from the specified reader or buffer, length delimited.

    - -

    Returns

    Token

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns Token

-
- -
    - -
  • -

    Encodes the specified Token message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IToken
      -

      Token message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified Token message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IToken
      -

      Token message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a Token message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    Token

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns Token

-
- -
    - -
  • -

    Creates a plain object from a Token message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: Token
      -

      Token

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a Token message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.DivideTask.html b/website/static/api/aptos/classes/OracleJob.DivideTask.html deleted file mode 100644 index 6d0bb47..0000000 --- a/website/static/api/aptos/classes/OracleJob.DivideTask.html +++ /dev/null @@ -1,372 +0,0 @@ -DivideTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a DivideTask.

-
-
-

Hierarchy

-
    -
  • DivideTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new DivideTask.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IDivideTask
      -

      Properties to set

      -
    -

    Returns DivideTask

-
-

Properties

-
- -
Denominator?: "aggregatorPubkey" | "big" | "scalar" | "job"
-

DivideTask Denominator.

-
-
- -
aggregatorPubkey?: string
-

DivideTask aggregatorPubkey.

-
-
- -
big?: string
-

DivideTask big.

-
-
- - -

DivideTask job.

-
-
- -
scalar?: number
-

DivideTask scalar.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this DivideTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new DivideTask instance using the specified properties.

    - -

    Returns

    DivideTask instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IDivideTask
      -

      Properties to set

      -
    -

    Returns DivideTask

-
- -
    - -
  • -

    Decodes a DivideTask message from the specified reader or buffer.

    - -

    Returns

    DivideTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns DivideTask

-
- -
    - -
  • -

    Decodes a DivideTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    DivideTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns DivideTask

-
- -
    - -
  • -

    Encodes the specified DivideTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IDivideTask
      -

      DivideTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified DivideTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IDivideTask
      -

      DivideTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a DivideTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    DivideTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns DivideTask

-
- -
    - -
  • -

    Creates a plain object from a DivideTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: DivideTask
      -

      DivideTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a DivideTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.HttpTask-1.html b/website/static/api/aptos/classes/OracleJob.HttpTask-1.html deleted file mode 100644 index bfb0ee1..0000000 --- a/website/static/api/aptos/classes/OracleJob.HttpTask-1.html +++ /dev/null @@ -1,364 +0,0 @@ -HttpTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a HttpTask.

-
-
-

Hierarchy

-
    -
  • HttpTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new HttpTask.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IHttpTask
      -

      Properties to set

      -
    -

    Returns HttpTask

-
-

Properties

-
- -
body: string
-

HttpTask body.

-
-
- -
headers: IHeader[]
-

HttpTask headers.

-
-
- -
method: Method
-

HttpTask method.

-
-
- -
url: string
-

HttpTask url.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this HttpTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new HttpTask instance using the specified properties.

    - -

    Returns

    HttpTask instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IHttpTask
      -

      Properties to set

      -
    -

    Returns HttpTask

-
- -
    - -
  • -

    Decodes a HttpTask message from the specified reader or buffer.

    - -

    Returns

    HttpTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns HttpTask

-
- -
    - -
  • -

    Decodes a HttpTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    HttpTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns HttpTask

-
- -
    - -
  • -

    Encodes the specified HttpTask message. Does not implicitly OracleJob.HttpTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IHttpTask
      -

      HttpTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified HttpTask message, length delimited. Does not implicitly OracleJob.HttpTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IHttpTask
      -

      HttpTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a HttpTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    HttpTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns HttpTask

-
- -
    - -
  • -

    Creates a plain object from a HttpTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: HttpTask
      -

      HttpTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a HttpTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.HttpTask.Header.html b/website/static/api/aptos/classes/OracleJob.HttpTask.Header.html deleted file mode 100644 index 7727f4f..0000000 --- a/website/static/api/aptos/classes/OracleJob.HttpTask.Header.html +++ /dev/null @@ -1,344 +0,0 @@ -Header | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a Header.

-
-
-

Hierarchy

-
    -
  • Header
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new Header.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IHeader
      -

      Properties to set

      -
    -

    Returns Header

-
-

Properties

-
- -
key: string
-

Header key.

-
-
- -
value: string
-

Header value.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this Header to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new Header instance using the specified properties.

    - -

    Returns

    Header instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IHeader
      -

      Properties to set

      -
    -

    Returns Header

-
- -
    - -
  • -

    Decodes a Header message from the specified reader or buffer.

    - -

    Returns

    Header

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns Header

-
- -
    - -
  • -

    Decodes a Header message from the specified reader or buffer, length delimited.

    - -

    Returns

    Header

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns Header

-
- -
    - -
  • -

    Encodes the specified Header message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IHeader
      -

      Header message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified Header message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IHeader
      -

      Header message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a Header message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    Header

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns Header

-
- -
    - -
  • -

    Creates a plain object from a Header message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: Header
      -

      Header

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a Header message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.JsonParseTask-1.html b/website/static/api/aptos/classes/OracleJob.JsonParseTask-1.html deleted file mode 100644 index 94eeddd..0000000 --- a/website/static/api/aptos/classes/OracleJob.JsonParseTask-1.html +++ /dev/null @@ -1,344 +0,0 @@ -JsonParseTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a JsonParseTask.

-
-
-

Hierarchy

-
    -
  • JsonParseTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new JsonParseTask.

    -
    -
    -

    Parameters

    -
    -

    Returns JsonParseTask

-
-

Properties

-
- -
aggregationMethod: AggregationMethod
-

JsonParseTask aggregationMethod.

-
-
- -
path: string
-

JsonParseTask path.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this JsonParseTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new JsonParseTask instance using the specified properties.

    - -

    Returns

    JsonParseTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns JsonParseTask

-
- -
    - -
  • -

    Decodes a JsonParseTask message from the specified reader or buffer.

    - -

    Returns

    JsonParseTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns JsonParseTask

-
- -
    - -
  • -

    Decodes a JsonParseTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    JsonParseTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns JsonParseTask

-
- -
    - -
  • -

    Encodes the specified JsonParseTask message. Does not implicitly OracleJob.JsonParseTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IJsonParseTask
      -

      JsonParseTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified JsonParseTask message, length delimited. Does not implicitly OracleJob.JsonParseTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IJsonParseTask
      -

      JsonParseTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a JsonParseTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    JsonParseTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns JsonParseTask

-
- -
    - -
  • -

    Creates a plain object from a JsonParseTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: JsonParseTask
      -

      JsonParseTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a JsonParseTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.JupiterSwapTask.html b/website/static/api/aptos/classes/OracleJob.JupiterSwapTask.html deleted file mode 100644 index f01e076..0000000 --- a/website/static/api/aptos/classes/OracleJob.JupiterSwapTask.html +++ /dev/null @@ -1,353 +0,0 @@ -JupiterSwapTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a JupiterSwapTask.

-
-
-

Hierarchy

-
    -
  • JupiterSwapTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
baseAmount: number
-

JupiterSwapTask baseAmount.

-
-
- -
inTokenAddress: string
-

JupiterSwapTask inTokenAddress.

-
-
- -
outTokenAddress: string
-

JupiterSwapTask outTokenAddress.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this JupiterSwapTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new JupiterSwapTask instance using the specified properties.

    - -

    Returns

    JupiterSwapTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns JupiterSwapTask

-
- -
    - -
  • -

    Decodes a JupiterSwapTask message from the specified reader or buffer.

    - -

    Returns

    JupiterSwapTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns JupiterSwapTask

-
- -
    - -
  • -

    Decodes a JupiterSwapTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    JupiterSwapTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns JupiterSwapTask

-
- -
    - -
  • -

    Encodes the specified JupiterSwapTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IJupiterSwapTask
      -

      JupiterSwapTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified JupiterSwapTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IJupiterSwapTask
      -

      JupiterSwapTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a JupiterSwapTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    JupiterSwapTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns JupiterSwapTask

-
- -
    - -
  • -

    Creates a plain object from a JupiterSwapTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: JupiterSwapTask
      -

      JupiterSwapTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a JupiterSwapTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.LendingRateTask-1.html b/website/static/api/aptos/classes/OracleJob.LendingRateTask-1.html deleted file mode 100644 index 3b05cc6..0000000 --- a/website/static/api/aptos/classes/OracleJob.LendingRateTask-1.html +++ /dev/null @@ -1,354 +0,0 @@ -LendingRateTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a LendingRateTask.

-
-
-

Hierarchy

-
    -
  • LendingRateTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
assetMint: string
-

LendingRateTask assetMint.

-
-
- -
field: Field
-

LendingRateTask field.

-
-
- -
protocol: string
-

LendingRateTask protocol.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this LendingRateTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new LendingRateTask instance using the specified properties.

    - -

    Returns

    LendingRateTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns LendingRateTask

-
- -
    - -
  • -

    Decodes a LendingRateTask message from the specified reader or buffer.

    - -

    Returns

    LendingRateTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns LendingRateTask

-
- -
    - -
  • -

    Decodes a LendingRateTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    LendingRateTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns LendingRateTask

-
- -
    - -
  • -

    Encodes the specified LendingRateTask message. Does not implicitly OracleJob.LendingRateTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ILendingRateTask
      -

      LendingRateTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified LendingRateTask message, length delimited. Does not implicitly OracleJob.LendingRateTask.verify|verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ILendingRateTask
      -

      LendingRateTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a LendingRateTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    LendingRateTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns LendingRateTask

-
- -
    - -
  • -

    Creates a plain object from a LendingRateTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: LendingRateTask
      -

      LendingRateTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a LendingRateTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.LpExchangeRateTask.html b/website/static/api/aptos/classes/OracleJob.LpExchangeRateTask.html deleted file mode 100644 index 39e4c47..0000000 --- a/website/static/api/aptos/classes/OracleJob.LpExchangeRateTask.html +++ /dev/null @@ -1,412 +0,0 @@ -LpExchangeRateTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a LpExchangeRateTask.

-
-
-

Hierarchy

-
    -
  • LpExchangeRateTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
PoolAddress?: "mercurialPoolAddress" | "saberPoolAddress" | "orcaPoolAddress" | "raydiumPoolAddress" | "orcaPoolTokenMintAddress" | "portReserveAddress"
-

LpExchangeRateTask PoolAddress.

-
-
- -
inTokenAddress: string
-

LpExchangeRateTask inTokenAddress.

-
-
- -
mercurialPoolAddress?: string
-

LpExchangeRateTask mercurialPoolAddress.

-
-
- -
orcaPoolAddress?: string
-

LpExchangeRateTask orcaPoolAddress.

-
-
- -
orcaPoolTokenMintAddress?: string
-

LpExchangeRateTask orcaPoolTokenMintAddress.

-
-
- -
outTokenAddress: string
-

LpExchangeRateTask outTokenAddress.

-
-
- -
portReserveAddress?: string
-

LpExchangeRateTask portReserveAddress.

-
-
- -
raydiumPoolAddress?: string
-

LpExchangeRateTask raydiumPoolAddress.

-
-
- -
saberPoolAddress?: string
-

LpExchangeRateTask saberPoolAddress.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this LpExchangeRateTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new LpExchangeRateTask instance using the specified properties.

    - -

    Returns

    LpExchangeRateTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns LpExchangeRateTask

-
- -
    - -
  • -

    Decodes a LpExchangeRateTask message from the specified reader or buffer.

    - -

    Returns

    LpExchangeRateTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns LpExchangeRateTask

-
- -
    - -
  • -

    Decodes a LpExchangeRateTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    LpExchangeRateTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns LpExchangeRateTask

-
- -
    - -
  • -

    Encodes the specified LpExchangeRateTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ILpExchangeRateTask
      -

      LpExchangeRateTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified LpExchangeRateTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ILpExchangeRateTask
      -

      LpExchangeRateTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a LpExchangeRateTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    LpExchangeRateTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns LpExchangeRateTask

-
- -
    - -
  • -

    Creates a plain object from a LpExchangeRateTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: LpExchangeRateTask
      -

      LpExchangeRateTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a LpExchangeRateTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.LpTokenPriceTask.html b/website/static/api/aptos/classes/OracleJob.LpTokenPriceTask.html deleted file mode 100644 index 173fa4b..0000000 --- a/website/static/api/aptos/classes/OracleJob.LpTokenPriceTask.html +++ /dev/null @@ -1,402 +0,0 @@ -LpTokenPriceTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a LpTokenPriceTask.

-
-
-

Hierarchy

-
    -
  • LpTokenPriceTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
PoolAddress?: "mercurialPoolAddress" | "saberPoolAddress" | "orcaPoolAddress" | "raydiumPoolAddress"
-

LpTokenPriceTask PoolAddress.

-
-
- -
mercurialPoolAddress?: string
-

LpTokenPriceTask mercurialPoolAddress.

-
-
- -
orcaPoolAddress?: string
-

LpTokenPriceTask orcaPoolAddress.

-
-
- -
priceFeedAddresses: string[]
-

LpTokenPriceTask priceFeedAddresses.

-
-
- -
priceFeedJobs: IOracleJob[]
-

LpTokenPriceTask priceFeedJobs.

-
-
- -
raydiumPoolAddress?: string
-

LpTokenPriceTask raydiumPoolAddress.

-
-
- -
saberPoolAddress?: string
-

LpTokenPriceTask saberPoolAddress.

-
-
- -
useFairPrice: boolean
-

LpTokenPriceTask useFairPrice.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this LpTokenPriceTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new LpTokenPriceTask instance using the specified properties.

    - -

    Returns

    LpTokenPriceTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns LpTokenPriceTask

-
- -
    - -
  • -

    Decodes a LpTokenPriceTask message from the specified reader or buffer.

    - -

    Returns

    LpTokenPriceTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns LpTokenPriceTask

-
- -
    - -
  • -

    Decodes a LpTokenPriceTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    LpTokenPriceTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns LpTokenPriceTask

-
- -
    - -
  • -

    Encodes the specified LpTokenPriceTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ILpTokenPriceTask
      -

      LpTokenPriceTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified LpTokenPriceTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ILpTokenPriceTask
      -

      LpTokenPriceTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a LpTokenPriceTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    LpTokenPriceTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns LpTokenPriceTask

-
- -
    - -
  • -

    Creates a plain object from a LpTokenPriceTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: LpTokenPriceTask
      -

      LpTokenPriceTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a LpTokenPriceTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.MangoPerpMarketTask.html b/website/static/api/aptos/classes/OracleJob.MangoPerpMarketTask.html deleted file mode 100644 index c712434..0000000 --- a/website/static/api/aptos/classes/OracleJob.MangoPerpMarketTask.html +++ /dev/null @@ -1,333 +0,0 @@ -MangoPerpMarketTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a MangoPerpMarketTask.

-
-
-

Hierarchy

-
    -
  • MangoPerpMarketTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
perpMarketAddress: string
-

MangoPerpMarketTask perpMarketAddress.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this MangoPerpMarketTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
-
- -
    - -
  • -

    Decodes a MangoPerpMarketTask message from the specified reader or buffer.

    - -

    Returns

    MangoPerpMarketTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns MangoPerpMarketTask

-
- -
    - -
  • -

    Decodes a MangoPerpMarketTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    MangoPerpMarketTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns MangoPerpMarketTask

-
- -
    - -
  • -

    Encodes the specified MangoPerpMarketTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IMangoPerpMarketTask
      -

      MangoPerpMarketTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified MangoPerpMarketTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IMangoPerpMarketTask
      -

      MangoPerpMarketTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a MangoPerpMarketTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    MangoPerpMarketTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns MangoPerpMarketTask

-
- -
    - -
  • -

    Creates a plain object from a MangoPerpMarketTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: MangoPerpMarketTask
      -

      MangoPerpMarketTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a MangoPerpMarketTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.MarinadeStateTask.html b/website/static/api/aptos/classes/OracleJob.MarinadeStateTask.html deleted file mode 100644 index 6b3d6ac..0000000 --- a/website/static/api/aptos/classes/OracleJob.MarinadeStateTask.html +++ /dev/null @@ -1,318 +0,0 @@ -MarinadeStateTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a MarinadeStateTask.

-
-
-

Hierarchy

-
    -
  • MarinadeStateTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Methods

-
- -
    - -
  • -

    Converts this MarinadeStateTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new MarinadeStateTask instance using the specified properties.

    - -

    Returns

    MarinadeStateTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns MarinadeStateTask

-
- -
    - -
  • -

    Decodes a MarinadeStateTask message from the specified reader or buffer.

    - -

    Returns

    MarinadeStateTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns MarinadeStateTask

-
- -
    - -
  • -

    Decodes a MarinadeStateTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    MarinadeStateTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns MarinadeStateTask

-
- -
    - -
  • -

    Encodes the specified MarinadeStateTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IMarinadeStateTask
      -

      MarinadeStateTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified MarinadeStateTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IMarinadeStateTask
      -

      MarinadeStateTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a MarinadeStateTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    MarinadeStateTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns MarinadeStateTask

-
- -
    - -
  • -

    Creates a plain object from a MarinadeStateTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: MarinadeStateTask
      -

      MarinadeStateTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a MarinadeStateTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.MaxTask.html b/website/static/api/aptos/classes/OracleJob.MaxTask.html deleted file mode 100644 index 497d155..0000000 --- a/website/static/api/aptos/classes/OracleJob.MaxTask.html +++ /dev/null @@ -1,343 +0,0 @@ -MaxTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a MaxTask.

-
-
-

Hierarchy

-
    -
  • MaxTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new MaxTask.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IMaxTask
      -

      Properties to set

      -
    -

    Returns MaxTask

-
-

Properties

-
- -
jobs: IOracleJob[]
-

MaxTask jobs.

-
-
- -
tasks: ITask[]
-

MaxTask tasks.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this MaxTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new MaxTask instance using the specified properties.

    - -

    Returns

    MaxTask instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IMaxTask
      -

      Properties to set

      -
    -

    Returns MaxTask

-
- -
    - -
  • -

    Decodes a MaxTask message from the specified reader or buffer.

    - -

    Returns

    MaxTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns MaxTask

-
- -
    - -
  • -

    Decodes a MaxTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    MaxTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns MaxTask

-
- -
    - -
  • -

    Encodes the specified MaxTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IMaxTask
      -

      MaxTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified MaxTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IMaxTask
      -

      MaxTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a MaxTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    MaxTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns MaxTask

-
- -
    - -
  • -

    Creates a plain object from a MaxTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: MaxTask
      -

      MaxTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a MaxTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.MeanTask.html b/website/static/api/aptos/classes/OracleJob.MeanTask.html deleted file mode 100644 index 6da7f29..0000000 --- a/website/static/api/aptos/classes/OracleJob.MeanTask.html +++ /dev/null @@ -1,343 +0,0 @@ -MeanTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a MeanTask.

-
-
-

Hierarchy

-
    -
  • MeanTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new MeanTask.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IMeanTask
      -

      Properties to set

      -
    -

    Returns MeanTask

-
-

Properties

-
- -
jobs: IOracleJob[]
-

MeanTask jobs.

-
-
- -
tasks: ITask[]
-

MeanTask tasks.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this MeanTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new MeanTask instance using the specified properties.

    - -

    Returns

    MeanTask instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IMeanTask
      -

      Properties to set

      -
    -

    Returns MeanTask

-
- -
    - -
  • -

    Decodes a MeanTask message from the specified reader or buffer.

    - -

    Returns

    MeanTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns MeanTask

-
- -
    - -
  • -

    Decodes a MeanTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    MeanTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns MeanTask

-
- -
    - -
  • -

    Encodes the specified MeanTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IMeanTask
      -

      MeanTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified MeanTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IMeanTask
      -

      MeanTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a MeanTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    MeanTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns MeanTask

-
- -
    - -
  • -

    Creates a plain object from a MeanTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: MeanTask
      -

      MeanTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a MeanTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.MedianTask.html b/website/static/api/aptos/classes/OracleJob.MedianTask.html deleted file mode 100644 index b390885..0000000 --- a/website/static/api/aptos/classes/OracleJob.MedianTask.html +++ /dev/null @@ -1,353 +0,0 @@ -MedianTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a MedianTask.

-
-
-

Hierarchy

-
    -
  • MedianTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new MedianTask.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IMedianTask
      -

      Properties to set

      -
    -

    Returns MedianTask

-
-

Properties

-
- -
jobs: IOracleJob[]
-

MedianTask jobs.

-
-
- -
minSuccessfulRequired: number
-

MedianTask minSuccessfulRequired.

-
-
- -
tasks: ITask[]
-

MedianTask tasks.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this MedianTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new MedianTask instance using the specified properties.

    - -

    Returns

    MedianTask instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IMedianTask
      -

      Properties to set

      -
    -

    Returns MedianTask

-
- -
    - -
  • -

    Decodes a MedianTask message from the specified reader or buffer.

    - -

    Returns

    MedianTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns MedianTask

-
- -
    - -
  • -

    Decodes a MedianTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    MedianTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns MedianTask

-
- -
    - -
  • -

    Encodes the specified MedianTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IMedianTask
      -

      MedianTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified MedianTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IMedianTask
      -

      MedianTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a MedianTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    MedianTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns MedianTask

-
- -
    - -
  • -

    Creates a plain object from a MedianTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: MedianTask
      -

      MedianTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a MedianTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.MultiplyTask.html b/website/static/api/aptos/classes/OracleJob.MultiplyTask.html deleted file mode 100644 index 8d5eaf7..0000000 --- a/website/static/api/aptos/classes/OracleJob.MultiplyTask.html +++ /dev/null @@ -1,372 +0,0 @@ -MultiplyTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a MultiplyTask.

-
-
-

Hierarchy

-
    -
  • MultiplyTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new MultiplyTask.

    -
    -
    -

    Parameters

    -
    -

    Returns MultiplyTask

-
-

Properties

-
- -
Multiple?: "aggregatorPubkey" | "big" | "scalar" | "job"
-

MultiplyTask Multiple.

-
-
- -
aggregatorPubkey?: string
-

MultiplyTask aggregatorPubkey.

-
-
- -
big?: string
-

MultiplyTask big.

-
-
- - -

MultiplyTask job.

-
-
- -
scalar?: number
-

MultiplyTask scalar.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this MultiplyTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new MultiplyTask instance using the specified properties.

    - -

    Returns

    MultiplyTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns MultiplyTask

-
- -
    - -
  • -

    Decodes a MultiplyTask message from the specified reader or buffer.

    - -

    Returns

    MultiplyTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns MultiplyTask

-
- -
    - -
  • -

    Decodes a MultiplyTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    MultiplyTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns MultiplyTask

-
- -
    - -
  • -

    Encodes the specified MultiplyTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IMultiplyTask
      -

      MultiplyTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified MultiplyTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IMultiplyTask
      -

      MultiplyTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a MultiplyTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    MultiplyTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns MultiplyTask

-
- -
    - -
  • -

    Creates a plain object from a MultiplyTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: MultiplyTask
      -

      MultiplyTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a MultiplyTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.OracleTask.html b/website/static/api/aptos/classes/OracleJob.OracleTask.html deleted file mode 100644 index 84bdfa6..0000000 --- a/website/static/api/aptos/classes/OracleJob.OracleTask.html +++ /dev/null @@ -1,372 +0,0 @@ -OracleTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents an OracleTask.

-
-
-

Hierarchy

-
    -
  • OracleTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new OracleTask.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IOracleTask
      -

      Properties to set

      -
    -

    Returns OracleTask

-
-

Properties

-
- -
AggregatorAddress?: "switchboardAddress" | "pythAddress" | "chainlinkAddress"
-

OracleTask AggregatorAddress.

-
-
- -
chainlinkAddress?: string
-

OracleTask chainlinkAddress.

-
-
- -
pythAddress?: string
-

OracleTask pythAddress.

-
-
- -
pythAllowedConfidenceInterval: number
-

OracleTask pythAllowedConfidenceInterval.

-
-
- -
switchboardAddress?: string
-

OracleTask switchboardAddress.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this OracleTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new OracleTask instance using the specified properties.

    - -

    Returns

    OracleTask instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IOracleTask
      -

      Properties to set

      -
    -

    Returns OracleTask

-
- -
    - -
  • -

    Decodes an OracleTask message from the specified reader or buffer.

    - -

    Returns

    OracleTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns OracleTask

-
- -
    - -
  • -

    Decodes an OracleTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    OracleTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns OracleTask

-
- -
    - -
  • -

    Encodes the specified OracleTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IOracleTask
      -

      OracleTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified OracleTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IOracleTask
      -

      OracleTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates an OracleTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    OracleTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns OracleTask

-
- -
    - -
  • -

    Creates a plain object from an OracleTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: OracleTask
      -

      OracleTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies an OracleTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.PancakeswapExchangeRateTask.html b/website/static/api/aptos/classes/OracleJob.PancakeswapExchangeRateTask.html deleted file mode 100644 index 98e4a45..0000000 --- a/website/static/api/aptos/classes/OracleJob.PancakeswapExchangeRateTask.html +++ /dev/null @@ -1,373 +0,0 @@ -PancakeswapExchangeRateTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class PancakeswapExchangeRateTask

-
-

Represents a PancakeswapExchangeRateTask.

-
-
-

Hierarchy

-
    -
  • PancakeswapExchangeRateTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
inTokenAddress: string
-

PancakeswapExchangeRateTask inTokenAddress.

-
-
- -
inTokenAmount: number
-

PancakeswapExchangeRateTask inTokenAmount.

-
-
- -
outTokenAddress: string
-

PancakeswapExchangeRateTask outTokenAddress.

-
-
- -
provider: string
-

PancakeswapExchangeRateTask provider.

-
-
- -
slippage: number
-

PancakeswapExchangeRateTask slippage.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this PancakeswapExchangeRateTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
-
- -
    - -
  • -

    Decodes a PancakeswapExchangeRateTask message from the specified reader or buffer.

    - -

    Returns

    PancakeswapExchangeRateTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns PancakeswapExchangeRateTask

-
- -
    - -
  • -

    Decodes a PancakeswapExchangeRateTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    PancakeswapExchangeRateTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns PancakeswapExchangeRateTask

-
- -
    - -
  • -

    Encodes the specified PancakeswapExchangeRateTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IPancakeswapExchangeRateTask
      -

      PancakeswapExchangeRateTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified PancakeswapExchangeRateTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IPancakeswapExchangeRateTask
      -

      PancakeswapExchangeRateTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a PancakeswapExchangeRateTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    PancakeswapExchangeRateTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns PancakeswapExchangeRateTask

-
- -
    - -
  • -

    Creates a plain object from a PancakeswapExchangeRateTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a PancakeswapExchangeRateTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.PerpMarketTask.html b/website/static/api/aptos/classes/OracleJob.PerpMarketTask.html deleted file mode 100644 index d40899a..0000000 --- a/website/static/api/aptos/classes/OracleJob.PerpMarketTask.html +++ /dev/null @@ -1,372 +0,0 @@ -PerpMarketTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a PerpMarketTask.

-
-
-

Hierarchy

-
    -
  • PerpMarketTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
MarketAddress?: "mangoMarketAddress" | "driftMarketAddress" | "zetaMarketAddress" | "zoMarketAddress"
-

PerpMarketTask MarketAddress.

-
-
- -
driftMarketAddress?: string
-

PerpMarketTask driftMarketAddress.

-
-
- -
mangoMarketAddress?: string
-

PerpMarketTask mangoMarketAddress.

-
-
- -
zetaMarketAddress?: string
-

PerpMarketTask zetaMarketAddress.

-
-
- -
zoMarketAddress?: string
-

PerpMarketTask zoMarketAddress.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this PerpMarketTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new PerpMarketTask instance using the specified properties.

    - -

    Returns

    PerpMarketTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns PerpMarketTask

-
- -
    - -
  • -

    Decodes a PerpMarketTask message from the specified reader or buffer.

    - -

    Returns

    PerpMarketTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns PerpMarketTask

-
- -
    - -
  • -

    Decodes a PerpMarketTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    PerpMarketTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns PerpMarketTask

-
- -
    - -
  • -

    Encodes the specified PerpMarketTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IPerpMarketTask
      -

      PerpMarketTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified PerpMarketTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IPerpMarketTask
      -

      PerpMarketTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a PerpMarketTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    PerpMarketTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns PerpMarketTask

-
- -
    - -
  • -

    Creates a plain object from a PerpMarketTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: PerpMarketTask
      -

      PerpMarketTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a PerpMarketTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.PowTask.html b/website/static/api/aptos/classes/OracleJob.PowTask.html deleted file mode 100644 index c84008d..0000000 --- a/website/static/api/aptos/classes/OracleJob.PowTask.html +++ /dev/null @@ -1,362 +0,0 @@ -PowTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a PowTask.

-
-
-

Hierarchy

-
    -
  • PowTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new PowTask.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IPowTask
      -

      Properties to set

      -
    -

    Returns PowTask

-
-

Properties

-
- -
Exponent?: "aggregatorPubkey" | "big" | "scalar"
-

PowTask Exponent.

-
-
- -
aggregatorPubkey?: string
-

PowTask aggregatorPubkey.

-
-
- -
big?: string
-

PowTask big.

-
-
- -
scalar?: number
-

PowTask scalar.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this PowTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new PowTask instance using the specified properties.

    - -

    Returns

    PowTask instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IPowTask
      -

      Properties to set

      -
    -

    Returns PowTask

-
- -
    - -
  • -

    Decodes a PowTask message from the specified reader or buffer.

    - -

    Returns

    PowTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns PowTask

-
- -
    - -
  • -

    Decodes a PowTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    PowTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns PowTask

-
- -
    - -
  • -

    Encodes the specified PowTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IPowTask
      -

      PowTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified PowTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IPowTask
      -

      PowTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a PowTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    PowTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns PowTask

-
- -
    - -
  • -

    Creates a plain object from a PowTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: PowTask
      -

      PowTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a PowTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.RegexExtractTask.html b/website/static/api/aptos/classes/OracleJob.RegexExtractTask.html deleted file mode 100644 index 8d3add7..0000000 --- a/website/static/api/aptos/classes/OracleJob.RegexExtractTask.html +++ /dev/null @@ -1,343 +0,0 @@ -RegexExtractTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a RegexExtractTask.

-
-
-

Hierarchy

-
    -
  • RegexExtractTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
groupNumber: number
-

RegexExtractTask groupNumber.

-
-
- -
pattern: string
-

RegexExtractTask pattern.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this RegexExtractTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new RegexExtractTask instance using the specified properties.

    - -

    Returns

    RegexExtractTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns RegexExtractTask

-
- -
    - -
  • -

    Decodes a RegexExtractTask message from the specified reader or buffer.

    - -

    Returns

    RegexExtractTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns RegexExtractTask

-
- -
    - -
  • -

    Decodes a RegexExtractTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    RegexExtractTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns RegexExtractTask

-
- -
    - -
  • -

    Encodes the specified RegexExtractTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IRegexExtractTask
      -

      RegexExtractTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified RegexExtractTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IRegexExtractTask
      -

      RegexExtractTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a RegexExtractTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    RegexExtractTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns RegexExtractTask

-
- -
    - -
  • -

    Creates a plain object from a RegexExtractTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: RegexExtractTask
      -

      RegexExtractTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a RegexExtractTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.SerumSwapTask.html b/website/static/api/aptos/classes/OracleJob.SerumSwapTask.html deleted file mode 100644 index 033c202..0000000 --- a/website/static/api/aptos/classes/OracleJob.SerumSwapTask.html +++ /dev/null @@ -1,333 +0,0 @@ -SerumSwapTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a SerumSwapTask.

-
-
-

Hierarchy

-
    -
  • SerumSwapTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new SerumSwapTask.

    -
    -
    -

    Parameters

    -
    -

    Returns SerumSwapTask

-
-

Properties

-
- -
serumPoolAddress: string
-

SerumSwapTask serumPoolAddress.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this SerumSwapTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new SerumSwapTask instance using the specified properties.

    - -

    Returns

    SerumSwapTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns SerumSwapTask

-
- -
    - -
  • -

    Decodes a SerumSwapTask message from the specified reader or buffer.

    - -

    Returns

    SerumSwapTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns SerumSwapTask

-
- -
    - -
  • -

    Decodes a SerumSwapTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    SerumSwapTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns SerumSwapTask

-
- -
    - -
  • -

    Encodes the specified SerumSwapTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISerumSwapTask
      -

      SerumSwapTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified SerumSwapTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISerumSwapTask
      -

      SerumSwapTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a SerumSwapTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    SerumSwapTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns SerumSwapTask

-
- -
    - -
  • -

    Creates a plain object from a SerumSwapTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: SerumSwapTask
      -

      SerumSwapTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a SerumSwapTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.SolanaAccountDataFetchTask.html b/website/static/api/aptos/classes/OracleJob.SolanaAccountDataFetchTask.html deleted file mode 100644 index 6e9b6cc..0000000 --- a/website/static/api/aptos/classes/OracleJob.SolanaAccountDataFetchTask.html +++ /dev/null @@ -1,333 +0,0 @@ -SolanaAccountDataFetchTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class SolanaAccountDataFetchTask

-
-

Represents a SolanaAccountDataFetchTask.

-
-
-

Hierarchy

-
    -
  • SolanaAccountDataFetchTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
pubkey: string
-

SolanaAccountDataFetchTask pubkey.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this SolanaAccountDataFetchTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
-
- -
    - -
  • -

    Decodes a SolanaAccountDataFetchTask message from the specified reader or buffer.

    - -

    Returns

    SolanaAccountDataFetchTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns SolanaAccountDataFetchTask

-
- -
    - -
  • -

    Decodes a SolanaAccountDataFetchTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    SolanaAccountDataFetchTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns SolanaAccountDataFetchTask

-
- -
    - -
  • -

    Encodes the specified SolanaAccountDataFetchTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISolanaAccountDataFetchTask
      -

      SolanaAccountDataFetchTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified SolanaAccountDataFetchTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISolanaAccountDataFetchTask
      -

      SolanaAccountDataFetchTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a SolanaAccountDataFetchTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    SolanaAccountDataFetchTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns SolanaAccountDataFetchTask

-
- -
    - -
  • -

    Creates a plain object from a SolanaAccountDataFetchTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: SolanaAccountDataFetchTask
      -

      SolanaAccountDataFetchTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a SolanaAccountDataFetchTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.SplStakePoolTask.html b/website/static/api/aptos/classes/OracleJob.SplStakePoolTask.html deleted file mode 100644 index ec11dd0..0000000 --- a/website/static/api/aptos/classes/OracleJob.SplStakePoolTask.html +++ /dev/null @@ -1,333 +0,0 @@ -SplStakePoolTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a SplStakePoolTask.

-
-
-

Hierarchy

-
    -
  • SplStakePoolTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
pubkey: string
-

SplStakePoolTask pubkey.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this SplStakePoolTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new SplStakePoolTask instance using the specified properties.

    - -

    Returns

    SplStakePoolTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns SplStakePoolTask

-
- -
    - -
  • -

    Decodes a SplStakePoolTask message from the specified reader or buffer.

    - -

    Returns

    SplStakePoolTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns SplStakePoolTask

-
- -
    - -
  • -

    Decodes a SplStakePoolTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    SplStakePoolTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns SplStakePoolTask

-
- -
    - -
  • -

    Encodes the specified SplStakePoolTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISplStakePoolTask
      -

      SplStakePoolTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified SplStakePoolTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISplStakePoolTask
      -

      SplStakePoolTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a SplStakePoolTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    SplStakePoolTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns SplStakePoolTask

-
- -
    - -
  • -

    Creates a plain object from a SplStakePoolTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: SplStakePoolTask
      -

      SplStakePoolTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a SplStakePoolTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.SplTokenParseTask.html b/website/static/api/aptos/classes/OracleJob.SplTokenParseTask.html deleted file mode 100644 index f9e3c6d..0000000 --- a/website/static/api/aptos/classes/OracleJob.SplTokenParseTask.html +++ /dev/null @@ -1,352 +0,0 @@ -SplTokenParseTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a SplTokenParseTask.

-
-
-

Hierarchy

-
    -
  • SplTokenParseTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
AccountAddress?: "tokenAccountAddress" | "mintAddress"
-

SplTokenParseTask AccountAddress.

-
-
- -
mintAddress?: string
-

SplTokenParseTask mintAddress.

-
-
- -
tokenAccountAddress?: string
-

SplTokenParseTask tokenAccountAddress.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this SplTokenParseTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new SplTokenParseTask instance using the specified properties.

    - -

    Returns

    SplTokenParseTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns SplTokenParseTask

-
- -
    - -
  • -

    Decodes a SplTokenParseTask message from the specified reader or buffer.

    - -

    Returns

    SplTokenParseTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns SplTokenParseTask

-
- -
    - -
  • -

    Decodes a SplTokenParseTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    SplTokenParseTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns SplTokenParseTask

-
- -
    - -
  • -

    Encodes the specified SplTokenParseTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISplTokenParseTask
      -

      SplTokenParseTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified SplTokenParseTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISplTokenParseTask
      -

      SplTokenParseTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a SplTokenParseTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    SplTokenParseTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns SplTokenParseTask

-
- -
    - -
  • -

    Creates a plain object from a SplTokenParseTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: SplTokenParseTask
      -

      SplTokenParseTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a SplTokenParseTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.SubtractTask.html b/website/static/api/aptos/classes/OracleJob.SubtractTask.html deleted file mode 100644 index a5cb037..0000000 --- a/website/static/api/aptos/classes/OracleJob.SubtractTask.html +++ /dev/null @@ -1,372 +0,0 @@ -SubtractTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a SubtractTask.

-
-
-

Hierarchy

-
    -
  • SubtractTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new SubtractTask.

    -
    -
    -

    Parameters

    -
    -

    Returns SubtractTask

-
-

Properties

-
- -
Subtraction?: "aggregatorPubkey" | "big" | "scalar" | "job"
-

SubtractTask Subtraction.

-
-
- -
aggregatorPubkey?: string
-

SubtractTask aggregatorPubkey.

-
-
- -
big?: string
-

SubtractTask big.

-
-
- - -

SubtractTask job.

-
-
- -
scalar?: number
-

SubtractTask scalar.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this SubtractTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new SubtractTask instance using the specified properties.

    - -

    Returns

    SubtractTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns SubtractTask

-
- -
    - -
  • -

    Decodes a SubtractTask message from the specified reader or buffer.

    - -

    Returns

    SubtractTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns SubtractTask

-
- -
    - -
  • -

    Decodes a SubtractTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    SubtractTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns SubtractTask

-
- -
    - -
  • -

    Encodes the specified SubtractTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISubtractTask
      -

      SubtractTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified SubtractTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISubtractTask
      -

      SubtractTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a SubtractTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    SubtractTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns SubtractTask

-
- -
    - -
  • -

    Creates a plain object from a SubtractTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: SubtractTask
      -

      SubtractTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a SubtractTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.SushiswapExchangeRateTask.html b/website/static/api/aptos/classes/OracleJob.SushiswapExchangeRateTask.html deleted file mode 100644 index ddb6ec3..0000000 --- a/website/static/api/aptos/classes/OracleJob.SushiswapExchangeRateTask.html +++ /dev/null @@ -1,373 +0,0 @@ -SushiswapExchangeRateTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class SushiswapExchangeRateTask

-
-

Represents a SushiswapExchangeRateTask.

-
-
-

Hierarchy

-
    -
  • SushiswapExchangeRateTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
inTokenAddress: string
-

SushiswapExchangeRateTask inTokenAddress.

-
-
- -
inTokenAmount: number
-

SushiswapExchangeRateTask inTokenAmount.

-
-
- -
outTokenAddress: string
-

SushiswapExchangeRateTask outTokenAddress.

-
-
- -
provider: string
-

SushiswapExchangeRateTask provider.

-
-
- -
slippage: number
-

SushiswapExchangeRateTask slippage.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this SushiswapExchangeRateTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
-
- -
    - -
  • -

    Decodes a SushiswapExchangeRateTask message from the specified reader or buffer.

    - -

    Returns

    SushiswapExchangeRateTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns SushiswapExchangeRateTask

-
- -
    - -
  • -

    Decodes a SushiswapExchangeRateTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    SushiswapExchangeRateTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns SushiswapExchangeRateTask

-
- -
    - -
  • -

    Encodes the specified SushiswapExchangeRateTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISushiswapExchangeRateTask
      -

      SushiswapExchangeRateTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified SushiswapExchangeRateTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISushiswapExchangeRateTask
      -

      SushiswapExchangeRateTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a SushiswapExchangeRateTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    SushiswapExchangeRateTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns SushiswapExchangeRateTask

-
- -
    - -
  • -

    Creates a plain object from a SushiswapExchangeRateTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: SushiswapExchangeRateTask
      -

      SushiswapExchangeRateTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a SushiswapExchangeRateTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.SysclockOffsetTask.html b/website/static/api/aptos/classes/OracleJob.SysclockOffsetTask.html deleted file mode 100644 index 9f61cd3..0000000 --- a/website/static/api/aptos/classes/OracleJob.SysclockOffsetTask.html +++ /dev/null @@ -1,318 +0,0 @@ -SysclockOffsetTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a SysclockOffsetTask.

-
-
-

Hierarchy

-
    -
  • SysclockOffsetTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Methods

-
- -
    - -
  • -

    Converts this SysclockOffsetTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new SysclockOffsetTask instance using the specified properties.

    - -

    Returns

    SysclockOffsetTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns SysclockOffsetTask

-
- -
    - -
  • -

    Decodes a SysclockOffsetTask message from the specified reader or buffer.

    - -

    Returns

    SysclockOffsetTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns SysclockOffsetTask

-
- -
    - -
  • -

    Decodes a SysclockOffsetTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    SysclockOffsetTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns SysclockOffsetTask

-
- -
    - -
  • -

    Encodes the specified SysclockOffsetTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISysclockOffsetTask
      -

      SysclockOffsetTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified SysclockOffsetTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ISysclockOffsetTask
      -

      SysclockOffsetTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a SysclockOffsetTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    SysclockOffsetTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns SysclockOffsetTask

-
- -
    - -
  • -

    Creates a plain object from a SysclockOffsetTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: SysclockOffsetTask
      -

      SysclockOffsetTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a SysclockOffsetTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.Task.html b/website/static/api/aptos/classes/OracleJob.Task.html deleted file mode 100644 index cb59f58..0000000 --- a/website/static/api/aptos/classes/OracleJob.Task.html +++ /dev/null @@ -1,712 +0,0 @@ -Task | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a Task.

-
-
-

Hierarchy

-
    -
  • Task
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new Task.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: ITask
      -

      Properties to set

      -
    -

    Returns Task

-
-

Properties

-
- -
Task?: "httpTask" | "jsonParseTask" | "medianTask" | "meanTask" | "websocketTask" | "divideTask" | "multiplyTask" | "lpTokenPriceTask" | "lpExchangeRateTask" | "conditionalTask" | "valueTask" | "maxTask" | "regexExtractTask" | "xstepPriceTask" | "addTask" | "subtractTask" | "twapTask" | "serumSwapTask" | "powTask" | "lendingRateTask" | "mangoPerpMarketTask" | "jupiterSwapTask" | "perpMarketTask" | "oracleTask" | "anchorFetchTask" | "defiKingdomsTask" | "tpsTask" | "splStakePoolTask" | "splTokenParseTask" | "uniswapExchangeRateTask" | "sushiswapExchangeRateTask" | "pancakeswapExchangeRateTask" | "cacheTask" | "sysclockOffsetTask" | "marinadeStateTask" | "solanaAccountDataFetchTask" | "bufferLayoutParseTask" | "cronParseTask"
-

Task Task.

-
-
- -
addTask?: IAddTask
-

Task addTask.

-
-
- -
anchorFetchTask?: IAnchorFetchTask
-

Task anchorFetchTask.

-
-
- -
bufferLayoutParseTask?: IBufferLayoutParseTask
-

Task bufferLayoutParseTask.

-
-
- -
cacheTask?: ICacheTask
-

Task cacheTask.

-
-
- -
conditionalTask?: IConditionalTask
-

Task conditionalTask.

-
-
- -
cronParseTask?: ICronParseTask
-

Task cronParseTask.

-
-
- -
defiKingdomsTask?: IDefiKingdomsTask
-

Task defiKingdomsTask.

-
-
- -
divideTask?: IDivideTask
-

Task divideTask.

-
-
- -
httpTask?: IHttpTask
-

Task httpTask.

-
-
- -
jsonParseTask?: IJsonParseTask
-

Task jsonParseTask.

-
-
- -
jupiterSwapTask?: IJupiterSwapTask
-

Task jupiterSwapTask.

-
-
- -
lendingRateTask?: ILendingRateTask
-

Task lendingRateTask.

-
-
- -
lpExchangeRateTask?: ILpExchangeRateTask
-

Task lpExchangeRateTask.

-
-
- -
lpTokenPriceTask?: ILpTokenPriceTask
-

Task lpTokenPriceTask.

-
-
- -
mangoPerpMarketTask?: IMangoPerpMarketTask
-

Task mangoPerpMarketTask.

-
-
- -
marinadeStateTask?: IMarinadeStateTask
-

Task marinadeStateTask.

-
-
- -
maxTask?: IMaxTask
-

Task maxTask.

-
-
- -
meanTask?: IMeanTask
-

Task meanTask.

-
-
- -
medianTask?: IMedianTask
-

Task medianTask.

-
-
- -
multiplyTask?: IMultiplyTask
-

Task multiplyTask.

-
-
- -
oracleTask?: IOracleTask
-

Task oracleTask.

-
-
- -
pancakeswapExchangeRateTask?: IPancakeswapExchangeRateTask
-

Task pancakeswapExchangeRateTask.

-
-
- -
perpMarketTask?: IPerpMarketTask
-

Task perpMarketTask.

-
-
- -
powTask?: IPowTask
-

Task powTask.

-
-
- -
regexExtractTask?: IRegexExtractTask
-

Task regexExtractTask.

-
-
- -
serumSwapTask?: ISerumSwapTask
-

Task serumSwapTask.

-
-
- -
solanaAccountDataFetchTask?: ISolanaAccountDataFetchTask
-

Task solanaAccountDataFetchTask.

-
-
- -
splStakePoolTask?: ISplStakePoolTask
-

Task splStakePoolTask.

-
-
- -
splTokenParseTask?: ISplTokenParseTask
-

Task splTokenParseTask.

-
-
- -
subtractTask?: ISubtractTask
-

Task subtractTask.

-
-
- -
sushiswapExchangeRateTask?: ISushiswapExchangeRateTask
-

Task sushiswapExchangeRateTask.

-
-
- -
sysclockOffsetTask?: ISysclockOffsetTask
-

Task sysclockOffsetTask.

-
-
- -
tpsTask?: ITpsTask
-

Task tpsTask.

-
-
- -
twapTask?: ITwapTask
-

Task twapTask.

-
-
- -
uniswapExchangeRateTask?: IUniswapExchangeRateTask
-

Task uniswapExchangeRateTask.

-
-
- -
valueTask?: IValueTask
-

Task valueTask.

-
-
- -
websocketTask?: IWebsocketTask
-

Task websocketTask.

-
-
- -
xstepPriceTask?: IXStepPriceTask
-

Task xstepPriceTask.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this Task to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new Task instance using the specified properties.

    - -

    Returns

    Task instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: ITask
      -

      Properties to set

      -
    -

    Returns Task

-
- -
    - -
  • -

    Decodes a Task message from the specified reader or buffer.

    - -

    Returns

    Task

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns Task

-
- -
    - -
  • -

    Decodes a Task message from the specified reader or buffer, length delimited.

    - -

    Returns

    Task

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns Task

-
- -
    - -
  • -

    Encodes the specified Task message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ITask
      -

      Task message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified Task message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ITask
      -

      Task message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a Task message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    Task

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns Task

-
- -
    - -
  • -

    Creates a plain object from a Task message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: Task
      -

      Task

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a Task message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.TpsTask.html b/website/static/api/aptos/classes/OracleJob.TpsTask.html deleted file mode 100644 index 2dda6cb..0000000 --- a/website/static/api/aptos/classes/OracleJob.TpsTask.html +++ /dev/null @@ -1,318 +0,0 @@ -TpsTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a TpsTask.

-
-
-

Hierarchy

-
    -
  • TpsTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new TpsTask.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: ITpsTask
      -

      Properties to set

      -
    -

    Returns TpsTask

-
-

Methods

-
- -
    - -
  • -

    Converts this TpsTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new TpsTask instance using the specified properties.

    - -

    Returns

    TpsTask instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: ITpsTask
      -

      Properties to set

      -
    -

    Returns TpsTask

-
- -
    - -
  • -

    Decodes a TpsTask message from the specified reader or buffer.

    - -

    Returns

    TpsTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns TpsTask

-
- -
    - -
  • -

    Decodes a TpsTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    TpsTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns TpsTask

-
- -
    - -
  • -

    Encodes the specified TpsTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ITpsTask
      -

      TpsTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified TpsTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ITpsTask
      -

      TpsTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a TpsTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    TpsTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns TpsTask

-
- -
    - -
  • -

    Creates a plain object from a TpsTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: TpsTask
      -

      TpsTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a TpsTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.TwapTask.html b/website/static/api/aptos/classes/OracleJob.TwapTask.html deleted file mode 100644 index 090504f..0000000 --- a/website/static/api/aptos/classes/OracleJob.TwapTask.html +++ /dev/null @@ -1,383 +0,0 @@ -TwapTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a TwapTask.

-
-
-

Hierarchy

-
    -
  • TwapTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new TwapTask.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: ITwapTask
      -

      Properties to set

      -
    -

    Returns TwapTask

-
-

Properties

-
- -
aggregatorPubkey: string
-

TwapTask aggregatorPubkey.

-
-
- -
endingUnixTimestamp: number
-

TwapTask endingUnixTimestamp.

-
-
- -
endingUnixTimestampTask?: ICronParseTask
-

TwapTask endingUnixTimestampTask.

-
-
- -
minSamples: number
-

TwapTask minSamples.

-
-
- -
period: number
-

TwapTask period.

-
-
- -
weightByPropagationTime: boolean
-

TwapTask weightByPropagationTime.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this TwapTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new TwapTask instance using the specified properties.

    - -

    Returns

    TwapTask instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: ITwapTask
      -

      Properties to set

      -
    -

    Returns TwapTask

-
- -
    - -
  • -

    Decodes a TwapTask message from the specified reader or buffer.

    - -

    Returns

    TwapTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns TwapTask

-
- -
    - -
  • -

    Decodes a TwapTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    TwapTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns TwapTask

-
- -
    - -
  • -

    Encodes the specified TwapTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ITwapTask
      -

      TwapTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified TwapTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ITwapTask
      -

      TwapTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a TwapTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    TwapTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns TwapTask

-
- -
    - -
  • -

    Creates a plain object from a TwapTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: TwapTask
      -

      TwapTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a TwapTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.UniswapExchangeRateTask.html b/website/static/api/aptos/classes/OracleJob.UniswapExchangeRateTask.html deleted file mode 100644 index 125ea59..0000000 --- a/website/static/api/aptos/classes/OracleJob.UniswapExchangeRateTask.html +++ /dev/null @@ -1,373 +0,0 @@ -UniswapExchangeRateTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class UniswapExchangeRateTask

-
-

Represents an UniswapExchangeRateTask.

-
-
-

Hierarchy

-
    -
  • UniswapExchangeRateTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
inTokenAddress: string
-

UniswapExchangeRateTask inTokenAddress.

-
-
- -
inTokenAmount: number
-

UniswapExchangeRateTask inTokenAmount.

-
-
- -
outTokenAddress: string
-

UniswapExchangeRateTask outTokenAddress.

-
-
- -
provider: string
-

UniswapExchangeRateTask provider.

-
-
- -
slippage: number
-

UniswapExchangeRateTask slippage.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this UniswapExchangeRateTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
-
- -
    - -
  • -

    Decodes an UniswapExchangeRateTask message from the specified reader or buffer.

    - -

    Returns

    UniswapExchangeRateTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns UniswapExchangeRateTask

-
- -
    - -
  • -

    Decodes an UniswapExchangeRateTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    UniswapExchangeRateTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns UniswapExchangeRateTask

-
- -
    - -
  • -

    Encodes the specified UniswapExchangeRateTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IUniswapExchangeRateTask
      -

      UniswapExchangeRateTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified UniswapExchangeRateTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IUniswapExchangeRateTask
      -

      UniswapExchangeRateTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates an UniswapExchangeRateTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    UniswapExchangeRateTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns UniswapExchangeRateTask

-
- -
    - -
  • -

    Creates a plain object from an UniswapExchangeRateTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: UniswapExchangeRateTask
      -

      UniswapExchangeRateTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies an UniswapExchangeRateTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.ValueTask.html b/website/static/api/aptos/classes/OracleJob.ValueTask.html deleted file mode 100644 index 0df7339..0000000 --- a/website/static/api/aptos/classes/OracleJob.ValueTask.html +++ /dev/null @@ -1,362 +0,0 @@ -ValueTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a ValueTask.

-
-
-

Hierarchy

-
    -
  • ValueTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new ValueTask.

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IValueTask
      -

      Properties to set

      -
    -

    Returns ValueTask

-
-

Properties

-
- -
Value?: "value" | "aggregatorPubkey" | "big"
-

ValueTask Value.

-
-
- -
aggregatorPubkey?: string
-

ValueTask aggregatorPubkey.

-
-
- -
big?: string
-

ValueTask big.

-
-
- -
value?: number
-

ValueTask value.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this ValueTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new ValueTask instance using the specified properties.

    - -

    Returns

    ValueTask instance

    -
    -
    -

    Parameters

    -
      -
    • -
      Optional properties: IValueTask
      -

      Properties to set

      -
    -

    Returns ValueTask

-
- -
    - -
  • -

    Decodes a ValueTask message from the specified reader or buffer.

    - -

    Returns

    ValueTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns ValueTask

-
- -
    - -
  • -

    Decodes a ValueTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    ValueTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns ValueTask

-
- -
    - -
  • -

    Encodes the specified ValueTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IValueTask
      -

      ValueTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified ValueTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IValueTask
      -

      ValueTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a ValueTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    ValueTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns ValueTask

-
- -
    - -
  • -

    Creates a plain object from a ValueTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: ValueTask
      -

      ValueTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a ValueTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.WebsocketTask.html b/website/static/api/aptos/classes/OracleJob.WebsocketTask.html deleted file mode 100644 index 72acac7..0000000 --- a/website/static/api/aptos/classes/OracleJob.WebsocketTask.html +++ /dev/null @@ -1,363 +0,0 @@ -WebsocketTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a WebsocketTask.

-
-
-

Hierarchy

-
    -
  • WebsocketTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
    - -
  • -

    Constructs a new WebsocketTask.

    -
    -
    -

    Parameters

    -
    -

    Returns WebsocketTask

-
-

Properties

-
- -
filter: string
-

WebsocketTask filter.

-
-
- -
maxDataAgeSeconds: number
-

WebsocketTask maxDataAgeSeconds.

-
-
- -
subscription: string
-

WebsocketTask subscription.

-
-
- -
url: string
-

WebsocketTask url.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this WebsocketTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new WebsocketTask instance using the specified properties.

    - -

    Returns

    WebsocketTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns WebsocketTask

-
- -
    - -
  • -

    Decodes a WebsocketTask message from the specified reader or buffer.

    - -

    Returns

    WebsocketTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns WebsocketTask

-
- -
    - -
  • -

    Decodes a WebsocketTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    WebsocketTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns WebsocketTask

-
- -
    - -
  • -

    Encodes the specified WebsocketTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IWebsocketTask
      -

      WebsocketTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified WebsocketTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IWebsocketTask
      -

      WebsocketTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a WebsocketTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    WebsocketTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns WebsocketTask

-
- -
    - -
  • -

    Creates a plain object from a WebsocketTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: WebsocketTask
      -

      WebsocketTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a WebsocketTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleJob.XStepPriceTask.html b/website/static/api/aptos/classes/OracleJob.XStepPriceTask.html deleted file mode 100644 index 7483b72..0000000 --- a/website/static/api/aptos/classes/OracleJob.XStepPriceTask.html +++ /dev/null @@ -1,352 +0,0 @@ -XStepPriceTask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Represents a XStepPriceTask.

-
-
-

Hierarchy

-
    -
  • XStepPriceTask
-
-

Implements

-
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
StepSource?: "stepJob" | "stepAggregatorPubkey"
-

XStepPriceTask StepSource.

-
-
- -
stepAggregatorPubkey?: string
-

XStepPriceTask stepAggregatorPubkey.

-
-
- -
stepJob?: IMedianTask
-

XStepPriceTask stepJob.

-
-
-

Methods

-
- -
    - -
  • -

    Converts this XStepPriceTask to JSON.

    - -

    Returns

    JSON object

    -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Creates a new XStepPriceTask instance using the specified properties.

    - -

    Returns

    XStepPriceTask instance

    -
    -
    -

    Parameters

    -
    -

    Returns XStepPriceTask

-
- -
    - -
  • -

    Decodes a XStepPriceTask message from the specified reader or buffer.

    - -

    Returns

    XStepPriceTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    • -
    • -
      Optional length: number
      -

      Message length if known beforehand

      -
    -

    Returns XStepPriceTask

-
- -
    - -
  • -

    Decodes a XStepPriceTask message from the specified reader or buffer, length delimited.

    - -

    Returns

    XStepPriceTask

    - -

    Throws

    If the payload is not a reader or valid buffer

    - -

    Throws

    If required fields are missing

    -
    -
    -

    Parameters

    -
      -
    • -
      reader: Uint8Array | Reader
      -

      Reader or buffer to decode from

      -
    -

    Returns XStepPriceTask

-
- -
    - -
  • -

    Encodes the specified XStepPriceTask message. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IXStepPriceTask
      -

      XStepPriceTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Encodes the specified XStepPriceTask message, length delimited. Does not implicitly verify messages.

    - -

    Returns

    Writer

    -
    -
    -

    Parameters

    -
      -
    • -
      message: IXStepPriceTask
      -

      XStepPriceTask message or plain object to encode

      -
    • -
    • -
      Optional writer: Writer
      -

      Writer to encode to

      -
    -

    Returns Writer

-
- -
    - -
  • -

    Creates a XStepPriceTask message from a plain object. Also converts values to their respective internal types.

    - -

    Returns

    XStepPriceTask

    -
    -
    -

    Parameters

    -
      -
    • -
      object: { [k: string]: any }
      -

      Plain object

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns XStepPriceTask

-
- -
    - -
  • -

    Creates a plain object from a XStepPriceTask message. Also converts values to other types if specified.

    - -

    Returns

    Plain object

    -
    -
    -

    Parameters

    -
      -
    • -
      message: XStepPriceTask
      -

      XStepPriceTask

      -
    • -
    • -
      Optional options: IConversionOptions
      -

      Conversion options

      -
    -

    Returns { [k: string]: any }

    -
      -
    • -
      [k: string]: any
-
- -
    - -
  • -

    Verifies a XStepPriceTask message.

    - -

    Returns

    null if valid, otherwise the reason why it is not

    -
    -
    -

    Parameters

    -
      -
    • -
      message: { [k: string]: any }
      -

      Plain object to verify

      -
      -
        -
      • -
        [k: string]: any
    -

    Returns string

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleQueueAccount.html b/website/static/api/aptos/classes/OracleQueueAccount.html deleted file mode 100644 index 757c8e7..0000000 --- a/website/static/api/aptos/classes/OracleQueueAccount.html +++ /dev/null @@ -1,162 +0,0 @@ -OracleQueueAccount | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class OracleQueueAccount

-
-

Hierarchy

-
    -
  • OracleQueueAccount
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      address: MaybeHexString
    • -
    • -
      switchboardAddress: MaybeHexString
    • -
    • -
      coinType: string = "0x1::aptos_coin::AptosCoin"
    -

    Returns OracleQueueAccount

-
-

Properties

-
- -
address: MaybeHexString
-
- -
client: AptosClient
-
- -
coinType: string = "0x1::aptos_coin::AptosCoin"
-
- -
switchboardAddress: MaybeHexString
-
-

Methods

-
- -
-
- -
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/OracleWallet.html b/website/static/api/aptos/classes/OracleWallet.html deleted file mode 100644 index 02ef137..0000000 --- a/website/static/api/aptos/classes/OracleWallet.html +++ /dev/null @@ -1,204 +0,0 @@ -OracleWallet | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class OracleWallet

-
-

Hierarchy

-
    -
  • OracleWallet
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      address: MaybeHexString
    • -
    • -
      switchboardAddress: MaybeHexString
    • -
    • -
      coinType: string = "0x1::aptos_coin::AptosCoin"
    -

    Returns OracleWallet

-
-

Properties

-
- -
address: MaybeHexString
-
- -
client: AptosClient
-
- -
coinType: string = "0x1::aptos_coin::AptosCoin"
-
- -
switchboardAddress: MaybeHexString
-
-

Methods

-
- -
-
- -
-
- -
-
- -
    - -
  • -

    Initialize an OracleWallet

    -
    -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      account: AptosAccount
      -

      account that will be the authority of the OracleWallet

      -
    • -
    • -
      params: OracleWalletInitParams
      -

      OracleWalletInitParams initialization params

      -
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns Promise<[OracleWallet, string]>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/Permission.html b/website/static/api/aptos/classes/Permission.html deleted file mode 100644 index ccf5abf..0000000 --- a/website/static/api/aptos/classes/Permission.html +++ /dev/null @@ -1,153 +0,0 @@ -Permission | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class Permission

-
-

Hierarchy

-
    -
  • Permission
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns Permission

-
-

Properties

-
- -
client: AptosClient
-
- -
switchboardAddress: MaybeHexString
-
-

Methods

-
- -
-
- -
    - -
  • -

    Initialize a Permission

    -
    -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      account: AptosAccount
    • -
    • -
      params: PermissionInitParams
      -

      PermissionInitParams initialization params

      -
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns Promise<[Permission, string]>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/classes/StateAccount.html b/website/static/api/aptos/classes/StateAccount.html deleted file mode 100644 index 7281446..0000000 --- a/website/static/api/aptos/classes/StateAccount.html +++ /dev/null @@ -1,156 +0,0 @@ -StateAccount | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Class StateAccount

-
-

Hierarchy

-
    -
  • StateAccount
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      address: MaybeHexString
    • -
    • -
      payer: AptosAccount
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns StateAccount

-
-

Properties

-
- -
address: MaybeHexString
-
- -
client: AptosClient
-
- -
payer: AptosAccount
-
- -
switchboardAddress: MaybeHexString
-
-

Methods

-
- -
    - -
  • -

    Returns Promise<any>

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      account: AptosAccount
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns Promise<[StateAccount, string]>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/enums/OracleJob.BufferLayoutParseTask.BufferParseType.html b/website/static/api/aptos/enums/OracleJob.BufferLayoutParseTask.BufferParseType.html deleted file mode 100644 index a908abb..0000000 --- a/website/static/api/aptos/enums/OracleJob.BufferLayoutParseTask.BufferParseType.html +++ /dev/null @@ -1,167 +0,0 @@ -BufferParseType | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

BufferParseType enum.

-
-
-
-
- -
-
-

Enumeration Members

-
-
-

Enumeration Members

-
- -
bool: 2
-
- -
f32: 9
-
- -
f64: 12
-
- -
i128: 14
-
- -
i16: 6
-
- -
i32: 8
-
- -
i64: 11
-
- -
i8: 4
-
- -
pubkey: 1
-
- -
u128: 13
-
- -
u16: 5
-
- -
u32: 7
-
- -
u64: 10
-
- -
u8: 3
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/enums/OracleJob.BufferLayoutParseTask.Endian.html b/website/static/api/aptos/enums/OracleJob.BufferLayoutParseTask.Endian.html deleted file mode 100644 index 2ec47d2..0000000 --- a/website/static/api/aptos/enums/OracleJob.BufferLayoutParseTask.Endian.html +++ /dev/null @@ -1,83 +0,0 @@ -Endian | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Endian enum.

-
-
-
-
- -
-
-

Enumeration Members

-
-
-

Enumeration Members

-
- -
BIG_ENDIAN: 1
-
- -
LITTLE_ENDIAN: 0
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/enums/OracleJob.CronParseTask.ClockType.html b/website/static/api/aptos/enums/OracleJob.CronParseTask.ClockType.html deleted file mode 100644 index 560a985..0000000 --- a/website/static/api/aptos/enums/OracleJob.CronParseTask.ClockType.html +++ /dev/null @@ -1,83 +0,0 @@ -ClockType | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

ClockType enum.

-
-
-
-
- -
-
-

Enumeration Members

-
-
-

Enumeration Members

-
- -
ORACLE: 0
-
- -
SYSCLOCK: 1
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/enums/OracleJob.HttpTask.Method.html b/website/static/api/aptos/enums/OracleJob.HttpTask.Method.html deleted file mode 100644 index 3b038ef..0000000 --- a/website/static/api/aptos/enums/OracleJob.HttpTask.Method.html +++ /dev/null @@ -1,90 +0,0 @@ -Method | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Method enum.

-
-
-
-
- -
-
-

Enumeration Members

-
-
-

Enumeration Members

-
- -
METHOD_GET: 1
-
- -
METHOD_POST: 2
-
- -
METHOD_UNKOWN: 0
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/enums/OracleJob.JsonParseTask.AggregationMethod.html b/website/static/api/aptos/enums/OracleJob.JsonParseTask.AggregationMethod.html deleted file mode 100644 index 2a72adb..0000000 --- a/website/static/api/aptos/enums/OracleJob.JsonParseTask.AggregationMethod.html +++ /dev/null @@ -1,111 +0,0 @@ -AggregationMethod | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

AggregationMethod enum.

-
-
-
-
- -
-
-

Enumeration Members

-
-
-

Enumeration Members

-
- -
MAX: 2
-
- -
MEAN: 4
-
- -
MEDIAN: 5
-
- -
MIN: 1
-
- -
NONE: 0
-
- -
SUM: 3
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/enums/OracleJob.LendingRateTask.Field.html b/website/static/api/aptos/enums/OracleJob.LendingRateTask.Field.html deleted file mode 100644 index 9ff020d..0000000 --- a/website/static/api/aptos/enums/OracleJob.LendingRateTask.Field.html +++ /dev/null @@ -1,83 +0,0 @@ -Field | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Field enum.

-
-
-
-
- -
-
-

Enumeration Members

-
-
-

Enumeration Members

-
- -
FIELD_BORROW_RATE: 1
-
- -
FIELD_DEPOSIT_RATE: 0
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/enums/SwitchboardPermission.html b/website/static/api/aptos/enums/SwitchboardPermission.html deleted file mode 100644 index f7b26e4..0000000 --- a/website/static/api/aptos/enums/SwitchboardPermission.html +++ /dev/null @@ -1,85 +0,0 @@ -SwitchboardPermission | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Enumeration SwitchboardPermission

-
-
-
- -
-
-

Enumeration Members

-
- -
PERMIT_ORACLE_HEARTBEAT: 0
-
- -
PERMIT_ORACLE_QUEUE_USAGE: 1
-
- -
PERMIT_VRF_REQUESTS: 2
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/functions/bcsAddressToBytes.html b/website/static/api/aptos/functions/bcsAddressToBytes.html deleted file mode 100644 index f029d7e..0000000 --- a/website/static/api/aptos/functions/bcsAddressToBytes.html +++ /dev/null @@ -1,107 +0,0 @@ -bcsAddressToBytes | @switchboard-xyz/aptos.js
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/functions/createFeed.html b/website/static/api/aptos/functions/createFeed.html deleted file mode 100644 index b35c6ec..0000000 --- a/website/static/api/aptos/functions/createFeed.html +++ /dev/null @@ -1,113 +0,0 @@ -createFeed | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Function createFeed

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      account: AptosAccount
    • -
    • -
      params: CreateFeedParams
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns Promise<[AggregatorAccount, string]>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/functions/createFeedTx.html b/website/static/api/aptos/functions/createFeedTx.html deleted file mode 100644 index af6cff7..0000000 --- a/website/static/api/aptos/functions/createFeedTx.html +++ /dev/null @@ -1,113 +0,0 @@ -createFeedTx | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Function createFeedTx

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      authority: MaybeHexString
    • -
    • -
      params: CreateFeedParams
    • -
    • -
      switchboardAddress: MaybeHexString
    -

    Returns Promise<[AggregatorAccount, Types.TransactionPayload]>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/functions/fetchAggregators.html b/website/static/api/aptos/functions/fetchAggregators.html deleted file mode 100644 index a1bfed4..0000000 --- a/website/static/api/aptos/functions/fetchAggregators.html +++ /dev/null @@ -1,111 +0,0 @@ -fetchAggregators | @switchboard-xyz/aptos.js
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/functions/generateResourceAccountAddress.html b/website/static/api/aptos/functions/generateResourceAccountAddress.html deleted file mode 100644 index 945e6af..0000000 --- a/website/static/api/aptos/functions/generateResourceAccountAddress.html +++ /dev/null @@ -1,109 +0,0 @@ -generateResourceAccountAddress | @switchboard-xyz/aptos.js
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/functions/getAptosTx.html b/website/static/api/aptos/functions/getAptosTx.html deleted file mode 100644 index dd30efa..0000000 --- a/website/static/api/aptos/functions/getAptosTx.html +++ /dev/null @@ -1,120 +0,0 @@ -getAptosTx | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Function getAptosTx

-
-
    - -
  • -

    Generates an aptos tx for client

    - -

    Returns

    -
    -

    Parameters

    -
      -
    • -
      method: string
      -

      Aptos module method (ex: 0xSwitchboard::aggregator_add_job_action)

      -
    • -
    • -
      args: any[]
      -

      Arguments for method (converts numbers to strings)

      -
    • -
    • -
      type_args: string[] = []
      -

      Arguments for type_args

      -
    -

    Returns Types.TransactionPayload

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/functions/sendAptosTx.html b/website/static/api/aptos/functions/sendAptosTx.html deleted file mode 100644 index 76382d2..0000000 --- a/website/static/api/aptos/functions/sendAptosTx.html +++ /dev/null @@ -1,124 +0,0 @@ -sendAptosTx | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Function sendAptosTx

-
-
    - -
  • -

    Sends and waits for an aptos tx to be confirmed

    - -

    Returns

    -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      signer: AptosAccount
    • -
    • -
      method: string
      -

      Aptos module method (ex: 0xSwitchboard::aggregator_add_job_action)

      -
    • -
    • -
      args: any[]
      -

      Arguments for method (converts numbers to strings)

      -
    • -
    • -
      type_args: string[] = []
    • -
    • -
      retryCount: number = 2
    -

    Returns Promise<string>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/functions/sendRawAptosTx.html b/website/static/api/aptos/functions/sendRawAptosTx.html deleted file mode 100644 index a6c27d6..0000000 --- a/website/static/api/aptos/functions/sendRawAptosTx.html +++ /dev/null @@ -1,117 +0,0 @@ -sendRawAptosTx | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Function sendRawAptosTx

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      client: AptosClient
    • -
    • -
      signer: AptosAccount
    • -
    • -
      method: string
    • -
    • -
      raw_args: any[]
    • -
    • -
      raw_type_args: Seq<TypeTag> = []
    • -
    • -
      retryCount: number = 2
    -

    Returns Promise<string>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/functions/simulateAndRun.html b/website/static/api/aptos/functions/simulateAndRun.html deleted file mode 100644 index 9e7df39..0000000 --- a/website/static/api/aptos/functions/simulateAndRun.html +++ /dev/null @@ -1,111 +0,0 @@ -simulateAndRun | @switchboard-xyz/aptos.js
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/index.html b/website/static/api/aptos/index.html deleted file mode 100644 index b2460ab..0000000 --- a/website/static/api/aptos/index.html +++ /dev/null @@ -1,173 +0,0 @@ -@switchboard-xyz/aptos.js
-
- -
-
-
-
-

@switchboard-xyz/aptos.js

-
- -

Aptos Switchboard SDK

-
-

GitHub  -twitter  

-

A library of utility functions to interact with Switchboard Modules on Aptos

- - -

Install

-
-
npm i --save https://www.npmjs.com/package/@switchboard-xyz/aptos.js
-
- - -

Creating Feeds

-
-
import { Buffer } from "buffer";
import { AptosClient, AptosAccount, FaucetClient, HexString } from "aptos";
import {
AptosEvent,
EventCallback,
OracleJob,
createFeed,
} from "@switchboard-xyz/aptos.js";
import Big from "big.js";

const NODE_URL = "https://fullnode.devnet.aptoslabs.com/v1";
const FAUCET_URL = "https://faucet.devnet.aptoslabs.com";

const SWITCHBOARD_DEVNET_ADDRESS =
"0x14611263909398572be034debb2e61b6751cafbeaddd994b9a1250cb76b99d38";

const SWITCHBOARD_QUEUE_ADDRESS =
"0x14611263909398572be034debb2e61b6751cafbeaddd994b9a1250cb76b99d38";

const SWITCHBOARD_CRANK_ADDRESS =
"0x14611263909398572be034debb2e61b6751cafbeaddd994b9a1250cb76b99d38";

const client = new AptosClient(NODE_URL);
const faucetClient = new FaucetClient(NODE_URL, FAUCET_URL);

// create new user
let user = new AptosAccount();

await faucetClient.fundAccount(user.address(), 50000);
console.log(`User account ${user.address().hex()} created + funded.`);

// Make Job data for btc price
const serializedJob = Buffer.from(
OracleJob.encodeDelimited(
OracleJob.create({
tasks: [
{
httpTask: {
url: "https://www.binance.us/api/v3/ticker/price?symbol=BTCUSD",
},
},
{
jsonParseTask: {
path: "$.price",
},
},
],
})
).finish()
);

const [aggregator, createFeedTx] = await createFeed(
client,
user,
{
authority: user.address(),
queueAddress: SWITCHBOARD_QUEUE_ADDRESS,
batchSize: 1,
minJobResults: 1,
minOracleResults: 1,
minUpdateDelaySeconds: 5,
coinType: "0x1::aptos_coin::AptosCoin",
crank: SWITCHBOARD_CRANK_ADDRESS,
initialLoadAmount: 1000,
jobs: [
{
name: "BTC/USD",
metadata: "binance",
authority: user.address().hex(),
data: serializedJob.toString(),
weight: 1,
},
],
},
SWITCHBOARD_DEVNET_ADDRESS
);

console.log(
`Created Aggregator and Lease resources at account address ${aggregator.address}. Tx hash ${createFeedTx}`
);

// Manually trigger an update
await aggregator.openRound(user); -
- - -

Listening to Updates

-
-
/**
* Listen to Aggregator Updates Off-Chain
*/

// create event listener
const onAggregatorUpdate = (
client: AptosClient,
cb: EventCallback,
pollIntervalMs: number = 1000
) => {
const event = new AptosEvent(
client,
HexString.ensure(SWITCHBOARD_DEVNET_ADDRESS),
`${SWITCHBOARD_DEVNET_ADDRESS}::switchboard::State`,
"aggregator_update_events",
pollIntervalMs
);
event.onTrigger(cb);
return event;
};

// initialize event listener
const updatePoller = onAggregatorUpdate(client, async (e) => {
if (aggregator.address == e.data.aggregator_address) {
console.log(`NEW RESULT:`, e.data);
}
}); -
- - -

Reading Feeds

-
-
import { Aggregator } from "sbv2-aptos";

const aggregatorAccount: Aggregator = new Aggregator(
client,
aggregator_address,
SWITCHBOARD_DEVNET_ADDRESS
);

console.log(await aggregatorAccount.loadData()); -
- - -

Aptos

-
- - -

Move.toml

-
-
[addresses]
switchboard = "0x14611263909398572be034debb2e61b6751cafbeaddd994b9a1250cb76b99d38"

[dependencies]
MoveStdlib = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/move-stdlib/", rev = "f8bf8fdeec33c8c6ff3d1cbaf4990b9e54c2176a" }
AptosFramework = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-framework/", rev = "f8bf8fdeec33c8c6ff3d1cbaf4990b9e54c2176a" }
AptosStdlib = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-stdlib/", rev = "f8bf8fdeec33c8c6ff3d1cbaf4990b9e54c2176a" }
Switchboard = { git = "https://github.com/switchboard-xyz/aptos-sdk.git", subdir = "switchboard-move/switchboard/", rev = "main" } -
- - -

Reading Feeds

-
-
use switchboard::aggregator;
-use switchboard::math::{Self, SwitchboardDecimal};
-
-// store latest value
-struct AggregatorInfo has copy, drop, store, key {
-    aggregator_addr: address,
-    latest_result: u128,
-    latest_result_scaling_factor: u8,
-    latest_result_neg: bool,
-}
-
-// get latest value
-public fun save_latest_value(aggregator_addr: address) {
-    // get latest value
-    let latest_value = aggregator::latest_value(aggregator_addr);
-    let (value, scaling_factor, neg) = math::unpack(latest_value);
-    move_to(account, AggregatorInfo {
-        aggregator_addr: aggregator_addr,
-        latest_result: value,
-        latest_result_scaling_factor: scaling_factor,
-        latest_result_neg: neg,
-    });
-}
-
-// some testing that uses aggregator test utility functions
-#[test(account = @0x1)]
-public entry fun test_aggregator(account: &signer) {
-
-    // creates test aggregator with data
-    aggregator::new_test(account, 100, 0, false);
-
-    // print out value
-    std::debug::print(&aggregator::latest_value(signer::address_of(account)));
-}
-
-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/AggregatorAddJobParams.html b/website/static/api/aptos/interfaces/AggregatorAddJobParams.html deleted file mode 100644 index 901b405..0000000 --- a/website/static/api/aptos/interfaces/AggregatorAddJobParams.html +++ /dev/null @@ -1,82 +0,0 @@ -AggregatorAddJobParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface AggregatorAddJobParams

-
-

Hierarchy

-
    -
  • AggregatorAddJobParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
job: MaybeHexString
-
- -
weight?: number
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/AggregatorInitParams.html b/website/static/api/aptos/interfaces/AggregatorInitParams.html deleted file mode 100644 index 4825214..0000000 --- a/website/static/api/aptos/interfaces/AggregatorInitParams.html +++ /dev/null @@ -1,187 +0,0 @@ -AggregatorInitParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface AggregatorInitParams

-
-

Hierarchy

-
    -
  • AggregatorInitParams
-
-
-
- -
-
-

Properties

-
- -
authority: MaybeHexString
-
- -
batchSize: number
-
- -
coinType: string
-
- -
disableCrank?: boolean
-
- -
expiration?: number
-
- -
forceReportPeriod?: number
-
- -
historySize?: number
-
- -
metadata?: string
-
- -
minJobResults: number
-
- -
minOracleResults: number
-
- -
minUpdateDelaySeconds: number
-
- -
name?: string
-
- -
queueAddress: MaybeHexString
-
- -
readCharge?: number
-
- -
rewardEscrow?: string
-
- -
startAfter?: number
-
- -
varianceThreshold?: Big
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/AggregatorRemoveJobParams.html b/website/static/api/aptos/interfaces/AggregatorRemoveJobParams.html deleted file mode 100644 index 06caef7..0000000 --- a/website/static/api/aptos/interfaces/AggregatorRemoveJobParams.html +++ /dev/null @@ -1,82 +0,0 @@ -AggregatorRemoveJobParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface AggregatorRemoveJobParams

-
-

Hierarchy

-
    -
  • AggregatorRemoveJobParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
aggregatorAddress: string
-
- -
job: string
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/AggregatorSaveResultParams.html b/website/static/api/aptos/interfaces/AggregatorSaveResultParams.html deleted file mode 100644 index 2c1abc3..0000000 --- a/website/static/api/aptos/interfaces/AggregatorSaveResultParams.html +++ /dev/null @@ -1,117 +0,0 @@ -AggregatorSaveResultParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface AggregatorSaveResultParams

-
-

Hierarchy

-
    -
  • AggregatorSaveResultParams
-
-
-
- -
-
-

Properties

-
- -
error: boolean
-
- -
jobsChecksum: string
-
- -
maxResponse: Big
-
- -
minResponse: Big
-
- -
oracleAddress: MaybeHexString
-
- -
oracleIdx: number
-
- -
value: Big
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/AggregatorSetConfigParams.html b/website/static/api/aptos/interfaces/AggregatorSetConfigParams.html deleted file mode 100644 index f115240..0000000 --- a/website/static/api/aptos/interfaces/AggregatorSetConfigParams.html +++ /dev/null @@ -1,194 +0,0 @@ -AggregatorSetConfigParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface AggregatorSetConfigParams

-
-

Hierarchy

-
    -
  • AggregatorSetConfigParams
-
-
-
- -
-
-

Properties

-
- -
address: string
-
- -
authority: string
-
- -
batchSize: number
-
- -
coinType?: string
-
- -
disableCrank: boolean
-
- -
expiration?: number
-
- -
forceReportPeriod?: number
-
- -
historySize: number
-
- -
metadata?: string
-
- -
minJobResults: number
-
- -
minOracleResults: number
-
- -
minUpdateDelaySeconds: number
-
- -
name?: string
-
- -
queueAddress?: string
-
- -
readCharge: number
-
- -
rewardEscrow: string
-
- -
startAfter?: number
-
- -
varianceThreshold?: Big
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/CrankInitParams.html b/website/static/api/aptos/interfaces/CrankInitParams.html deleted file mode 100644 index 50100de..0000000 --- a/website/static/api/aptos/interfaces/CrankInitParams.html +++ /dev/null @@ -1,89 +0,0 @@ -CrankInitParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface CrankInitParams

-
-

Hierarchy

-
    -
  • CrankInitParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
address: string
-
- -
coinType: string
-
- -
queueAddress: MaybeHexString
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/CrankPopParams.html b/website/static/api/aptos/interfaces/CrankPopParams.html deleted file mode 100644 index e96e942..0000000 --- a/website/static/api/aptos/interfaces/CrankPopParams.html +++ /dev/null @@ -1,75 +0,0 @@ -CrankPopParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface CrankPopParams

-
-

Hierarchy

-
    -
  • CrankPopParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
crankAddress: string
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/CrankPushParams.html b/website/static/api/aptos/interfaces/CrankPushParams.html deleted file mode 100644 index cc25281..0000000 --- a/website/static/api/aptos/interfaces/CrankPushParams.html +++ /dev/null @@ -1,75 +0,0 @@ -CrankPushParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface CrankPushParams

-
-

Hierarchy

-
    -
  • CrankPushParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
aggregatorAddress: string
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/IOracleJob.html b/website/static/api/aptos/interfaces/IOracleJob.html deleted file mode 100644 index decc4c8..0000000 --- a/website/static/api/aptos/interfaces/IOracleJob.html +++ /dev/null @@ -1,84 +0,0 @@ -IOracleJob | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IOracleJob

-
-

Properties of an OracleJob.

-
-
-

Hierarchy

-
    -
  • IOracleJob
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
tasks?: ITask[]
-

OracleJob tasks

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/JobInitParams.html b/website/static/api/aptos/interfaces/JobInitParams.html deleted file mode 100644 index 34269ab..0000000 --- a/website/static/api/aptos/interfaces/JobInitParams.html +++ /dev/null @@ -1,103 +0,0 @@ -JobInitParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface JobInitParams

-
-

Hierarchy

-
    -
  • JobInitParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
authority: MaybeHexString
-
- -
data: string
-
- -
metadata: string
-
- -
name: string
-
- -
weight?: number
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/LeaseExtendParams.html b/website/static/api/aptos/interfaces/LeaseExtendParams.html deleted file mode 100644 index 45aa082..0000000 --- a/website/static/api/aptos/interfaces/LeaseExtendParams.html +++ /dev/null @@ -1,75 +0,0 @@ -LeaseExtendParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface LeaseExtendParams

-
-

Hierarchy

-
    -
  • LeaseExtendParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
loadAmount: number
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/LeaseInitParams.html b/website/static/api/aptos/interfaces/LeaseInitParams.html deleted file mode 100644 index 56951b4..0000000 --- a/website/static/api/aptos/interfaces/LeaseInitParams.html +++ /dev/null @@ -1,96 +0,0 @@ -LeaseInitParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface LeaseInitParams

-
-

Hierarchy

-
    -
  • LeaseInitParams
-
-
-
- -
-
-

Properties

-
- -
coinType: string
-
- -
initialAmount: number
-
- -
queueAddress: MaybeHexString
-
- -
withdrawAuthority: MaybeHexString
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/LeaseWithdrawParams.html b/website/static/api/aptos/interfaces/LeaseWithdrawParams.html deleted file mode 100644 index 4642aef..0000000 --- a/website/static/api/aptos/interfaces/LeaseWithdrawParams.html +++ /dev/null @@ -1,75 +0,0 @@ -LeaseWithdrawParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface LeaseWithdrawParams

-
-

Hierarchy

-
    -
  • LeaseWithdrawParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
amount: number
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleInitParams.html b/website/static/api/aptos/interfaces/OracleInitParams.html deleted file mode 100644 index f34d702..0000000 --- a/website/static/api/aptos/interfaces/OracleInitParams.html +++ /dev/null @@ -1,110 +0,0 @@ -OracleInitParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface OracleInitParams

-
-

Hierarchy

-
    -
  • OracleInitParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
address: MaybeHexString
-
- -
authority: MaybeHexString
-
- -
coinType: string
-
- -
metadata: string
-
- -
name: string
-
- -
queue: MaybeHexString
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.CacheTask.ICacheItem.html b/website/static/api/aptos/interfaces/OracleJob.CacheTask.ICacheItem.html deleted file mode 100644 index 7bad188..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.CacheTask.ICacheItem.html +++ /dev/null @@ -1,95 +0,0 @@ -ICacheItem | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Properties of a CacheItem.

-
-
-

Hierarchy

-
    -
  • ICacheItem
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- - -

CacheItem job

-
-
- -
variableName?: string
-

CacheItem variableName

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.DefiKingdomsTask.IToken.html b/website/static/api/aptos/interfaces/OracleJob.DefiKingdomsTask.IToken.html deleted file mode 100644 index dffc261..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.DefiKingdomsTask.IToken.html +++ /dev/null @@ -1,95 +0,0 @@ -IToken | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Properties of a Token.

-
-
-

Hierarchy

-
    -
  • IToken
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
address?: string
-

Token address

-
-
- -
decimals?: number
-

Token decimals

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.HttpTask.IHeader.html b/website/static/api/aptos/interfaces/OracleJob.HttpTask.IHeader.html deleted file mode 100644 index 15b0616..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.HttpTask.IHeader.html +++ /dev/null @@ -1,95 +0,0 @@ -IHeader | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Properties of a Header.

-
-
-

Hierarchy

-
    -
  • IHeader
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
key?: string
-

Header key

-
-
- -
value?: string
-

Header value

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IAddTask.html b/website/static/api/aptos/interfaces/OracleJob.IAddTask.html deleted file mode 100644 index 93edd16..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IAddTask.html +++ /dev/null @@ -1,112 +0,0 @@ -IAddTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IAddTask

-
-

Properties of an AddTask.

-
-
-

Hierarchy

-
    -
  • IAddTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
aggregatorPubkey?: string
-

AddTask aggregatorPubkey

-
-
- -
big?: string
-

AddTask big

-
-
- - -

AddTask job

-
-
- -
scalar?: number
-

AddTask scalar

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IAnchorFetchTask.html b/website/static/api/aptos/interfaces/OracleJob.IAnchorFetchTask.html deleted file mode 100644 index 3b42a36..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IAnchorFetchTask.html +++ /dev/null @@ -1,94 +0,0 @@ -IAnchorFetchTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IAnchorFetchTask

-
-

Properties of an AnchorFetchTask.

-
-
-

Hierarchy

-
    -
  • IAnchorFetchTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
accountAddress?: string
-

AnchorFetchTask accountAddress

-
-
- -
programId?: string
-

AnchorFetchTask programId

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IBufferLayoutParseTask.html b/website/static/api/aptos/interfaces/OracleJob.IBufferLayoutParseTask.html deleted file mode 100644 index f7f1974..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IBufferLayoutParseTask.html +++ /dev/null @@ -1,103 +0,0 @@ -IBufferLayoutParseTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IBufferLayoutParseTask

-
-

Properties of a BufferLayoutParseTask.

-
-
-

Hierarchy

-
    -
  • IBufferLayoutParseTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
endian?: Endian
-

BufferLayoutParseTask endian

-
-
- -
offset?: number
-

BufferLayoutParseTask offset

-
-
- - -

BufferLayoutParseTask type

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ICacheTask.html b/website/static/api/aptos/interfaces/OracleJob.ICacheTask.html deleted file mode 100644 index 56e7759..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ICacheTask.html +++ /dev/null @@ -1,85 +0,0 @@ -ICacheTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ICacheTask

-
-

Properties of a CacheTask.

-
-
-

Hierarchy

-
    -
  • ICacheTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
cacheItems?: ICacheItem[]
-

CacheTask cacheItems

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IConditionalTask.html b/website/static/api/aptos/interfaces/OracleJob.IConditionalTask.html deleted file mode 100644 index 8b76a86..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IConditionalTask.html +++ /dev/null @@ -1,94 +0,0 @@ -IConditionalTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IConditionalTask

-
-

Properties of a ConditionalTask.

-
-
-

Hierarchy

-
    -
  • IConditionalTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
attempt?: ITask[]
-

ConditionalTask attempt

-
-
- -
onFailure?: ITask[]
-

ConditionalTask onFailure

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ICronParseTask.html b/website/static/api/aptos/interfaces/OracleJob.ICronParseTask.html deleted file mode 100644 index 65c7bf0..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ICronParseTask.html +++ /dev/null @@ -1,103 +0,0 @@ -ICronParseTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ICronParseTask

-
-

Properties of a CronParseTask.

-
-
-

Hierarchy

-
    -
  • ICronParseTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
clock?: ClockType
-

CronParseTask clock

-
-
- -
clockOffset?: number
-

CronParseTask clockOffset

-
-
- -
cronPattern?: string
-

CronParseTask cronPattern

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IDefiKingdomsTask.html b/website/static/api/aptos/interfaces/OracleJob.IDefiKingdomsTask.html deleted file mode 100644 index 27a23eb..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IDefiKingdomsTask.html +++ /dev/null @@ -1,103 +0,0 @@ -IDefiKingdomsTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IDefiKingdomsTask

-
-

Properties of a DefiKingdomsTask.

-
-
-

Hierarchy

-
    -
  • IDefiKingdomsTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
inToken?: IToken
-

DefiKingdomsTask inToken

-
-
- -
outToken?: IToken
-

DefiKingdomsTask outToken

-
-
- -
provider?: string
-

DefiKingdomsTask provider

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IDivideTask.html b/website/static/api/aptos/interfaces/OracleJob.IDivideTask.html deleted file mode 100644 index 90b05c7..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IDivideTask.html +++ /dev/null @@ -1,112 +0,0 @@ -IDivideTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IDivideTask

-
-

Properties of a DivideTask.

-
-
-

Hierarchy

-
    -
  • IDivideTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
aggregatorPubkey?: string
-

DivideTask aggregatorPubkey

-
-
- -
big?: string
-

DivideTask big

-
-
- - -

DivideTask job

-
-
- -
scalar?: number
-

DivideTask scalar

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IHttpTask.html b/website/static/api/aptos/interfaces/OracleJob.IHttpTask.html deleted file mode 100644 index a2661f3..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IHttpTask.html +++ /dev/null @@ -1,112 +0,0 @@ -IHttpTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IHttpTask

-
-

Properties of a HttpTask.

-
-
-

Hierarchy

-
    -
  • IHttpTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
body?: string
-

HttpTask body

-
-
- -
headers?: IHeader[]
-

HttpTask headers

-
-
- -
method?: Method
-

HttpTask method

-
-
- -
url?: string
-

HttpTask url

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IJsonParseTask.html b/website/static/api/aptos/interfaces/OracleJob.IJsonParseTask.html deleted file mode 100644 index eb43a10..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IJsonParseTask.html +++ /dev/null @@ -1,94 +0,0 @@ -IJsonParseTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IJsonParseTask

-
-

Properties of a JsonParseTask.

-
-
-

Hierarchy

-
    -
  • IJsonParseTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
aggregationMethod?: AggregationMethod
-

JsonParseTask aggregationMethod

-
-
- -
path?: string
-

JsonParseTask path

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IJupiterSwapTask.html b/website/static/api/aptos/interfaces/OracleJob.IJupiterSwapTask.html deleted file mode 100644 index 5b3c4ea..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IJupiterSwapTask.html +++ /dev/null @@ -1,103 +0,0 @@ -IJupiterSwapTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IJupiterSwapTask

-
-

Properties of a JupiterSwapTask.

-
-
-

Hierarchy

-
    -
  • IJupiterSwapTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
- -
baseAmount?: number
-

JupiterSwapTask baseAmount

-
-
- -
inTokenAddress?: string
-

JupiterSwapTask inTokenAddress

-
-
- -
outTokenAddress?: string
-

JupiterSwapTask outTokenAddress

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ILendingRateTask.html b/website/static/api/aptos/interfaces/OracleJob.ILendingRateTask.html deleted file mode 100644 index cb1cc56..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ILendingRateTask.html +++ /dev/null @@ -1,103 +0,0 @@ -ILendingRateTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ILendingRateTask

-
-

Properties of a LendingRateTask.

-
-
-

Hierarchy

-
    -
  • ILendingRateTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
assetMint?: string
-

LendingRateTask assetMint

-
-
- -
field?: Field
-

LendingRateTask field

-
-
- -
protocol?: string
-

LendingRateTask protocol

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ILpExchangeRateTask.html b/website/static/api/aptos/interfaces/OracleJob.ILpExchangeRateTask.html deleted file mode 100644 index 542f267..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ILpExchangeRateTask.html +++ /dev/null @@ -1,148 +0,0 @@ -ILpExchangeRateTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ILpExchangeRateTask

-
-

Properties of a LpExchangeRateTask.

-
-
-

Hierarchy

-
    -
  • ILpExchangeRateTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
- -
inTokenAddress?: string
-

LpExchangeRateTask inTokenAddress

-
-
- -
mercurialPoolAddress?: string
-

LpExchangeRateTask mercurialPoolAddress

-
-
- -
orcaPoolAddress?: string
-

LpExchangeRateTask orcaPoolAddress

-
-
- -
orcaPoolTokenMintAddress?: string
-

LpExchangeRateTask orcaPoolTokenMintAddress

-
-
- -
outTokenAddress?: string
-

LpExchangeRateTask outTokenAddress

-
-
- -
portReserveAddress?: string
-

LpExchangeRateTask portReserveAddress

-
-
- -
raydiumPoolAddress?: string
-

LpExchangeRateTask raydiumPoolAddress

-
-
- -
saberPoolAddress?: string
-

LpExchangeRateTask saberPoolAddress

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ILpTokenPriceTask.html b/website/static/api/aptos/interfaces/OracleJob.ILpTokenPriceTask.html deleted file mode 100644 index 00b34bc..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ILpTokenPriceTask.html +++ /dev/null @@ -1,139 +0,0 @@ -ILpTokenPriceTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ILpTokenPriceTask

-
-

Properties of a LpTokenPriceTask.

-
-
-

Hierarchy

-
    -
  • ILpTokenPriceTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
- -
mercurialPoolAddress?: string
-

LpTokenPriceTask mercurialPoolAddress

-
-
- -
orcaPoolAddress?: string
-

LpTokenPriceTask orcaPoolAddress

-
-
- -
priceFeedAddresses?: string[]
-

LpTokenPriceTask priceFeedAddresses

-
-
- -
priceFeedJobs?: IOracleJob[]
-

LpTokenPriceTask priceFeedJobs

-
-
- -
raydiumPoolAddress?: string
-

LpTokenPriceTask raydiumPoolAddress

-
-
- -
saberPoolAddress?: string
-

LpTokenPriceTask saberPoolAddress

-
-
- -
useFairPrice?: boolean
-

LpTokenPriceTask useFairPrice

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IMangoPerpMarketTask.html b/website/static/api/aptos/interfaces/OracleJob.IMangoPerpMarketTask.html deleted file mode 100644 index 4251699..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IMangoPerpMarketTask.html +++ /dev/null @@ -1,85 +0,0 @@ -IMangoPerpMarketTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IMangoPerpMarketTask

-
-

Properties of a MangoPerpMarketTask.

-
-
-

Hierarchy

-
    -
  • IMangoPerpMarketTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
perpMarketAddress?: string
-

MangoPerpMarketTask perpMarketAddress

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IMarinadeStateTask.html b/website/static/api/aptos/interfaces/OracleJob.IMarinadeStateTask.html deleted file mode 100644 index 64a364c..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IMarinadeStateTask.html +++ /dev/null @@ -1,142 +0,0 @@ -IMarinadeStateTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IMarinadeStateTask

-
-

Properties of a MarinadeStateTask.

-
-
-

Hierarchy

-
    -
  • IMarinadeStateTask
-
-

Implemented by

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IMaxTask.html b/website/static/api/aptos/interfaces/OracleJob.IMaxTask.html deleted file mode 100644 index 9ceac51..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IMaxTask.html +++ /dev/null @@ -1,94 +0,0 @@ -IMaxTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IMaxTask

-
-

Properties of a MaxTask.

-
-
-

Hierarchy

-
    -
  • IMaxTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
jobs?: IOracleJob[]
-

MaxTask jobs

-
-
- -
tasks?: ITask[]
-

MaxTask tasks

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IMeanTask.html b/website/static/api/aptos/interfaces/OracleJob.IMeanTask.html deleted file mode 100644 index 4e95f09..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IMeanTask.html +++ /dev/null @@ -1,94 +0,0 @@ -IMeanTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IMeanTask

-
-

Properties of a MeanTask.

-
-
-

Hierarchy

-
    -
  • IMeanTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
jobs?: IOracleJob[]
-

MeanTask jobs

-
-
- -
tasks?: ITask[]
-

MeanTask tasks

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IMedianTask.html b/website/static/api/aptos/interfaces/OracleJob.IMedianTask.html deleted file mode 100644 index 42b1d40..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IMedianTask.html +++ /dev/null @@ -1,103 +0,0 @@ -IMedianTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IMedianTask

-
-

Properties of a MedianTask.

-
-
-

Hierarchy

-
    -
  • IMedianTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
jobs?: IOracleJob[]
-

MedianTask jobs

-
-
- -
minSuccessfulRequired?: number
-

MedianTask minSuccessfulRequired

-
-
- -
tasks?: ITask[]
-

MedianTask tasks

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IMultiplyTask.html b/website/static/api/aptos/interfaces/OracleJob.IMultiplyTask.html deleted file mode 100644 index c2c3c5a..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IMultiplyTask.html +++ /dev/null @@ -1,112 +0,0 @@ -IMultiplyTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IMultiplyTask

-
-

Properties of a MultiplyTask.

-
-
-

Hierarchy

-
    -
  • IMultiplyTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
aggregatorPubkey?: string
-

MultiplyTask aggregatorPubkey

-
-
- -
big?: string
-

MultiplyTask big

-
-
- - -

MultiplyTask job

-
-
- -
scalar?: number
-

MultiplyTask scalar

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IOracleTask.html b/website/static/api/aptos/interfaces/OracleJob.IOracleTask.html deleted file mode 100644 index feeea40..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IOracleTask.html +++ /dev/null @@ -1,112 +0,0 @@ -IOracleTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IOracleTask

-
-

Properties of an OracleTask.

-
-
-

Hierarchy

-
    -
  • IOracleTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
- -
chainlinkAddress?: string
-

OracleTask chainlinkAddress

-
-
- -
pythAddress?: string
-

OracleTask pythAddress

-
-
- -
pythAllowedConfidenceInterval?: number
-

OracleTask pythAllowedConfidenceInterval

-
-
- -
switchboardAddress?: string
-

OracleTask switchboardAddress

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IPancakeswapExchangeRateTask.html b/website/static/api/aptos/interfaces/OracleJob.IPancakeswapExchangeRateTask.html deleted file mode 100644 index 7983ae7..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IPancakeswapExchangeRateTask.html +++ /dev/null @@ -1,121 +0,0 @@ -IPancakeswapExchangeRateTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IPancakeswapExchangeRateTask

-
-

Properties of a PancakeswapExchangeRateTask.

-
-
-

Hierarchy

-
    -
  • IPancakeswapExchangeRateTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
- -
inTokenAddress?: string
-

PancakeswapExchangeRateTask inTokenAddress

-
-
- -
inTokenAmount?: number
-

PancakeswapExchangeRateTask inTokenAmount

-
-
- -
outTokenAddress?: string
-

PancakeswapExchangeRateTask outTokenAddress

-
-
- -
provider?: string
-

PancakeswapExchangeRateTask provider

-
-
- -
slippage?: number
-

PancakeswapExchangeRateTask slippage

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IPerpMarketTask.html b/website/static/api/aptos/interfaces/OracleJob.IPerpMarketTask.html deleted file mode 100644 index 13f8478..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IPerpMarketTask.html +++ /dev/null @@ -1,112 +0,0 @@ -IPerpMarketTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IPerpMarketTask

-
-

Properties of a PerpMarketTask.

-
-
-

Hierarchy

-
    -
  • IPerpMarketTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
- -
driftMarketAddress?: string
-

PerpMarketTask driftMarketAddress

-
-
- -
mangoMarketAddress?: string
-

PerpMarketTask mangoMarketAddress

-
-
- -
zetaMarketAddress?: string
-

PerpMarketTask zetaMarketAddress

-
-
- -
zoMarketAddress?: string
-

PerpMarketTask zoMarketAddress

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IPowTask.html b/website/static/api/aptos/interfaces/OracleJob.IPowTask.html deleted file mode 100644 index c8c454d..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IPowTask.html +++ /dev/null @@ -1,103 +0,0 @@ -IPowTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IPowTask

-
-

Properties of a PowTask.

-
-
-

Hierarchy

-
    -
  • IPowTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
aggregatorPubkey?: string
-

PowTask aggregatorPubkey

-
-
- -
big?: string
-

PowTask big

-
-
- -
scalar?: number
-

PowTask scalar

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IRegexExtractTask.html b/website/static/api/aptos/interfaces/OracleJob.IRegexExtractTask.html deleted file mode 100644 index 4e55b61..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IRegexExtractTask.html +++ /dev/null @@ -1,94 +0,0 @@ -IRegexExtractTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IRegexExtractTask

-
-

Properties of a RegexExtractTask.

-
-
-

Hierarchy

-
    -
  • IRegexExtractTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
groupNumber?: number
-

RegexExtractTask groupNumber

-
-
- -
pattern?: string
-

RegexExtractTask pattern

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ISerumSwapTask.html b/website/static/api/aptos/interfaces/OracleJob.ISerumSwapTask.html deleted file mode 100644 index 13178d1..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ISerumSwapTask.html +++ /dev/null @@ -1,85 +0,0 @@ -ISerumSwapTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ISerumSwapTask

-
-

Properties of a SerumSwapTask.

-
-
-

Hierarchy

-
    -
  • ISerumSwapTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
serumPoolAddress?: string
-

SerumSwapTask serumPoolAddress

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ISolanaAccountDataFetchTask.html b/website/static/api/aptos/interfaces/OracleJob.ISolanaAccountDataFetchTask.html deleted file mode 100644 index 9c08ca1..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ISolanaAccountDataFetchTask.html +++ /dev/null @@ -1,85 +0,0 @@ -ISolanaAccountDataFetchTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ISolanaAccountDataFetchTask

-
-

Properties of a SolanaAccountDataFetchTask.

-
-
-

Hierarchy

-
    -
  • ISolanaAccountDataFetchTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
pubkey?: string
-

SolanaAccountDataFetchTask pubkey

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ISplStakePoolTask.html b/website/static/api/aptos/interfaces/OracleJob.ISplStakePoolTask.html deleted file mode 100644 index 58ab0ba..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ISplStakePoolTask.html +++ /dev/null @@ -1,85 +0,0 @@ -ISplStakePoolTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ISplStakePoolTask

-
-

Properties of a SplStakePoolTask.

-
-
-

Hierarchy

-
    -
  • ISplStakePoolTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
pubkey?: string
-

SplStakePoolTask pubkey

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ISplTokenParseTask.html b/website/static/api/aptos/interfaces/OracleJob.ISplTokenParseTask.html deleted file mode 100644 index 94e5d85..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ISplTokenParseTask.html +++ /dev/null @@ -1,94 +0,0 @@ -ISplTokenParseTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ISplTokenParseTask

-
-

Properties of a SplTokenParseTask.

-
-
-

Hierarchy

-
    -
  • ISplTokenParseTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
- -
mintAddress?: string
-

SplTokenParseTask mintAddress

-
-
- -
tokenAccountAddress?: string
-

SplTokenParseTask tokenAccountAddress

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ISubtractTask.html b/website/static/api/aptos/interfaces/OracleJob.ISubtractTask.html deleted file mode 100644 index 5981ed2..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ISubtractTask.html +++ /dev/null @@ -1,112 +0,0 @@ -ISubtractTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ISubtractTask

-
-

Properties of a SubtractTask.

-
-
-

Hierarchy

-
    -
  • ISubtractTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
aggregatorPubkey?: string
-

SubtractTask aggregatorPubkey

-
-
- -
big?: string
-

SubtractTask big

-
-
- - -

SubtractTask job

-
-
- -
scalar?: number
-

SubtractTask scalar

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ISushiswapExchangeRateTask.html b/website/static/api/aptos/interfaces/OracleJob.ISushiswapExchangeRateTask.html deleted file mode 100644 index f45e04d..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ISushiswapExchangeRateTask.html +++ /dev/null @@ -1,121 +0,0 @@ -ISushiswapExchangeRateTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ISushiswapExchangeRateTask

-
-

Properties of a SushiswapExchangeRateTask.

-
-
-

Hierarchy

-
    -
  • ISushiswapExchangeRateTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
- -
inTokenAddress?: string
-

SushiswapExchangeRateTask inTokenAddress

-
-
- -
inTokenAmount?: number
-

SushiswapExchangeRateTask inTokenAmount

-
-
- -
outTokenAddress?: string
-

SushiswapExchangeRateTask outTokenAddress

-
-
- -
provider?: string
-

SushiswapExchangeRateTask provider

-
-
- -
slippage?: number
-

SushiswapExchangeRateTask slippage

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ISysclockOffsetTask.html b/website/static/api/aptos/interfaces/OracleJob.ISysclockOffsetTask.html deleted file mode 100644 index 36bb629..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ISysclockOffsetTask.html +++ /dev/null @@ -1,142 +0,0 @@ -ISysclockOffsetTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ISysclockOffsetTask

-
-

Properties of a SysclockOffsetTask.

-
-
-

Hierarchy

-
    -
  • ISysclockOffsetTask
-
-

Implemented by

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ITask.html b/website/static/api/aptos/interfaces/OracleJob.ITask.html deleted file mode 100644 index 4e066e4..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ITask.html +++ /dev/null @@ -1,418 +0,0 @@ -ITask | @switchboard-xyz/aptos.js
-
- -
-
-
- -
-

Properties of a Task.

-
-
-

Hierarchy

-
    -
  • ITask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
- -
addTask?: IAddTask
-

Task addTask

-
-
- -
anchorFetchTask?: IAnchorFetchTask
-

Task anchorFetchTask

-
-
- -
bufferLayoutParseTask?: IBufferLayoutParseTask
-

Task bufferLayoutParseTask

-
-
- -
cacheTask?: ICacheTask
-

Task cacheTask

-
-
- -
conditionalTask?: IConditionalTask
-

Task conditionalTask

-
-
- -
cronParseTask?: ICronParseTask
-

Task cronParseTask

-
-
- -
defiKingdomsTask?: IDefiKingdomsTask
-

Task defiKingdomsTask

-
-
- -
divideTask?: IDivideTask
-

Task divideTask

-
-
- -
httpTask?: IHttpTask
-

Task httpTask

-
-
- -
jsonParseTask?: IJsonParseTask
-

Task jsonParseTask

-
-
- -
jupiterSwapTask?: IJupiterSwapTask
-

Task jupiterSwapTask

-
-
- -
lendingRateTask?: ILendingRateTask
-

Task lendingRateTask

-
-
- -
lpExchangeRateTask?: ILpExchangeRateTask
-

Task lpExchangeRateTask

-
-
- -
lpTokenPriceTask?: ILpTokenPriceTask
-

Task lpTokenPriceTask

-
-
- -
mangoPerpMarketTask?: IMangoPerpMarketTask
-

Task mangoPerpMarketTask

-
-
- -
marinadeStateTask?: IMarinadeStateTask
-

Task marinadeStateTask

-
-
- -
maxTask?: IMaxTask
-

Task maxTask

-
-
- -
meanTask?: IMeanTask
-

Task meanTask

-
-
- -
medianTask?: IMedianTask
-

Task medianTask

-
-
- -
multiplyTask?: IMultiplyTask
-

Task multiplyTask

-
-
- -
oracleTask?: IOracleTask
-

Task oracleTask

-
-
- -
pancakeswapExchangeRateTask?: IPancakeswapExchangeRateTask
-

Task pancakeswapExchangeRateTask

-
-
- -
perpMarketTask?: IPerpMarketTask
-

Task perpMarketTask

-
-
- -
powTask?: IPowTask
-

Task powTask

-
-
- -
regexExtractTask?: IRegexExtractTask
-

Task regexExtractTask

-
-
- -
serumSwapTask?: ISerumSwapTask
-

Task serumSwapTask

-
-
- -
solanaAccountDataFetchTask?: ISolanaAccountDataFetchTask
-

Task solanaAccountDataFetchTask

-
-
- -
splStakePoolTask?: ISplStakePoolTask
-

Task splStakePoolTask

-
-
- -
splTokenParseTask?: ISplTokenParseTask
-

Task splTokenParseTask

-
-
- -
subtractTask?: ISubtractTask
-

Task subtractTask

-
-
- -
sushiswapExchangeRateTask?: ISushiswapExchangeRateTask
-

Task sushiswapExchangeRateTask

-
-
- -
sysclockOffsetTask?: ISysclockOffsetTask
-

Task sysclockOffsetTask

-
-
- -
tpsTask?: ITpsTask
-

Task tpsTask

-
-
- -
twapTask?: ITwapTask
-

Task twapTask

-
-
- -
uniswapExchangeRateTask?: IUniswapExchangeRateTask
-

Task uniswapExchangeRateTask

-
-
- -
valueTask?: IValueTask
-

Task valueTask

-
-
- -
websocketTask?: IWebsocketTask
-

Task websocketTask

-
-
- -
xstepPriceTask?: IXStepPriceTask
-

Task xstepPriceTask

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ITpsTask.html b/website/static/api/aptos/interfaces/OracleJob.ITpsTask.html deleted file mode 100644 index 06b9dd9..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ITpsTask.html +++ /dev/null @@ -1,142 +0,0 @@ -ITpsTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ITpsTask

-
-

Properties of a TpsTask.

-
-
-

Hierarchy

-
    -
  • ITpsTask
-
-

Implemented by

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.ITwapTask.html b/website/static/api/aptos/interfaces/OracleJob.ITwapTask.html deleted file mode 100644 index 1817cde..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.ITwapTask.html +++ /dev/null @@ -1,130 +0,0 @@ -ITwapTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface ITwapTask

-
-

Properties of a TwapTask.

-
-
-

Hierarchy

-
    -
  • ITwapTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
- -
aggregatorPubkey?: string
-

TwapTask aggregatorPubkey

-
-
- -
endingUnixTimestamp?: number
-

TwapTask endingUnixTimestamp

-
-
- -
endingUnixTimestampTask?: ICronParseTask
-

TwapTask endingUnixTimestampTask

-
-
- -
minSamples?: number
-

TwapTask minSamples

-
-
- -
period?: number
-

TwapTask period

-
-
- -
weightByPropagationTime?: boolean
-

TwapTask weightByPropagationTime

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IUniswapExchangeRateTask.html b/website/static/api/aptos/interfaces/OracleJob.IUniswapExchangeRateTask.html deleted file mode 100644 index d8aadcc..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IUniswapExchangeRateTask.html +++ /dev/null @@ -1,121 +0,0 @@ -IUniswapExchangeRateTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IUniswapExchangeRateTask

-
-

Properties of an UniswapExchangeRateTask.

-
-
-

Hierarchy

-
    -
  • IUniswapExchangeRateTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
- -
inTokenAddress?: string
-

UniswapExchangeRateTask inTokenAddress

-
-
- -
inTokenAmount?: number
-

UniswapExchangeRateTask inTokenAmount

-
-
- -
outTokenAddress?: string
-

UniswapExchangeRateTask outTokenAddress

-
-
- -
provider?: string
-

UniswapExchangeRateTask provider

-
-
- -
slippage?: number
-

UniswapExchangeRateTask slippage

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IValueTask.html b/website/static/api/aptos/interfaces/OracleJob.IValueTask.html deleted file mode 100644 index a9c0feb..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IValueTask.html +++ /dev/null @@ -1,103 +0,0 @@ -IValueTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IValueTask

-
-

Properties of a ValueTask.

-
-
-

Hierarchy

-
    -
  • IValueTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
aggregatorPubkey?: string
-

ValueTask aggregatorPubkey

-
-
- -
big?: string
-

ValueTask big

-
-
- -
value?: number
-

ValueTask value

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IWebsocketTask.html b/website/static/api/aptos/interfaces/OracleJob.IWebsocketTask.html deleted file mode 100644 index 897dadd..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IWebsocketTask.html +++ /dev/null @@ -1,112 +0,0 @@ -IWebsocketTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IWebsocketTask

-
-

Properties of a WebsocketTask.

-
-
-

Hierarchy

-
    -
  • IWebsocketTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
- -
filter?: string
-

WebsocketTask filter

-
-
- -
maxDataAgeSeconds?: number
-

WebsocketTask maxDataAgeSeconds

-
-
- -
subscription?: string
-

WebsocketTask subscription

-
-
- -
url?: string
-

WebsocketTask url

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleJob.IXStepPriceTask.html b/website/static/api/aptos/interfaces/OracleJob.IXStepPriceTask.html deleted file mode 100644 index 63f5000..0000000 --- a/website/static/api/aptos/interfaces/OracleJob.IXStepPriceTask.html +++ /dev/null @@ -1,94 +0,0 @@ -IXStepPriceTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface IXStepPriceTask

-
-

Properties of a XStepPriceTask.

-
-
-

Hierarchy

-
    -
  • IXStepPriceTask
-
-

Implemented by

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
stepAggregatorPubkey?: string
-

XStepPriceTask stepAggregatorPubkey

-
-
- -
stepJob?: IMedianTask
-

XStepPriceTask stepJob

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleQueueInitParams.html b/website/static/api/aptos/interfaces/OracleQueueInitParams.html deleted file mode 100644 index 94691c1..0000000 --- a/website/static/api/aptos/interfaces/OracleQueueInitParams.html +++ /dev/null @@ -1,201 +0,0 @@ -OracleQueueInitParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface OracleQueueInitParams

-
-

Hierarchy

-
    -
  • OracleQueueInitParams
-
-
-
- -
-
-

Properties

-
- -
authority: MaybeHexString
-
- -
coinType: string
-
- -
consecutiveFeedFailureLimit: number
-
- -
consecutiveOracleFailureLimit: number
-
- -
enableBufferRelayers: boolean
-
- -
feedProbationPeriod: number
-
- -
lockLeaseFunding: boolean
-
- -
maxSize: number
-
- -
metadata: string
-
- -
minStake: number
-
- -
mint: MaybeHexString
-
- -
name: string
-
- -
oracleTimeout: number
-
- -
reward: number
-
- -
slashingEnabled: boolean
-
- -
unpermissionedFeedsEnabled: boolean
-
- -
unpermissionedVrfEnabled: boolean
-
- -
varianceToleranceMultiplierScale: number
-
- -
varianceToleranceMultiplierValue: number
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleWalletContributeParams.html b/website/static/api/aptos/interfaces/OracleWalletContributeParams.html deleted file mode 100644 index 49ce01d..0000000 --- a/website/static/api/aptos/interfaces/OracleWalletContributeParams.html +++ /dev/null @@ -1,82 +0,0 @@ -OracleWalletContributeParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface OracleWalletContributeParams

-
-

Hierarchy

-
    -
  • OracleWalletContributeParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
loadAmount: number
-
- -
oracleWalletAddr: MaybeHexString
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleWalletInitParams.html b/website/static/api/aptos/interfaces/OracleWalletInitParams.html deleted file mode 100644 index 755040b..0000000 --- a/website/static/api/aptos/interfaces/OracleWalletInitParams.html +++ /dev/null @@ -1,82 +0,0 @@ -OracleWalletInitParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface OracleWalletInitParams

-
-

Hierarchy

-
    -
  • OracleWalletInitParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
coinType: string
-
- -
oracleAddress: MaybeHexString
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/OracleWalletWithdrawParams.html b/website/static/api/aptos/interfaces/OracleWalletWithdrawParams.html deleted file mode 100644 index ca65379..0000000 --- a/website/static/api/aptos/interfaces/OracleWalletWithdrawParams.html +++ /dev/null @@ -1,82 +0,0 @@ -OracleWalletWithdrawParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface OracleWalletWithdrawParams

-
-

Hierarchy

-
    -
  • OracleWalletWithdrawParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
amount: number
-
- -
oracleWalletAddr: MaybeHexString
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/PermissionInitParams.html b/website/static/api/aptos/interfaces/PermissionInitParams.html deleted file mode 100644 index 1c00d2b..0000000 --- a/website/static/api/aptos/interfaces/PermissionInitParams.html +++ /dev/null @@ -1,89 +0,0 @@ -PermissionInitParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface PermissionInitParams

-
-

Hierarchy

-
    -
  • PermissionInitParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
authority: MaybeHexString
-
- -
grantee: MaybeHexString
-
- -
granter: MaybeHexString
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/interfaces/PermissionSetParams.html b/website/static/api/aptos/interfaces/PermissionSetParams.html deleted file mode 100644 index f904d9f..0000000 --- a/website/static/api/aptos/interfaces/PermissionSetParams.html +++ /dev/null @@ -1,103 +0,0 @@ -PermissionSetParams | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Interface PermissionSetParams

-
-

Hierarchy

-
    -
  • PermissionSetParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
authority: MaybeHexString
-
- -
enable: boolean
-
- -
grantee: MaybeHexString
-
- -
granter: MaybeHexString
-
- -
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/modules.html b/website/static/api/aptos/modules.html deleted file mode 100644 index 7a83e95..0000000 --- a/website/static/api/aptos/modules.html +++ /dev/null @@ -1,162 +0,0 @@ -@switchboard-xyz/aptos.js
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/modules/OracleJob.BufferLayoutParseTask.html b/website/static/api/aptos/modules/OracleJob.BufferLayoutParseTask.html deleted file mode 100644 index 8e99f0a..0000000 --- a/website/static/api/aptos/modules/OracleJob.BufferLayoutParseTask.html +++ /dev/null @@ -1,64 +0,0 @@ -BufferLayoutParseTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Namespace BufferLayoutParseTask

-
-
-

Index

-
-

Enumerations

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/modules/OracleJob.CacheTask.html b/website/static/api/aptos/modules/OracleJob.CacheTask.html deleted file mode 100644 index f7df24d..0000000 --- a/website/static/api/aptos/modules/OracleJob.CacheTask.html +++ /dev/null @@ -1,67 +0,0 @@ -CacheTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Namespace CacheTask

-
-
-

Index

-
-

Classes

-
-
-

Interfaces

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/modules/OracleJob.CronParseTask.html b/website/static/api/aptos/modules/OracleJob.CronParseTask.html deleted file mode 100644 index d96df6a..0000000 --- a/website/static/api/aptos/modules/OracleJob.CronParseTask.html +++ /dev/null @@ -1,62 +0,0 @@ -CronParseTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Namespace CronParseTask

-
-
-

Index

-
-

Enumerations

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/modules/OracleJob.DefiKingdomsTask.html b/website/static/api/aptos/modules/OracleJob.DefiKingdomsTask.html deleted file mode 100644 index 3a0b7c0..0000000 --- a/website/static/api/aptos/modules/OracleJob.DefiKingdomsTask.html +++ /dev/null @@ -1,67 +0,0 @@ -DefiKingdomsTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Namespace DefiKingdomsTask

-
-
-

Index

-
-

Classes

-
-
-

Interfaces

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/modules/OracleJob.HttpTask.html b/website/static/api/aptos/modules/OracleJob.HttpTask.html deleted file mode 100644 index 24426cd..0000000 --- a/website/static/api/aptos/modules/OracleJob.HttpTask.html +++ /dev/null @@ -1,72 +0,0 @@ -HttpTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Namespace HttpTask

-
-
-

Index

-
-

Enumerations

-
-
-

Classes

-
-
-

Interfaces

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/modules/OracleJob.JsonParseTask.html b/website/static/api/aptos/modules/OracleJob.JsonParseTask.html deleted file mode 100644 index 564cb0a..0000000 --- a/website/static/api/aptos/modules/OracleJob.JsonParseTask.html +++ /dev/null @@ -1,62 +0,0 @@ -JsonParseTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Namespace JsonParseTask

-
-
-

Index

-
-

Enumerations

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/modules/OracleJob.LendingRateTask.html b/website/static/api/aptos/modules/OracleJob.LendingRateTask.html deleted file mode 100644 index a989c8c..0000000 --- a/website/static/api/aptos/modules/OracleJob.LendingRateTask.html +++ /dev/null @@ -1,62 +0,0 @@ -LendingRateTask | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Namespace LendingRateTask

-
-
-

Index

-
-

Enumerations

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/modules/OracleJob.html b/website/static/api/aptos/modules/OracleJob.html deleted file mode 100644 index b122f3d..0000000 --- a/website/static/api/aptos/modules/OracleJob.html +++ /dev/null @@ -1,228 +0,0 @@ -OracleJob | @switchboard-xyz/aptos.js
-
- -
-
-
-
- -

Namespace OracleJob

-
-
-

Index

-
-

Namespaces

-
-
-

Classes

-
-
-

Interfaces

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/types/EventCallback.html b/website/static/api/aptos/types/EventCallback.html deleted file mode 100644 index dcc5cec..0000000 --- a/website/static/api/aptos/types/EventCallback.html +++ /dev/null @@ -1,111 +0,0 @@ -EventCallback | @switchboard-xyz/aptos.js
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/variables/SWITCHBOARD_DEVNET_ADDRESS.html b/website/static/api/aptos/variables/SWITCHBOARD_DEVNET_ADDRESS.html deleted file mode 100644 index 5cabc7d..0000000 --- a/website/static/api/aptos/variables/SWITCHBOARD_DEVNET_ADDRESS.html +++ /dev/null @@ -1,98 +0,0 @@ -SWITCHBOARD_DEVNET_ADDRESS | @switchboard-xyz/aptos.js
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/aptos/variables/SWITCHBOARD_STATE_ADDRESS.html b/website/static/api/aptos/variables/SWITCHBOARD_STATE_ADDRESS.html deleted file mode 100644 index 45e4ce8..0000000 --- a/website/static/api/aptos/variables/SWITCHBOARD_STATE_ADDRESS.html +++ /dev/null @@ -1,98 +0,0 @@ -SWITCHBOARD_STATE_ADDRESS | @switchboard-xyz/aptos.js
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/website/static/api/py/index.html b/website/static/api/py/index.html deleted file mode 100644 index a6560f5..0000000 --- a/website/static/api/py/index.html +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/website/static/api/py/search.js b/website/static/api/py/search.js deleted file mode 100644 index c165136..0000000 --- a/website/static/api/py/search.js +++ /dev/null @@ -1,46 +0,0 @@ -window.pdocSearch = (function(){ -/** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();oThe Switchboard Python v2 Wrapper.

\n"}, "switchboardpy.AccountParams": {"fullname": "switchboardpy.AccountParams", "modulename": "switchboardpy", "qualname": "AccountParams", "type": "class", "doc": "

program referencing the Switchboard program and IDL.

\n"}, "switchboardpy.AccountParams.__init__": {"fullname": "switchboardpy.AccountParams.__init__", "modulename": "switchboardpy", "qualname": "AccountParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n program: anchorpy.program.core.Program,\n public_key: solana.publickey.PublicKey = None,\n keypair: solana.keypair.Keypair = None\n)", "funcdef": "def"}, "switchboardpy.AccountParams.program": {"fullname": "switchboardpy.AccountParams.program", "modulename": "switchboardpy", "qualname": "AccountParams.program", "type": "variable", "doc": "

Public key of the account being referenced. This will always be populated\nwithin the account wrapper.

\n", "annotation": ": anchorpy.program.core.Program"}, "switchboardpy.AccountParams.public_key": {"fullname": "switchboardpy.AccountParams.public_key", "modulename": "switchboardpy", "qualname": "AccountParams.public_key", "type": "variable", "doc": "

Keypair of the account being referenced. This may not always be populated.

\n", "annotation": ": solana.publickey.PublicKey", "default_value": " = None"}, "switchboardpy.AccountParams.keypair": {"fullname": "switchboardpy.AccountParams.keypair", "modulename": "switchboardpy", "qualname": "AccountParams.keypair", "type": "variable", "doc": "

\n", "annotation": ": solana.keypair.Keypair", "default_value": " = None"}, "switchboardpy.AggregatorAccount": {"fullname": "switchboardpy.AggregatorAccount", "modulename": "switchboardpy", "qualname": "AggregatorAccount", "type": "class", "doc": "

AggregatorAccount is the wrapper for an Aggregator, the structure for that keeps aggregated feed data / metadata.

\n\n

Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This aggregator's public key\n keypair (Keypair | None): this aggregator's keypair

\n"}, "switchboardpy.AggregatorAccount.__init__": {"fullname": "switchboardpy.AggregatorAccount.__init__", "modulename": "switchboardpy", "qualname": "AggregatorAccount.__init__", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.AggregatorAccount.keypair": {"fullname": "switchboardpy.AggregatorAccount.keypair", "modulename": "switchboardpy", "qualname": "AggregatorAccount.keypair", "type": "variable", "doc": "

Get name of an aggregator.

\n\n

Args:\n aggregator (Any): Anchor-loaded aggregator

\n\n

Returns:\n name string of the aggregator

\n"}, "switchboardpy.AggregatorAccount.get_name": {"fullname": "switchboardpy.AggregatorAccount.get_name", "modulename": "switchboardpy", "qualname": "AggregatorAccount.get_name", "type": "function", "doc": "

\n", "signature": "(aggregator: Any) -> str", "funcdef": "def"}, "switchboardpy.AggregatorAccount.load_data": {"fullname": "switchboardpy.AggregatorAccount.load_data", "modulename": "switchboardpy", "qualname": "AggregatorAccount.load_data", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.load_history": {"fullname": "switchboardpy.AggregatorAccount.load_history", "modulename": "switchboardpy", "qualname": "AggregatorAccount.load_history", "type": "function", "doc": "

\n", "signature": "(self, aggregator: Any = None) -> Any", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.get_latest_value": {"fullname": "switchboardpy.AggregatorAccount.get_latest_value", "modulename": "switchboardpy", "qualname": "AggregatorAccount.get_latest_value", "type": "function", "doc": "

\n", "signature": "(self, aggregator: Optional[Any] = None) -> decimal.Decimal", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"fullname": "switchboardpy.AggregatorAccount.get_latest_feed_timestamp", "modulename": "switchboardpy", "qualname": "AggregatorAccount.get_latest_feed_timestamp", "type": "function", "doc": "

\n", "signature": "(self, aggregator: Optional[Any] = None) -> decimal.Decimal", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.should_report_value": {"fullname": "switchboardpy.AggregatorAccount.should_report_value", "modulename": "switchboardpy", "qualname": "AggregatorAccount.should_report_value", "type": "function", "doc": "

\n", "signature": "(value: decimal.Decimal, aggregator: Optional[Any] = None) -> bool", "funcdef": "def"}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"fullname": "switchboardpy.AggregatorAccount.get_confirmed_round_results", "modulename": "switchboardpy", "qualname": "AggregatorAccount.get_confirmed_round_results", "type": "function", "doc": "

\n", "signature": "(self, aggregator: Optional[Any] = None) -> decimal.Decimal", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.produce_job_hash": {"fullname": "switchboardpy.AggregatorAccount.produce_job_hash", "modulename": "switchboardpy", "qualname": "AggregatorAccount.produce_job_hash", "type": "function", "doc": "

\n", "signature": "(jobs: list[job_schemas_pb2.OracleJob])", "funcdef": "def"}, "switchboardpy.AggregatorAccount.load_jobs": {"fullname": "switchboardpy.AggregatorAccount.load_jobs", "modulename": "switchboardpy", "qualname": "AggregatorAccount.load_jobs", "type": "function", "doc": "

\n", "signature": "(self, aggregator: Optional[Any] = None) -> decimal.Decimal", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.load_hashes": {"fullname": "switchboardpy.AggregatorAccount.load_hashes", "modulename": "switchboardpy", "qualname": "AggregatorAccount.load_hashes", "type": "function", "doc": "

\n", "signature": "(self, aggregator: Optional[Any] = None) -> decimal.Decimal", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.size": {"fullname": "switchboardpy.AggregatorAccount.size", "modulename": "switchboardpy", "qualname": "AggregatorAccount.size", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.AggregatorAccount.create": {"fullname": "switchboardpy.AggregatorAccount.create", "modulename": "switchboardpy", "qualname": "AggregatorAccount.create", "type": "function", "doc": "

\n", "signature": "(\n program: anchorpy.program.core.Program,\n aggregator_init_params: switchboardpy.aggregator.AggregatorInitParams\n)", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_history_buffer": {"fullname": "switchboardpy.AggregatorAccount.set_history_buffer", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_history_buffer", "type": "function", "doc": "

\n", "signature": "(\n self,\n params: switchboardpy.aggregator.AggregatorSetHistoryBufferParams\n)", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.open_round": {"fullname": "switchboardpy.AggregatorAccount.open_round", "modulename": "switchboardpy", "qualname": "AggregatorAccount.open_round", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.aggregator.AggregatorOpenRoundParams)", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_min_jobs": {"fullname": "switchboardpy.AggregatorAccount.set_min_jobs", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_min_jobs", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.aggregator.AggregatorSetMinJobsParams)", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.add_job": {"fullname": "switchboardpy.AggregatorAccount.add_job", "modulename": "switchboardpy", "qualname": "AggregatorAccount.add_job", "type": "function", "doc": "

\n", "signature": "(\n self,\n job: switchboardpy.job.JobAccount,\n weight: int = 0,\n authority: Optional[solana.keypair.Keypair] = None\n) -> .new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_batch_size": {"fullname": "switchboardpy.AggregatorAccount.set_batch_size", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_batch_size", "type": "function", "doc": "

\n", "signature": "(\n self,\n params: switchboardpy.aggregator.AggregatorSetBatchSizeParams\n) -> .new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"fullname": "switchboardpy.AggregatorAccount.set_variance_threshold", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_variance_threshold", "type": "function", "doc": "

\n", "signature": "(\n self,\n params: switchboardpy.aggregator.AggregatorSetVarianceThresholdParams\n) -> .new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_min_oracles": {"fullname": "switchboardpy.AggregatorAccount.set_min_oracles", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_min_oracles", "type": "function", "doc": "

\n", "signature": "(\n self,\n params: switchboardpy.aggregator.AggregatorSetMinOraclesParams\n) -> .new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_update_interval": {"fullname": "switchboardpy.AggregatorAccount.set_update_interval", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_update_interval", "type": "function", "doc": "

\n", "signature": "(\n self,\n params: switchboardpy.aggregator.AggregatorSetUpdateIntervalParams\n) -> .new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.lock": {"fullname": "switchboardpy.AggregatorAccount.lock", "modulename": "switchboardpy", "qualname": "AggregatorAccount.lock", "type": "function", "doc": "

\n", "signature": "(\n self,\n authority: Optional[solana.keypair.Keypair] = None\n) -> .new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.set_authority": {"fullname": "switchboardpy.AggregatorAccount.set_authority", "modulename": "switchboardpy", "qualname": "AggregatorAccount.set_authority", "type": "function", "doc": "

\n", "signature": "(\n self,\n new_authority: solana.keypair.Keypair,\n current_authority: Optional[solana.keypair.Keypair] = None\n) -> .new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.remove_job": {"fullname": "switchboardpy.AggregatorAccount.remove_job", "modulename": "switchboardpy", "qualname": "AggregatorAccount.remove_job", "type": "function", "doc": "

\n", "signature": "(\n self,\n aggregator: Any,\n oracle_account: switchboardpy.oracle.OracleAccount,\n params: switchboardpy.aggregator.AggregatorSaveResultParams\n) -> .new_type at 0x103bd2940>", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.get_oracle_index": {"fullname": "switchboardpy.AggregatorAccount.get_oracle_index", "modulename": "switchboardpy", "qualname": "AggregatorAccount.get_oracle_index", "type": "function", "doc": "

\n", "signature": "(self, oracle_pubkey: solana.publickey.PublicKey)", "funcdef": "async def"}, "switchboardpy.AggregatorAccount.save_result_txn": {"fullname": "switchboardpy.AggregatorAccount.save_result_txn", "modulename": "switchboardpy", "qualname": "AggregatorAccount.save_result_txn", "type": "function", "doc": "

\n", "signature": "(\n self,\n aggregator: Any,\n oracle_account: switchboardpy.oracle.OracleAccount,\n params: switchboardpy.aggregator.AggregatorSaveResultParams\n)", "funcdef": "async def"}, "switchboardpy.AggregatorHistoryRow": {"fullname": "switchboardpy.AggregatorHistoryRow", "modulename": "switchboardpy", "qualname": "AggregatorHistoryRow", "type": "class", "doc": "

AggregatorHistoryRow is a wrapper for the row structure of elements in the aggregator history buffer.

\n\n

Attributes:\n timestamp (int): timestamp of the aggregator result\n value (Decimal): Aggregator value at the timestamp

\n"}, "switchboardpy.AggregatorHistoryRow.__init__": {"fullname": "switchboardpy.AggregatorHistoryRow.__init__", "modulename": "switchboardpy", "qualname": "AggregatorHistoryRow.__init__", "type": "function", "doc": "

\n", "signature": "(self, timestamp: int, value: decimal.Decimal)", "funcdef": "def"}, "switchboardpy.AggregatorHistoryRow.value": {"fullname": "switchboardpy.AggregatorHistoryRow.value", "modulename": "switchboardpy", "qualname": "AggregatorHistoryRow.value", "type": "variable", "doc": "

Generate an AggregatorHistoryRow from a retrieved buffer representation

\n\n

Args:\n buf (list): Anchor-loaded buffer representation of AggregatorHistoryRow

\n\n

Returns:\n AggregatorHistoryRow

\n", "annotation": ": decimal.Decimal"}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"fullname": "switchboardpy.AggregatorHistoryRow.from_buffer", "modulename": "switchboardpy", "qualname": "AggregatorHistoryRow.from_buffer", "type": "function", "doc": "

\n", "signature": "(buf: bytes)", "funcdef": "def"}, "switchboardpy.AggregatorInitParams": {"fullname": "switchboardpy.AggregatorInitParams", "modulename": "switchboardpy", "qualname": "AggregatorInitParams", "type": "class", "doc": "

Number of oracles to request on aggregator update.

\n"}, "switchboardpy.AggregatorInitParams.__init__": {"fullname": "switchboardpy.AggregatorInitParams.__init__", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n batch_size: int,\n min_required_oracle_results: int,\n min_required_job_results: int,\n min_update_delay_seconds: int,\n queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n name: bytes = None,\n metadata: bytes = None,\n start_after: int = None,\n variance_threshold: decimal.Decimal = None,\n force_report_period: int = None,\n expiration: int = None,\n keypair: solana.keypair.Keypair = None,\n author_wallet: solana.publickey.PublicKey = None,\n authority: solana.publickey.PublicKey = None,\n disable_crank: bool = None\n)", "funcdef": "def"}, "switchboardpy.AggregatorInitParams.batch_size": {"fullname": "switchboardpy.AggregatorInitParams.batch_size", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.batch_size", "type": "variable", "doc": "

Minimum number of oracle responses required before a round is validated.

\n", "annotation": ": int"}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"fullname": "switchboardpy.AggregatorInitParams.min_required_oracle_results", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.min_required_oracle_results", "type": "variable", "doc": "

Minimum number of seconds required between aggregator rounds.

\n", "annotation": ": int"}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"fullname": "switchboardpy.AggregatorInitParams.min_required_job_results", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.min_required_job_results", "type": "variable", "doc": "

Minimum number of seconds required between aggregator rounds.

\n", "annotation": ": int"}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"fullname": "switchboardpy.AggregatorInitParams.min_update_delay_seconds", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.min_update_delay_seconds", "type": "variable", "doc": "

The queue to which this aggregator will be linked

\n", "annotation": ": int"}, "switchboardpy.AggregatorInitParams.queue_account": {"fullname": "switchboardpy.AggregatorInitParams.queue_account", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.queue_account", "type": "variable", "doc": "

Name of the aggregator to store on-chain.

\n", "annotation": ": switchboardpy.oraclequeue.OracleQueueAccount"}, "switchboardpy.AggregatorInitParams.name": {"fullname": "switchboardpy.AggregatorInitParams.name", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.name", "type": "variable", "doc": "

Metadata of the aggregator to store on-chain.

\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.metadata": {"fullname": "switchboardpy.AggregatorInitParams.metadata", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.metadata", "type": "variable", "doc": "

unix_timestamp for which no feed update will occur before.

\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.start_after": {"fullname": "switchboardpy.AggregatorInitParams.start_after", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.start_after", "type": "variable", "doc": "

Change percentage required between a previous round and the current round.\nIf variance percentage is not met, reject new oracle responses.

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.variance_threshold": {"fullname": "switchboardpy.AggregatorInitParams.variance_threshold", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.variance_threshold", "type": "variable", "doc": "

Number of seconds for which, even if the variance threshold is not passed,\naccept new responses from oracles.

\n", "annotation": ": decimal.Decimal", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.force_report_period": {"fullname": "switchboardpy.AggregatorInitParams.force_report_period", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.force_report_period", "type": "variable", "doc": "

unix_timestamp after which funds may be withdrawn from the aggregator.\nnull/undefined/0 means the feed has no expiration.

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.expiration": {"fullname": "switchboardpy.AggregatorInitParams.expiration", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.expiration", "type": "variable", "doc": "

An optional wallet for receiving kickbacks from job usage in feeds.\nDefaults to token vault.

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.keypair": {"fullname": "switchboardpy.AggregatorInitParams.keypair", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.keypair", "type": "variable", "doc": "

An optional wallet for receiving kickbacks from job usage in feeds.\nDefaults to token vault.

\n", "annotation": ": solana.keypair.Keypair", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.author_wallet": {"fullname": "switchboardpy.AggregatorInitParams.author_wallet", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.author_wallet", "type": "variable", "doc": "

If included, this keypair will be the aggregator authority rather than\nthe aggregator keypair.

\n", "annotation": ": solana.publickey.PublicKey", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.authority": {"fullname": "switchboardpy.AggregatorInitParams.authority", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.authority", "type": "variable", "doc": "

Disable automatic updates

\n", "annotation": ": solana.publickey.PublicKey", "default_value": " = None"}, "switchboardpy.AggregatorInitParams.disable_crank": {"fullname": "switchboardpy.AggregatorInitParams.disable_crank", "modulename": "switchboardpy", "qualname": "AggregatorInitParams.disable_crank", "type": "variable", "doc": "

\n", "annotation": ": bool", "default_value": " = None"}, "switchboardpy.AggregatorOpenRoundParams": {"fullname": "switchboardpy.AggregatorOpenRoundParams", "modulename": "switchboardpy", "qualname": "AggregatorOpenRoundParams", "type": "class", "doc": "

The oracle queue from which oracles are assigned this update.

\n"}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"fullname": "switchboardpy.AggregatorOpenRoundParams.__init__", "modulename": "switchboardpy", "qualname": "AggregatorOpenRoundParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n oracle_queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n payout_wallet: solana.publickey.PublicKey,\n jitter: int = None\n)", "funcdef": "def"}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"fullname": "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account", "modulename": "switchboardpy", "qualname": "AggregatorOpenRoundParams.oracle_queue_account", "type": "variable", "doc": "

The token wallet which will receive rewards for calling update on this feed.

\n", "annotation": ": switchboardpy.oraclequeue.OracleQueueAccount"}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"fullname": "switchboardpy.AggregatorOpenRoundParams.payout_wallet", "modulename": "switchboardpy", "qualname": "AggregatorOpenRoundParams.payout_wallet", "type": "variable", "doc": "

Data feeds on a crank are ordered by their next available update time with some \nlevel of jitter to mitigate oracles being assigned to the same update request upon \neach iteration of the queue, which makes them susceptible to a malicous oracle.

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"fullname": "switchboardpy.AggregatorOpenRoundParams.jitter", "modulename": "switchboardpy", "qualname": "AggregatorOpenRoundParams.jitter", "type": "variable", "doc": "

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.AggregatorSaveResultParams": {"fullname": "switchboardpy.AggregatorSaveResultParams", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams", "type": "class", "doc": "

Index in the list of oracles in the aggregator assigned to this round update.

\n"}, "switchboardpy.AggregatorSaveResultParams.__init__": {"fullname": "switchboardpy.AggregatorSaveResultParams.__init__", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n oracle_idx: int,\n error: bool,\n value: decimal.Decimal,\n min_response: decimal.Decimal,\n max_response: decimal.Decimal,\n jobs: list[job_schemas_pb2.OracleJob],\n queue_authority: solana.publickey.PublicKey,\n token_mint: solana.publickey.PublicKey,\n oracles: list[typing.Any]\n)", "funcdef": "def"}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"fullname": "switchboardpy.AggregatorSaveResultParams.oracle_idx", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.oracle_idx", "type": "variable", "doc": "

Reports that an error occured and the oracle could not send a value.

\n", "annotation": ": int"}, "switchboardpy.AggregatorSaveResultParams.error": {"fullname": "switchboardpy.AggregatorSaveResultParams.error", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.error", "type": "variable", "doc": "

Value the oracle is responding with for this update.

\n", "annotation": ": bool"}, "switchboardpy.AggregatorSaveResultParams.value": {"fullname": "switchboardpy.AggregatorSaveResultParams.value", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.value", "type": "variable", "doc": "

The minimum value this oracle has seen this round for the jobs listed in the\naggregator.

\n", "annotation": ": decimal.Decimal"}, "switchboardpy.AggregatorSaveResultParams.min_response": {"fullname": "switchboardpy.AggregatorSaveResultParams.min_response", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.min_response", "type": "variable", "doc": "

The maximum value this oracle has seen this round for the jobs listed in the\naggregator.

\n", "annotation": ": decimal.Decimal"}, "switchboardpy.AggregatorSaveResultParams.max_response": {"fullname": "switchboardpy.AggregatorSaveResultParams.max_response", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.max_response", "type": "variable", "doc": "

List of OracleJobs that were performed to produce this result

\n", "annotation": ": decimal.Decimal"}, "switchboardpy.AggregatorSaveResultParams.jobs": {"fullname": "switchboardpy.AggregatorSaveResultParams.jobs", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.jobs", "type": "variable", "doc": "

Authority of the queue the aggregator is attached to

\n", "annotation": ": list[job_schemas_pb2.OracleJob]"}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"fullname": "switchboardpy.AggregatorSaveResultParams.queue_authority", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.queue_authority", "type": "variable", "doc": "

Program token mint

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"fullname": "switchboardpy.AggregatorSaveResultParams.token_mint", "modulename": "switchboardpy", "qualname": "AggregatorSaveResultParams.token_mint", "type": "variable", "doc": "

List of parsed oracles

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.AggregatorSetHistoryBufferParams": {"fullname": "switchboardpy.AggregatorSetHistoryBufferParams", "modulename": "switchboardpy", "qualname": "AggregatorSetHistoryBufferParams", "type": "class", "doc": "

Number of elements for the history buffer to fit

\n"}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"fullname": "switchboardpy.AggregatorSetHistoryBufferParams.__init__", "modulename": "switchboardpy", "qualname": "AggregatorSetHistoryBufferParams.__init__", "type": "function", "doc": "

\n", "signature": "(self, size: int, authority: solana.keypair.Keypair = None)", "funcdef": "def"}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"fullname": "switchboardpy.AggregatorSetHistoryBufferParams.size", "modulename": "switchboardpy", "qualname": "AggregatorSetHistoryBufferParams.size", "type": "variable", "doc": "

Authority keypair for the aggregator

\n", "annotation": ": int"}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"fullname": "switchboardpy.AggregatorSetHistoryBufferParams.authority", "modulename": "switchboardpy", "qualname": "AggregatorSetHistoryBufferParams.authority", "type": "variable", "doc": "

\n", "annotation": ": solana.keypair.Keypair", "default_value": " = None"}, "switchboardpy.CrankAccount": {"fullname": "switchboardpy.CrankAccount", "modulename": "switchboardpy", "qualname": "CrankAccount", "type": "class", "doc": "

A Switchboard account representing a crank of aggregators ordered by next update time.

\n\n

Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This crank's public key\n keypair (Keypair | None): this crank's keypair

\n"}, "switchboardpy.CrankAccount.__init__": {"fullname": "switchboardpy.CrankAccount.__init__", "modulename": "switchboardpy", "qualname": "CrankAccount.__init__", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.CrankAccount.keypair": {"fullname": "switchboardpy.CrankAccount.keypair", "modulename": "switchboardpy", "qualname": "CrankAccount.keypair", "type": "variable", "doc": "

Get the size of an CrankAccount on chain

\n\n

Args:

\n\n

Returns:\n int: size of the CrankAccount type on chain

\n"}, "switchboardpy.CrankAccount.size": {"fullname": "switchboardpy.CrankAccount.size", "modulename": "switchboardpy", "qualname": "CrankAccount.size", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.CrankAccount.load_data": {"fullname": "switchboardpy.CrankAccount.load_data", "modulename": "switchboardpy", "qualname": "CrankAccount.load_data", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.CrankAccount.create": {"fullname": "switchboardpy.CrankAccount.create", "modulename": "switchboardpy", "qualname": "CrankAccount.create", "type": "function", "doc": "

\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.crank.CrankInitParams\n)", "funcdef": "async def"}, "switchboardpy.CrankAccount.push": {"fullname": "switchboardpy.CrankAccount.push", "modulename": "switchboardpy", "qualname": "CrankAccount.push", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.crank.CrankPushParams)", "funcdef": "async def"}, "switchboardpy.CrankAccount.pop_txn": {"fullname": "switchboardpy.CrankAccount.pop_txn", "modulename": "switchboardpy", "qualname": "CrankAccount.pop_txn", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.crank.CrankPopParams)", "funcdef": "async def"}, "switchboardpy.CrankAccount.pop": {"fullname": "switchboardpy.CrankAccount.pop", "modulename": "switchboardpy", "qualname": "CrankAccount.pop", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.crank.CrankPopParams)", "funcdef": "async def"}, "switchboardpy.CrankAccount.peak_next_with_time": {"fullname": "switchboardpy.CrankAccount.peak_next_with_time", "modulename": "switchboardpy", "qualname": "CrankAccount.peak_next_with_time", "type": "function", "doc": "

\n", "signature": "(self, n: int)", "funcdef": "async def"}, "switchboardpy.CrankAccount.peak_next_ready": {"fullname": "switchboardpy.CrankAccount.peak_next_ready", "modulename": "switchboardpy", "qualname": "CrankAccount.peak_next_ready", "type": "function", "doc": "

\n", "signature": "(self, n: Optional[int] = None)", "funcdef": "async def"}, "switchboardpy.CrankAccount.peak_next": {"fullname": "switchboardpy.CrankAccount.peak_next", "modulename": "switchboardpy", "qualname": "CrankAccount.peak_next", "type": "function", "doc": "

\n", "signature": "(self, n: int)", "funcdef": "async def"}, "switchboardpy.CrankPopParams": {"fullname": "switchboardpy.CrankPopParams", "modulename": "switchboardpy", "qualname": "CrankPopParams", "type": "class", "doc": "

Specifies the wallet to reward for turning the crank.

\n"}, "switchboardpy.CrankPopParams.__init__": {"fullname": "switchboardpy.CrankPopParams.__init__", "modulename": "switchboardpy", "qualname": "CrankPopParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n payout_wallet: solana.publickey.PublicKey,\n queue_pubkey: solana.publickey.PublicKey,\n queue_authority: solana.publickey.PublicKey,\n crank: Any,\n queue: Any,\n token_mint: solana.publickey.PublicKey,\n ready_pubkeys: list[solana.publickey.PublicKey] = None,\n nonce: int = None,\n fail_open_on_mismatch: bool = None\n)", "funcdef": "def"}, "switchboardpy.CrankPopParams.payout_wallet": {"fullname": "switchboardpy.CrankPopParams.payout_wallet", "modulename": "switchboardpy", "qualname": "CrankPopParams.payout_wallet", "type": "variable", "doc": "

The pubkey of the linked oracle queue.

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.CrankPopParams.queue_pubkey": {"fullname": "switchboardpy.CrankPopParams.queue_pubkey", "modulename": "switchboardpy", "qualname": "CrankPopParams.queue_pubkey", "type": "variable", "doc": "

The pubkey of the linked oracle queue authority.

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.CrankPopParams.queue_authority": {"fullname": "switchboardpy.CrankPopParams.queue_authority", "modulename": "switchboardpy", "qualname": "CrankPopParams.queue_authority", "type": "variable", "doc": "

CrankAccount data

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.CrankPopParams.crank": {"fullname": "switchboardpy.CrankPopParams.crank", "modulename": "switchboardpy", "qualname": "CrankPopParams.crank", "type": "variable", "doc": "

QueueAccount data

\n", "annotation": ": Any"}, "switchboardpy.CrankPopParams.queue": {"fullname": "switchboardpy.CrankPopParams.queue", "modulename": "switchboardpy", "qualname": "CrankPopParams.queue", "type": "variable", "doc": "

Token mint pubkey

\n", "annotation": ": Any"}, "switchboardpy.CrankPopParams.token_mint": {"fullname": "switchboardpy.CrankPopParams.token_mint", "modulename": "switchboardpy", "qualname": "CrankPopParams.token_mint", "type": "variable", "doc": "

Array of pubkeys to attempt to pop. If discluded, this will be loaded\nfrom the crank upon calling.

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.CrankPopParams.ready_pubkeys": {"fullname": "switchboardpy.CrankPopParams.ready_pubkeys", "modulename": "switchboardpy", "qualname": "CrankPopParams.ready_pubkeys", "type": "variable", "doc": "

Nonce to allow consecutive crank pops with the same blockhash.

\n", "annotation": ": list[solana.publickey.PublicKey]", "default_value": " = None"}, "switchboardpy.CrankPopParams.nonce": {"fullname": "switchboardpy.CrankPopParams.nonce", "modulename": "switchboardpy", "qualname": "CrankPopParams.nonce", "type": "variable", "doc": "

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"fullname": "switchboardpy.CrankPopParams.fail_open_on_mismatch", "modulename": "switchboardpy", "qualname": "CrankPopParams.fail_open_on_mismatch", "type": "variable", "doc": "

\n", "annotation": ": bool", "default_value": " = None"}, "switchboardpy.CrankInitParams": {"fullname": "switchboardpy.CrankInitParams", "modulename": "switchboardpy", "qualname": "CrankInitParams", "type": "class", "doc": "

OracleQueueAccount for which this crank is associated

\n"}, "switchboardpy.CrankInitParams.__init__": {"fullname": "switchboardpy.CrankInitParams.__init__", "modulename": "switchboardpy", "qualname": "CrankInitParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n name: bytes = None,\n metadata: bytes = None,\n max_rows: int = None\n)", "funcdef": "def"}, "switchboardpy.CrankInitParams.queue_account": {"fullname": "switchboardpy.CrankInitParams.queue_account", "modulename": "switchboardpy", "qualname": "CrankInitParams.queue_account", "type": "variable", "doc": "

Buffer specifying crank name

\n", "annotation": ": switchboardpy.oraclequeue.OracleQueueAccount"}, "switchboardpy.CrankInitParams.name": {"fullname": "switchboardpy.CrankInitParams.name", "modulename": "switchboardpy", "qualname": "CrankInitParams.name", "type": "variable", "doc": "

Buffer specifying crank metadata

\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.CrankInitParams.metadata": {"fullname": "switchboardpy.CrankInitParams.metadata", "modulename": "switchboardpy", "qualname": "CrankInitParams.metadata", "type": "variable", "doc": "

Optional max number of rows

\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.CrankInitParams.max_rows": {"fullname": "switchboardpy.CrankInitParams.max_rows", "modulename": "switchboardpy", "qualname": "CrankInitParams.max_rows", "type": "variable", "doc": "

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.CrankPushParams": {"fullname": "switchboardpy.CrankPushParams", "modulename": "switchboardpy", "qualname": "CrankPushParams", "type": "class", "doc": "

CrankPushParams(aggregator_account: switchboardpy.aggregator.AggregatorAccount)

\n"}, "switchboardpy.CrankPushParams.__init__": {"fullname": "switchboardpy.CrankPushParams.__init__", "modulename": "switchboardpy", "qualname": "CrankPushParams.__init__", "type": "function", "doc": "

\n", "signature": "(self, aggregator_account: switchboardpy.aggregator.AggregatorAccount)", "funcdef": "def"}, "switchboardpy.CrankRow": {"fullname": "switchboardpy.CrankRow", "modulename": "switchboardpy", "qualname": "CrankRow", "type": "class", "doc": "

Aggregator account pubkey

\n"}, "switchboardpy.CrankRow.__init__": {"fullname": "switchboardpy.CrankRow.__init__", "modulename": "switchboardpy", "qualname": "CrankRow.__init__", "type": "function", "doc": "

\n", "signature": "(self, pubkey: solana.publickey.PublicKey, next_timestamp: int)", "funcdef": "def"}, "switchboardpy.CrankRow.pubkey": {"fullname": "switchboardpy.CrankRow.pubkey", "modulename": "switchboardpy", "qualname": "CrankRow.pubkey", "type": "variable", "doc": "

Next aggregator update timestamp to order the crank by

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.CrankRow.from_bytes": {"fullname": "switchboardpy.CrankRow.from_bytes", "modulename": "switchboardpy", "qualname": "CrankRow.from_bytes", "type": "function", "doc": "

\n", "signature": "(buf: bytes)", "funcdef": "def"}, "switchboardpy.JobAccount": {"fullname": "switchboardpy.JobAccount", "modulename": "switchboardpy", "qualname": "JobAccount", "type": "class", "doc": "

A Switchboard account representing a job for an oracle to perform, stored as\n a protocol buffer.

\n\n

Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This aggregator's public key\n keypair (Keypair | None): this aggregator's keypair

\n"}, "switchboardpy.JobAccount.__init__": {"fullname": "switchboardpy.JobAccount.__init__", "modulename": "switchboardpy", "qualname": "JobAccount.__init__", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.JobAccount.keypair": {"fullname": "switchboardpy.JobAccount.keypair", "modulename": "switchboardpy", "qualname": "JobAccount.keypair", "type": "variable", "doc": "

Load and parse JobAccount state based on the program IDL.

\n\n

Returns:\n name (JobAccount): data parsed in accordance with the\n Switchboard IDL.

\n\n

Args:

\n\n

Raises:\n AccountDoesNotExistError: If the account doesn't exist.\n AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.

\n"}, "switchboardpy.JobAccount.load_data": {"fullname": "switchboardpy.JobAccount.load_data", "modulename": "switchboardpy", "qualname": "JobAccount.load_data", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.JobAccount.load_job": {"fullname": "switchboardpy.JobAccount.load_job", "modulename": "switchboardpy", "qualname": "JobAccount.load_job", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.JobAccount.decode": {"fullname": "switchboardpy.JobAccount.decode", "modulename": "switchboardpy", "qualname": "JobAccount.decode", "type": "function", "doc": "

\n", "signature": "(program: anchorpy.program.core.Program, buf: bytes)", "funcdef": "def"}, "switchboardpy.JobAccount.create": {"fullname": "switchboardpy.JobAccount.create", "modulename": "switchboardpy", "qualname": "JobAccount.create", "type": "function", "doc": "

\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.job.JobInitParams\n)", "funcdef": "async def"}, "switchboardpy.JobInitParams": {"fullname": "switchboardpy.JobInitParams", "modulename": "switchboardpy", "qualname": "JobInitParams", "type": "class", "doc": "

A serialized protocol buffer holding the schema of the job.

\n"}, "switchboardpy.JobInitParams.__init__": {"fullname": "switchboardpy.JobInitParams.__init__", "modulename": "switchboardpy", "qualname": "JobInitParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n data: bytes,\n name: bytes = None,\n expiration: int = None,\n variables: list[str] = None,\n keypair: solana.keypair.Keypair = None,\n authority: solana.publickey.PublicKey = None\n)", "funcdef": "def"}, "switchboardpy.JobInitParams.data": {"fullname": "switchboardpy.JobInitParams.data", "modulename": "switchboardpy", "qualname": "JobInitParams.data", "type": "variable", "doc": "

An optional name to apply to the job account.

\n", "annotation": ": bytes"}, "switchboardpy.JobInitParams.name": {"fullname": "switchboardpy.JobInitParams.name", "modulename": "switchboardpy", "qualname": "JobInitParams.name", "type": "variable", "doc": "

unix_timestamp of when funds can be withdrawn from this account.

\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.JobInitParams.expiration": {"fullname": "switchboardpy.JobInitParams.expiration", "modulename": "switchboardpy", "qualname": "JobInitParams.expiration", "type": "variable", "doc": "

A required variables oracles must fill to complete the job.

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.JobInitParams.variables": {"fullname": "switchboardpy.JobInitParams.variables", "modulename": "switchboardpy", "qualname": "JobInitParams.variables", "type": "variable", "doc": "

A pre-generated keypair to use.

\n", "annotation": ": list[str]", "default_value": " = None"}, "switchboardpy.JobInitParams.keypair": {"fullname": "switchboardpy.JobInitParams.keypair", "modulename": "switchboardpy", "qualname": "JobInitParams.keypair", "type": "variable", "doc": "

An optional wallet for receiving kickbacks from job usage in feeds.

\n", "annotation": ": solana.keypair.Keypair", "default_value": " = None"}, "switchboardpy.JobInitParams.authority": {"fullname": "switchboardpy.JobInitParams.authority", "modulename": "switchboardpy", "qualname": "JobInitParams.authority", "type": "variable", "doc": "

\n", "annotation": ": solana.publickey.PublicKey", "default_value": " = None"}, "switchboardpy.LeaseAccount": {"fullname": "switchboardpy.LeaseAccount", "modulename": "switchboardpy", "qualname": "LeaseAccount", "type": "class", "doc": "

A Switchboard account representing a lease for managing funds for oracle payouts\nfor fulfilling feed updates.

\n\n

Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This lease's public key\n keypair (Keypair | None): this lease's keypair

\n"}, "switchboardpy.LeaseAccount.__init__": {"fullname": "switchboardpy.LeaseAccount.__init__", "modulename": "switchboardpy", "qualname": "LeaseAccount.__init__", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.LeaseAccount.keypair": {"fullname": "switchboardpy.LeaseAccount.keypair", "modulename": "switchboardpy", "qualname": "LeaseAccount.keypair", "type": "variable", "doc": "

Get the size of an LeaseAccount on chain

\n\n

Args:

\n\n

Returns:\n int: size of the LeaseAccount type on chain

\n"}, "switchboardpy.LeaseAccount.size": {"fullname": "switchboardpy.LeaseAccount.size", "modulename": "switchboardpy", "qualname": "LeaseAccount.size", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.LeaseAccount.load_data": {"fullname": "switchboardpy.LeaseAccount.load_data", "modulename": "switchboardpy", "qualname": "LeaseAccount.load_data", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.LeaseAccount.from_seed": {"fullname": "switchboardpy.LeaseAccount.from_seed", "modulename": "switchboardpy", "qualname": "LeaseAccount.from_seed", "type": "function", "doc": "

\n", "signature": "(\n program: anchorpy.program.core.Program,\n queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n aggregator_account: switchboardpy.aggregator.AggregatorAccount\n)", "funcdef": "def"}, "switchboardpy.LeaseAccount.create": {"fullname": "switchboardpy.LeaseAccount.create", "modulename": "switchboardpy", "qualname": "LeaseAccount.create", "type": "function", "doc": "

\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.lease.LeaseInitParams\n)", "funcdef": "async def"}, "switchboardpy.LeaseAccount.get_balance": {"fullname": "switchboardpy.LeaseAccount.get_balance", "modulename": "switchboardpy", "qualname": "LeaseAccount.get_balance", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.LeaseAccount.extend": {"fullname": "switchboardpy.LeaseAccount.extend", "modulename": "switchboardpy", "qualname": "LeaseAccount.extend", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.lease.LeaseExtendParams)", "funcdef": "async def"}, "switchboardpy.LeaseAccount.withdraw": {"fullname": "switchboardpy.LeaseAccount.withdraw", "modulename": "switchboardpy", "qualname": "LeaseAccount.withdraw", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.lease.LeaseWithdrawParams)", "funcdef": "async def"}, "switchboardpy.LeaseExtendParams": {"fullname": "switchboardpy.LeaseExtendParams", "modulename": "switchboardpy", "qualname": "LeaseExtendParams", "type": "class", "doc": "

Token amount to load into the lease escrow

\n"}, "switchboardpy.LeaseExtendParams.__init__": {"fullname": "switchboardpy.LeaseExtendParams.__init__", "modulename": "switchboardpy", "qualname": "LeaseExtendParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n load_amount: int,\n funder: solana.publickey.PublicKey,\n funder_authority: solana.keypair.Keypair\n)", "funcdef": "def"}, "switchboardpy.LeaseExtendParams.load_amount": {"fullname": "switchboardpy.LeaseExtendParams.load_amount", "modulename": "switchboardpy", "qualname": "LeaseExtendParams.load_amount", "type": "variable", "doc": "

The funding wallet of the lease

\n", "annotation": ": int"}, "switchboardpy.LeaseExtendParams.funder": {"fullname": "switchboardpy.LeaseExtendParams.funder", "modulename": "switchboardpy", "qualname": "LeaseExtendParams.funder", "type": "variable", "doc": "

The authority of the funding wallet

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.LeaseInitParams": {"fullname": "switchboardpy.LeaseInitParams", "modulename": "switchboardpy", "qualname": "LeaseInitParams", "type": "class", "doc": "

Token amount to load into the lease escrow

\n"}, "switchboardpy.LeaseInitParams.__init__": {"fullname": "switchboardpy.LeaseInitParams.__init__", "modulename": "switchboardpy", "qualname": "LeaseInitParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n load_amount: int,\n funder: solana.publickey.PublicKey,\n funder_authority: solana.keypair.Keypair,\n oracle_queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n aggregator_account: switchboardpy.aggregator.AggregatorAccount,\n withdraw_authority: solana.publickey.PublicKey = None\n)", "funcdef": "def"}, "switchboardpy.LeaseInitParams.load_amount": {"fullname": "switchboardpy.LeaseInitParams.load_amount", "modulename": "switchboardpy", "qualname": "LeaseInitParams.load_amount", "type": "variable", "doc": "

The funding wallet of the lease

\n", "annotation": ": int"}, "switchboardpy.LeaseInitParams.funder": {"fullname": "switchboardpy.LeaseInitParams.funder", "modulename": "switchboardpy", "qualname": "LeaseInitParams.funder", "type": "variable", "doc": "

The authority of the funding wallet

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.LeaseInitParams.funder_authority": {"fullname": "switchboardpy.LeaseInitParams.funder_authority", "modulename": "switchboardpy", "qualname": "LeaseInitParams.funder_authority", "type": "variable", "doc": "

The target to which this lease is applied

\n", "annotation": ": solana.keypair.Keypair"}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"fullname": "switchboardpy.LeaseInitParams.oracle_queue_account", "modulename": "switchboardpy", "qualname": "LeaseInitParams.oracle_queue_account", "type": "variable", "doc": "

The feed which the lease grants permission

\n", "annotation": ": switchboardpy.oraclequeue.OracleQueueAccount"}, "switchboardpy.LeaseInitParams.aggregator_account": {"fullname": "switchboardpy.LeaseInitParams.aggregator_account", "modulename": "switchboardpy", "qualname": "LeaseInitParams.aggregator_account", "type": "variable", "doc": "

This authority will be permitted to withdraw funds from this lease

\n", "annotation": ": switchboardpy.aggregator.AggregatorAccount"}, "switchboardpy.LeaseInitParams.withdraw_authority": {"fullname": "switchboardpy.LeaseInitParams.withdraw_authority", "modulename": "switchboardpy", "qualname": "LeaseInitParams.withdraw_authority", "type": "variable", "doc": "

\n", "annotation": ": solana.publickey.PublicKey", "default_value": " = None"}, "switchboardpy.LeaseWithdrawParams": {"fullname": "switchboardpy.LeaseWithdrawParams", "modulename": "switchboardpy", "qualname": "LeaseWithdrawParams", "type": "class", "doc": "

Token amount to withdraw from the lease escrow

\n"}, "switchboardpy.LeaseWithdrawParams.__init__": {"fullname": "switchboardpy.LeaseWithdrawParams.__init__", "modulename": "switchboardpy", "qualname": "LeaseWithdrawParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n amount: int,\n withdraw_wallet: solana.publickey.PublicKey,\n withdraw_authority: solana.keypair.Keypair\n)", "funcdef": "def"}, "switchboardpy.LeaseWithdrawParams.amount": {"fullname": "switchboardpy.LeaseWithdrawParams.amount", "modulename": "switchboardpy", "qualname": "LeaseWithdrawParams.amount", "type": "variable", "doc": "

The wallet of to withdraw to

\n", "annotation": ": int"}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"fullname": "switchboardpy.LeaseWithdrawParams.withdraw_wallet", "modulename": "switchboardpy", "qualname": "LeaseWithdrawParams.withdraw_wallet", "type": "variable", "doc": "

The withdraw authority of the lease

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.OracleAccount": {"fullname": "switchboardpy.OracleAccount", "modulename": "switchboardpy", "qualname": "OracleAccount", "type": "class", "doc": "

A Switchboard account representing an oracle account and its associated queue\nand escrow account.

\n\n

Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This aggregator's public key\n keypair (Keypair | None): this aggregator's keypair

\n"}, "switchboardpy.OracleAccount.__init__": {"fullname": "switchboardpy.OracleAccount.__init__", "modulename": "switchboardpy", "qualname": "OracleAccount.__init__", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.OracleAccount.keypair": {"fullname": "switchboardpy.OracleAccount.keypair", "modulename": "switchboardpy", "qualname": "OracleAccount.keypair", "type": "variable", "doc": "

Get the size of an OracleAccount on chain

\n\n

Args:

\n\n

Returns:\n int: size of the OracleAccount type on chain

\n"}, "switchboardpy.OracleAccount.size": {"fullname": "switchboardpy.OracleAccount.size", "modulename": "switchboardpy", "qualname": "OracleAccount.size", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.OracleAccount.load_data": {"fullname": "switchboardpy.OracleAccount.load_data", "modulename": "switchboardpy", "qualname": "OracleAccount.load_data", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.OracleAccount.from_seed": {"fullname": "switchboardpy.OracleAccount.from_seed", "modulename": "switchboardpy", "qualname": "OracleAccount.from_seed", "type": "function", "doc": "

\n", "signature": "(\n program: anchorpy.program.core.Program,\n queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n wallet: solana.publickey.PublicKey\n)", "funcdef": "def"}, "switchboardpy.OracleAccount.create": {"fullname": "switchboardpy.OracleAccount.create", "modulename": "switchboardpy", "qualname": "OracleAccount.create", "type": "function", "doc": "

\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.oracle.OracleInitParams\n)", "funcdef": "async def"}, "switchboardpy.OracleAccount.heartbeat": {"fullname": "switchboardpy.OracleAccount.heartbeat", "modulename": "switchboardpy", "qualname": "OracleAccount.heartbeat", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.OracleAccount.withdraw": {"fullname": "switchboardpy.OracleAccount.withdraw", "modulename": "switchboardpy", "qualname": "OracleAccount.withdraw", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.oracle.OracleWithdrawParams)", "funcdef": "async def"}, "switchboardpy.OracleInitParams": {"fullname": "switchboardpy.OracleInitParams", "modulename": "switchboardpy", "qualname": "OracleInitParams", "type": "class", "doc": "

Specifies the oracle queue to associate with this OracleAccount.

\n"}, "switchboardpy.OracleInitParams.__init__": {"fullname": "switchboardpy.OracleInitParams.__init__", "modulename": "switchboardpy", "qualname": "OracleInitParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n queue_account: switchboardpy.oraclequeue.OracleQueueAccount,\n name: bytes = None,\n metadata: bytes = None\n)", "funcdef": "def"}, "switchboardpy.OracleInitParams.queue_account": {"fullname": "switchboardpy.OracleInitParams.queue_account", "modulename": "switchboardpy", "qualname": "OracleInitParams.queue_account", "type": "variable", "doc": "

Buffer specifying orace name

\n", "annotation": ": switchboardpy.oraclequeue.OracleQueueAccount"}, "switchboardpy.OracleInitParams.name": {"fullname": "switchboardpy.OracleInitParams.name", "modulename": "switchboardpy", "qualname": "OracleInitParams.name", "type": "variable", "doc": "

Buffer specifying oralce metadata

\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.OracleInitParams.metadata": {"fullname": "switchboardpy.OracleInitParams.metadata", "modulename": "switchboardpy", "qualname": "OracleInitParams.metadata", "type": "variable", "doc": "

\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.OracleWithdrawParams": {"fullname": "switchboardpy.OracleWithdrawParams", "modulename": "switchboardpy", "qualname": "OracleWithdrawParams", "type": "class", "doc": "

Amount to withdraw

\n"}, "switchboardpy.OracleWithdrawParams.__init__": {"fullname": "switchboardpy.OracleWithdrawParams.__init__", "modulename": "switchboardpy", "qualname": "OracleWithdrawParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n amount: decimal.Decimal,\n withdraw_account: solana.publickey.PublicKey,\n oracle_authority: solana.keypair.Keypair\n)", "funcdef": "def"}, "switchboardpy.OracleWithdrawParams.amount": {"fullname": "switchboardpy.OracleWithdrawParams.amount", "modulename": "switchboardpy", "qualname": "OracleWithdrawParams.amount", "type": "variable", "doc": "

Token Account to withdraw to

\n", "annotation": ": decimal.Decimal"}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"fullname": "switchboardpy.OracleWithdrawParams.withdraw_account", "modulename": "switchboardpy", "qualname": "OracleWithdrawParams.withdraw_account", "type": "variable", "doc": "

Oracle authority keypair

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.OracleQueueAccount": {"fullname": "switchboardpy.OracleQueueAccount", "modulename": "switchboardpy", "qualname": "OracleQueueAccount", "type": "class", "doc": "

A Switchboard account representing a queue for distributing oracles to\npermitted data feeds.

\n\n

Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This OracleQueueAccount's public key\n keypair (Keypair | None): this OracleQueueAccount's keypair

\n"}, "switchboardpy.OracleQueueAccount.__init__": {"fullname": "switchboardpy.OracleQueueAccount.__init__", "modulename": "switchboardpy", "qualname": "OracleQueueAccount.__init__", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.OracleQueueAccount.keypair": {"fullname": "switchboardpy.OracleQueueAccount.keypair", "modulename": "switchboardpy", "qualname": "OracleQueueAccount.keypair", "type": "variable", "doc": "

Get the size of an OracleQueueAccount on chain

\n\n

Args:

\n\n

Returns:\n int: size of the OracleQueueAccount type on chain

\n"}, "switchboardpy.OracleQueueAccount.size": {"fullname": "switchboardpy.OracleQueueAccount.size", "modulename": "switchboardpy", "qualname": "OracleQueueAccount.size", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.OracleQueueAccount.load_data": {"fullname": "switchboardpy.OracleQueueAccount.load_data", "modulename": "switchboardpy", "qualname": "OracleQueueAccount.load_data", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.OracleQueueAccount.load_mint": {"fullname": "switchboardpy.OracleQueueAccount.load_mint", "modulename": "switchboardpy", "qualname": "OracleQueueAccount.load_mint", "type": "function", "doc": "

\n", "signature": "(self) -> spl.token.async_client.AsyncToken", "funcdef": "async def"}, "switchboardpy.OracleQueueAccount.create": {"fullname": "switchboardpy.OracleQueueAccount.create", "modulename": "switchboardpy", "qualname": "OracleQueueAccount.create", "type": "function", "doc": "

\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.oraclequeue.OracleQueueInitParams\n)", "funcdef": "async def"}, "switchboardpy.OracleQueueInitParams": {"fullname": "switchboardpy.OracleQueueInitParams", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams", "type": "class", "doc": "

Mint for the oracle queue

\n"}, "switchboardpy.OracleQueueInitParams.__init__": {"fullname": "switchboardpy.OracleQueueInitParams.__init__", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n mint: solana.publickey.PublicKey,\n reward: int,\n min_stake: int,\n authority: solana.publickey.PublicKey,\n oracle_timeout: int = None,\n variance_tolerance_multiplier: decimal.Decimal = None,\n consecutive_feed_failure_limit: int = None,\n consecutive_oracle_failure_limit: int = None,\n minimum_delay_seconds: int = None,\n queue_size: int = None,\n unpermissioned_feeds: bool = None,\n slashing_enabled: bool = None,\n feed_probation_period: int = None,\n name: bytes = None,\n metadata: bytes = None,\n unpermissioned_vrf: bool = None\n)", "funcdef": "def"}, "switchboardpy.OracleQueueInitParams.mint": {"fullname": "switchboardpy.OracleQueueInitParams.mint", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.mint", "type": "variable", "doc": "

Rewards to provide oracles and round openers on this queue.

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.OracleQueueInitParams.reward": {"fullname": "switchboardpy.OracleQueueInitParams.reward", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.reward", "type": "variable", "doc": "

The minimum amount of stake oracles must present to remain on the queue.

\n", "annotation": ": int"}, "switchboardpy.OracleQueueInitParams.min_stake": {"fullname": "switchboardpy.OracleQueueInitParams.min_stake", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.min_stake", "type": "variable", "doc": "

The account to delegate authority to for creating permissions targeted\nat the queue.

\n", "annotation": ": int"}, "switchboardpy.OracleQueueInitParams.authority": {"fullname": "switchboardpy.OracleQueueInitParams.authority", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.authority", "type": "variable", "doc": "

Time period we should remove an oracle after if no response.

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"fullname": "switchboardpy.OracleQueueInitParams.oracle_timeout", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.oracle_timeout", "type": "variable", "doc": "

The tolerated variance amount oracle results can have from the\naccepted round result before being slashed.\nslashBound = varianceToleranceMultiplier * stdDeviation\nDefault: 2

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"fullname": "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.variance_tolerance_multiplier", "type": "variable", "doc": "

Consecutive failure limit for a feed before feed permission is revoked.

\n", "annotation": ": decimal.Decimal", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"fullname": "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.consecutive_feed_failure_limit", "type": "variable", "doc": "

Consecutive failure limit for an oracle before oracle permission is revoked.

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"fullname": "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.consecutive_oracle_failure_limit", "type": "variable", "doc": "

the minimum update delay time for Aggregators

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"fullname": "switchboardpy.OracleQueueInitParams.minimum_delay_seconds", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.minimum_delay_seconds", "type": "variable", "doc": "

Optionally set the size of the queue.

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.queue_size": {"fullname": "switchboardpy.OracleQueueInitParams.queue_size", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.queue_size", "type": "variable", "doc": "

Enabling this setting means data feeds do not need explicit permission\nto join the queue.

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"fullname": "switchboardpy.OracleQueueInitParams.unpermissioned_feeds", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.unpermissioned_feeds", "type": "variable", "doc": "

Whether slashing is enabled on this queue

\n", "annotation": ": bool", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"fullname": "switchboardpy.OracleQueueInitParams.slashing_enabled", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.slashing_enabled", "type": "variable", "doc": "

After a feed lease is funded or re-funded, it must consecutively succeed\nN amount of times or its authorization to use the queue is auto-revoked.

\n", "annotation": ": bool", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"fullname": "switchboardpy.OracleQueueInitParams.feed_probation_period", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.feed_probation_period", "type": "variable", "doc": "

A name to assign to this OracleQueue.

\n", "annotation": ": int", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.name": {"fullname": "switchboardpy.OracleQueueInitParams.name", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.name", "type": "variable", "doc": "

Buffer for queue metadata.

\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.metadata": {"fullname": "switchboardpy.OracleQueueInitParams.metadata", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.metadata", "type": "variable", "doc": "

Enabling this setting means data feeds do not need explicit permission\nto request VRF proofs and verifications from this queue.

\n", "annotation": ": bytes", "default_value": " = None"}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"fullname": "switchboardpy.OracleQueueInitParams.unpermissioned_vrf", "modulename": "switchboardpy", "qualname": "OracleQueueInitParams.unpermissioned_vrf", "type": "variable", "doc": "

\n", "annotation": ": bool", "default_value": " = None"}, "switchboardpy.OracleJob": {"fullname": "switchboardpy.OracleJob", "modulename": "switchboardpy", "qualname": "OracleJob", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.DESCRIPTOR": {"fullname": "switchboardpy.OracleJob.DESCRIPTOR", "modulename": "switchboardpy", "qualname": "OracleJob.DESCRIPTOR", "type": "variable", "doc": "

\n", "default_value": " = "}, "switchboardpy.OracleJob.HttpTask": {"fullname": "switchboardpy.OracleJob.HttpTask", "modulename": "switchboardpy", "qualname": "OracleJob.HttpTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.JsonParseTask": {"fullname": "switchboardpy.OracleJob.JsonParseTask", "modulename": "switchboardpy", "qualname": "OracleJob.JsonParseTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.MedianTask": {"fullname": "switchboardpy.OracleJob.MedianTask", "modulename": "switchboardpy", "qualname": "OracleJob.MedianTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.MeanTask": {"fullname": "switchboardpy.OracleJob.MeanTask", "modulename": "switchboardpy", "qualname": "OracleJob.MeanTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.MaxTask": {"fullname": "switchboardpy.OracleJob.MaxTask", "modulename": "switchboardpy", "qualname": "OracleJob.MaxTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.ValueTask": {"fullname": "switchboardpy.OracleJob.ValueTask", "modulename": "switchboardpy", "qualname": "OracleJob.ValueTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.WebsocketTask": {"fullname": "switchboardpy.OracleJob.WebsocketTask", "modulename": "switchboardpy", "qualname": "OracleJob.WebsocketTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.ConditionalTask": {"fullname": "switchboardpy.OracleJob.ConditionalTask", "modulename": "switchboardpy", "qualname": "OracleJob.ConditionalTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.DivideTask": {"fullname": "switchboardpy.OracleJob.DivideTask", "modulename": "switchboardpy", "qualname": "OracleJob.DivideTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.MultiplyTask": {"fullname": "switchboardpy.OracleJob.MultiplyTask", "modulename": "switchboardpy", "qualname": "OracleJob.MultiplyTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.AddTask": {"fullname": "switchboardpy.OracleJob.AddTask", "modulename": "switchboardpy", "qualname": "OracleJob.AddTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.SubtractTask": {"fullname": "switchboardpy.OracleJob.SubtractTask", "modulename": "switchboardpy", "qualname": "OracleJob.SubtractTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.LpTokenPriceTask": {"fullname": "switchboardpy.OracleJob.LpTokenPriceTask", "modulename": "switchboardpy", "qualname": "OracleJob.LpTokenPriceTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.LpExchangeRateTask": {"fullname": "switchboardpy.OracleJob.LpExchangeRateTask", "modulename": "switchboardpy", "qualname": "OracleJob.LpExchangeRateTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.RegexExtractTask": {"fullname": "switchboardpy.OracleJob.RegexExtractTask", "modulename": "switchboardpy", "qualname": "OracleJob.RegexExtractTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.XStepPriceTask": {"fullname": "switchboardpy.OracleJob.XStepPriceTask", "modulename": "switchboardpy", "qualname": "OracleJob.XStepPriceTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.TwapTask": {"fullname": "switchboardpy.OracleJob.TwapTask", "modulename": "switchboardpy", "qualname": "OracleJob.TwapTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.SerumSwapTask": {"fullname": "switchboardpy.OracleJob.SerumSwapTask", "modulename": "switchboardpy", "qualname": "OracleJob.SerumSwapTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.PowTask": {"fullname": "switchboardpy.OracleJob.PowTask", "modulename": "switchboardpy", "qualname": "OracleJob.PowTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.LendingRateTask": {"fullname": "switchboardpy.OracleJob.LendingRateTask", "modulename": "switchboardpy", "qualname": "OracleJob.LendingRateTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"fullname": "switchboardpy.OracleJob.MangoPerpMarketTask", "modulename": "switchboardpy", "qualname": "OracleJob.MangoPerpMarketTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.JupiterSwapTask": {"fullname": "switchboardpy.OracleJob.JupiterSwapTask", "modulename": "switchboardpy", "qualname": "OracleJob.JupiterSwapTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.PerpMarketTask": {"fullname": "switchboardpy.OracleJob.PerpMarketTask", "modulename": "switchboardpy", "qualname": "OracleJob.PerpMarketTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.OracleTask": {"fullname": "switchboardpy.OracleJob.OracleTask", "modulename": "switchboardpy", "qualname": "OracleJob.OracleTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.AnchorFetchTask": {"fullname": "switchboardpy.OracleJob.AnchorFetchTask", "modulename": "switchboardpy", "qualname": "OracleJob.AnchorFetchTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.DefiKingdomsTask": {"fullname": "switchboardpy.OracleJob.DefiKingdomsTask", "modulename": "switchboardpy", "qualname": "OracleJob.DefiKingdomsTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.TpsTask": {"fullname": "switchboardpy.OracleJob.TpsTask", "modulename": "switchboardpy", "qualname": "OracleJob.TpsTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.SplStakePoolTask": {"fullname": "switchboardpy.OracleJob.SplStakePoolTask", "modulename": "switchboardpy", "qualname": "OracleJob.SplStakePoolTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.SplTokenParseTask": {"fullname": "switchboardpy.OracleJob.SplTokenParseTask", "modulename": "switchboardpy", "qualname": "OracleJob.SplTokenParseTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"fullname": "switchboardpy.OracleJob.UniswapExchangeRateTask", "modulename": "switchboardpy", "qualname": "OracleJob.UniswapExchangeRateTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"fullname": "switchboardpy.OracleJob.SushiswapExchangeRateTask", "modulename": "switchboardpy", "qualname": "OracleJob.SushiswapExchangeRateTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"fullname": "switchboardpy.OracleJob.PancakeswapExchangeRateTask", "modulename": "switchboardpy", "qualname": "OracleJob.PancakeswapExchangeRateTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.CacheTask": {"fullname": "switchboardpy.OracleJob.CacheTask", "modulename": "switchboardpy", "qualname": "OracleJob.CacheTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.SysclockOffsetTask": {"fullname": "switchboardpy.OracleJob.SysclockOffsetTask", "modulename": "switchboardpy", "qualname": "OracleJob.SysclockOffsetTask", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.Task": {"fullname": "switchboardpy.OracleJob.Task", "modulename": "switchboardpy", "qualname": "OracleJob.Task", "type": "class", "doc": "

A ProtocolMessage

\n", "bases": "google.protobuf.pyext._message.CMessage, google.protobuf.message.Message"}, "switchboardpy.OracleJob.tasks": {"fullname": "switchboardpy.OracleJob.tasks", "modulename": "switchboardpy", "qualname": "OracleJob.tasks", "type": "variable", "doc": "

Field OracleJob.tasks

\n"}, "switchboardpy.PermissionAccount": {"fullname": "switchboardpy.PermissionAccount", "modulename": "switchboardpy", "qualname": "PermissionAccount", "type": "class", "doc": "

A Switchboard account representing a permission or privilege granted by one\naccount signer to another account.

\n\n

Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This permission's public key\n keypair (Keypair | None): this permission's keypair

\n"}, "switchboardpy.PermissionAccount.__init__": {"fullname": "switchboardpy.PermissionAccount.__init__", "modulename": "switchboardpy", "qualname": "PermissionAccount.__init__", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.PermissionAccount.keypair": {"fullname": "switchboardpy.PermissionAccount.keypair", "modulename": "switchboardpy", "qualname": "PermissionAccount.keypair", "type": "variable", "doc": "

Check if a specific permission is enabled on this permission account

\n\n

Args:\n permission (SwitchboardPermissionValue)

\n\n

Returns:\n bool: whether or not the permission is enabled

\n"}, "switchboardpy.PermissionAccount.is_permission_enabled": {"fullname": "switchboardpy.PermissionAccount.is_permission_enabled", "modulename": "switchboardpy", "qualname": "PermissionAccount.is_permission_enabled", "type": "function", "doc": "

\n", "signature": "(\n self,\n permission: switchboardpy.permission.SwitchboardPermissionValue\n)", "funcdef": "async def"}, "switchboardpy.PermissionAccount.load_data": {"fullname": "switchboardpy.PermissionAccount.load_data", "modulename": "switchboardpy", "qualname": "PermissionAccount.load_data", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.PermissionAccount.size": {"fullname": "switchboardpy.PermissionAccount.size", "modulename": "switchboardpy", "qualname": "PermissionAccount.size", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.PermissionAccount.create": {"fullname": "switchboardpy.PermissionAccount.create", "modulename": "switchboardpy", "qualname": "PermissionAccount.create", "type": "function", "doc": "

\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.permission.PermissionInitParams\n)", "funcdef": "async def"}, "switchboardpy.PermissionAccount.from_seed": {"fullname": "switchboardpy.PermissionAccount.from_seed", "modulename": "switchboardpy", "qualname": "PermissionAccount.from_seed", "type": "function", "doc": "

\n", "signature": "(\n program: anchorpy.program.core.Program,\n authority: solana.publickey.PublicKey,\n granter: solana.publickey.PublicKey,\n grantee: solana.publickey.PublicKey\n)", "funcdef": "def"}, "switchboardpy.PermissionAccount.set": {"fullname": "switchboardpy.PermissionAccount.set", "modulename": "switchboardpy", "qualname": "PermissionAccount.set", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.permission.PermissionSetParams)", "funcdef": "async def"}, "switchboardpy.PermissionInitParams": {"fullname": "switchboardpy.PermissionInitParams", "modulename": "switchboardpy", "qualname": "PermissionInitParams", "type": "class", "doc": "

Pubkey of the account granting the permission

\n"}, "switchboardpy.PermissionInitParams.__init__": {"fullname": "switchboardpy.PermissionInitParams.__init__", "modulename": "switchboardpy", "qualname": "PermissionInitParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n granter: solana.publickey.PublicKey,\n grantee: solana.publickey.PublicKey,\n authority: solana.publickey.PublicKey\n)", "funcdef": "def"}, "switchboardpy.PermissionInitParams.granter": {"fullname": "switchboardpy.PermissionInitParams.granter", "modulename": "switchboardpy", "qualname": "PermissionInitParams.granter", "type": "variable", "doc": "

The receiving amount of a permission

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.PermissionInitParams.grantee": {"fullname": "switchboardpy.PermissionInitParams.grantee", "modulename": "switchboardpy", "qualname": "PermissionInitParams.grantee", "type": "variable", "doc": "

The authority that is allowed to set permissions for this account

\n", "annotation": ": solana.publickey.PublicKey"}, "switchboardpy.PermissionSetParams": {"fullname": "switchboardpy.PermissionSetParams", "modulename": "switchboardpy", "qualname": "PermissionSetParams", "type": "class", "doc": "

The permission to set

\n"}, "switchboardpy.PermissionSetParams.__init__": {"fullname": "switchboardpy.PermissionSetParams.__init__", "modulename": "switchboardpy", "qualname": "PermissionSetParams.__init__", "type": "function", "doc": "

\n", "signature": "(\n self,\n permission: switchboardpy.permission.SwitchboardPermission,\n authority: solana.keypair.Keypair,\n enable: bool\n)", "funcdef": "def"}, "switchboardpy.PermissionSetParams.permission": {"fullname": "switchboardpy.PermissionSetParams.permission", "modulename": "switchboardpy", "qualname": "PermissionSetParams.permission", "type": "variable", "doc": "

The authority controlling this permission

\n", "annotation": ": switchboardpy.permission.SwitchboardPermission"}, "switchboardpy.PermissionSetParams.authority": {"fullname": "switchboardpy.PermissionSetParams.authority", "modulename": "switchboardpy", "qualname": "PermissionSetParams.authority", "type": "variable", "doc": "

Specifies whether to enable or disable the permission

\n", "annotation": ": solana.keypair.Keypair"}, "switchboardpy.ProgramStateAccount": {"fullname": "switchboardpy.ProgramStateAccount", "modulename": "switchboardpy", "qualname": "ProgramStateAccount", "type": "class", "doc": "

Account type representing Switchboard global program state.

\n\n

Attributes:\n program (anchor.Program): The anchor program ref\n public_key (PublicKey | None): This program's public key\n keypair (Keypair | None): this program's keypair

\n"}, "switchboardpy.ProgramStateAccount.__init__": {"fullname": "switchboardpy.ProgramStateAccount.__init__", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.__init__", "type": "function", "doc": "

\n", "signature": "(self, params: switchboardpy.common.AccountParams)", "funcdef": "def"}, "switchboardpy.ProgramStateAccount.keypair": {"fullname": "switchboardpy.ProgramStateAccount.keypair", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.keypair", "type": "variable", "doc": "

Constructs ProgramStateAccount from the static seed from which it was generated.

\n\n

Args:\n program (anchorpy.Program): Anchor-loaded aggregator

\n\n

Returns:\n ProgramStateAccount and PDA bump tuple.

\n"}, "switchboardpy.ProgramStateAccount.from_seed": {"fullname": "switchboardpy.ProgramStateAccount.from_seed", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.from_seed", "type": "function", "doc": "

\n", "signature": "(program: anchorpy.program.core.Program)", "funcdef": "def"}, "switchboardpy.ProgramStateAccount.load_data": {"fullname": "switchboardpy.ProgramStateAccount.load_data", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.load_data", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "async def"}, "switchboardpy.ProgramStateAccount.get_token_mint": {"fullname": "switchboardpy.ProgramStateAccount.get_token_mint", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.get_token_mint", "type": "function", "doc": "

\n", "signature": "(self) -> spl.token.async_client.AsyncToken", "funcdef": "async def"}, "switchboardpy.ProgramStateAccount.size": {"fullname": "switchboardpy.ProgramStateAccount.size", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.size", "type": "function", "doc": "

\n", "signature": "(self)", "funcdef": "def"}, "switchboardpy.ProgramStateAccount.create": {"fullname": "switchboardpy.ProgramStateAccount.create", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.create", "type": "function", "doc": "

\n", "signature": "(\n program: anchorpy.program.core.Program,\n params: switchboardpy.program.ProgramInitParams\n)", "funcdef": "async def"}, "switchboardpy.ProgramStateAccount.vault_transfer": {"fullname": "switchboardpy.ProgramStateAccount.vault_transfer", "modulename": "switchboardpy", "qualname": "ProgramStateAccount.vault_transfer", "type": "function", "doc": "

\n", "signature": "(\n self,\n to: solana.publickey.PublicKey,\n authority: solana.keypair.Keypair,\n params: switchboardpy.program.VaultTransferParams\n)", "funcdef": "async def"}, "switchboardpy.ProgramInitParams": {"fullname": "switchboardpy.ProgramInitParams", "modulename": "switchboardpy", "qualname": "ProgramInitParams", "type": "class", "doc": "

Optional token mint

\n"}, "switchboardpy.ProgramInitParams.__init__": {"fullname": "switchboardpy.ProgramInitParams.__init__", "modulename": "switchboardpy", "qualname": "ProgramInitParams.__init__", "type": "function", "doc": "

\n", "signature": "(self, mint: solana.publickey.PublicKey = None)", "funcdef": "def"}, "switchboardpy.ProgramInitParams.mint": {"fullname": "switchboardpy.ProgramInitParams.mint", "modulename": "switchboardpy", "qualname": "ProgramInitParams.mint", "type": "variable", "doc": "

\n", "annotation": ": solana.publickey.PublicKey", "default_value": " = None"}, "switchboardpy.VaultTransferParams": {"fullname": "switchboardpy.VaultTransferParams", "modulename": "switchboardpy", "qualname": "VaultTransferParams", "type": "class", "doc": "

Amount being transferred

\n"}, "switchboardpy.VaultTransferParams.__init__": {"fullname": "switchboardpy.VaultTransferParams.__init__", "modulename": "switchboardpy", "qualname": "VaultTransferParams.__init__", "type": "function", "doc": "

\n", "signature": "(self, amount: decimal.Decimal)", "funcdef": "def"}, "switchboardpy.SwitchboardDecimal": {"fullname": "switchboardpy.SwitchboardDecimal", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal", "type": "class", "doc": "

SwitchboardDecimal(mantissa: int, scale: int)

\n"}, "switchboardpy.SwitchboardDecimal.__init__": {"fullname": "switchboardpy.SwitchboardDecimal.__init__", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.__init__", "type": "function", "doc": "

\n", "signature": "(self, mantissa: int, scale: int)", "funcdef": "def"}, "switchboardpy.SwitchboardDecimal.scale": {"fullname": "switchboardpy.SwitchboardDecimal.scale", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.scale", "type": "variable", "doc": "

Convert BN.js style num and return SwitchboardDecimal

\n\n

Args:\n obj (Any): Object with integer fields scale and mantissa (hex val)

\n\n

Returns:\n sbd (SwitchboardDecimal): SwitchboardDecimal

\n", "annotation": ": int"}, "switchboardpy.SwitchboardDecimal.fromObj": {"fullname": "switchboardpy.SwitchboardDecimal.fromObj", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.fromObj", "type": "function", "doc": "

\n", "signature": "(obj: Any)", "funcdef": "def"}, "switchboardpy.SwitchboardDecimal.to_decimal": {"fullname": "switchboardpy.SwitchboardDecimal.to_decimal", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.to_decimal", "type": "function", "doc": "

\n", "signature": "(self, sbd: object)", "funcdef": "def"}, "switchboardpy.SwitchboardDecimal.from_decimal": {"fullname": "switchboardpy.SwitchboardDecimal.from_decimal", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.from_decimal", "type": "function", "doc": "

\n", "signature": "(dec: decimal.Decimal)", "funcdef": "def"}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"fullname": "switchboardpy.SwitchboardDecimal.sbd_to_decimal", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.sbd_to_decimal", "type": "function", "doc": "

\n", "signature": "(sbd: object) -> decimal.Decimal", "funcdef": "def"}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"fullname": "switchboardpy.SwitchboardDecimal.as_proper_sbd", "modulename": "switchboardpy", "qualname": "SwitchboardDecimal.as_proper_sbd", "type": "function", "doc": "

\n", "signature": "(self, program: anchorpy.program.core.Program)", "funcdef": "def"}, "switchboardpy.readRawVarint32": {"fullname": "switchboardpy.readRawVarint32", "modulename": "switchboardpy", "qualname": "readRawVarint32", "type": "variable", "doc": "

\n"}, "switchboardpy.readDelimitedFrom": {"fullname": "switchboardpy.readDelimitedFrom", "modulename": "switchboardpy", "qualname": "readDelimitedFrom", "type": "variable", "doc": "

\n"}}, "docInfo": {"switchboardpy": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.AccountParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.AccountParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 3}, "switchboardpy.AccountParams.program": {"qualname": 2, "fullname": 3, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "switchboardpy.AccountParams.public_key": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 15}, "switchboardpy.AccountParams.keypair": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 51}, "switchboardpy.AggregatorAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 25}, "switchboardpy.AggregatorAccount.get_name": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 5, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.load_history": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.get_latest_value": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.should_report_value": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 9, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.produce_job_hash": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.load_jobs": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.load_hashes": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 13, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_history_buffer": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.open_round": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_min_jobs": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.add_job": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_batch_size": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 13, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 13, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_min_oracles": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 13, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_update_interval": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 13, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.lock": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.set_authority": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.remove_job": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.get_oracle_index": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorAccount.save_result_txn": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "switchboardpy.AggregatorHistoryRow": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 37}, "switchboardpy.AggregatorHistoryRow.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.AggregatorHistoryRow.value": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 26}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "switchboardpy.AggregatorInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 3}, "switchboardpy.AggregatorInitParams.batch_size": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"qualname": 5, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"qualname": 5, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"qualname": 5, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorInitParams.queue_account": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorInitParams.name": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorInitParams.metadata": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.AggregatorInitParams.start_after": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 24}, "switchboardpy.AggregatorInitParams.variance_threshold": {"qualname": 3, "fullname": 4, "annotation": 3, "default_value": 2, "signature": 0, "bases": 0, "doc": 21}, "switchboardpy.AggregatorInitParams.force_report_period": {"qualname": 4, "fullname": 5, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 21}, "switchboardpy.AggregatorInitParams.expiration": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 18}, "switchboardpy.AggregatorInitParams.keypair": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 18}, "switchboardpy.AggregatorInitParams.author_wallet": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 17}, "switchboardpy.AggregatorInitParams.authority": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.AggregatorInitParams.disable_crank": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.AggregatorOpenRoundParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 3}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"qualname": 4, "fullname": 5, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 45}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.AggregatorSaveResultParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "switchboardpy.AggregatorSaveResultParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 3}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "switchboardpy.AggregatorSaveResultParams.error": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "switchboardpy.AggregatorSaveResultParams.value": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "switchboardpy.AggregatorSaveResultParams.min_response": {"qualname": 3, "fullname": 4, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "switchboardpy.AggregatorSaveResultParams.max_response": {"qualname": 3, "fullname": 4, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "switchboardpy.AggregatorSaveResultParams.jobs": {"qualname": 2, "fullname": 3, "annotation": 5, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "switchboardpy.AggregatorSetHistoryBufferParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 3}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 47}, "switchboardpy.CrankAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 24}, "switchboardpy.CrankAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.push": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.pop_txn": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.pop": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.peak_next_with_time": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 5, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.peak_next_ready": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 6, "bases": 0, "doc": 3}, "switchboardpy.CrankAccount.peak_next": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 5, "bases": 0, "doc": 3}, "switchboardpy.CrankPopParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "switchboardpy.CrankPopParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 3}, "switchboardpy.CrankPopParams.payout_wallet": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.CrankPopParams.queue_pubkey": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.CrankPopParams.queue_authority": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 4}, "switchboardpy.CrankPopParams.crank": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 4}, "switchboardpy.CrankPopParams.queue": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.CrankPopParams.token_mint": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "switchboardpy.CrankPopParams.ready_pubkeys": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.CrankPopParams.nonce": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"qualname": 5, "fullname": 6, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.CrankInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.CrankInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 3}, "switchboardpy.CrankInitParams.queue_account": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "switchboardpy.CrankInitParams.name": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 6}, "switchboardpy.CrankInitParams.metadata": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 7}, "switchboardpy.CrankInitParams.max_rows": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.CrankPushParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.CrankPushParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.CrankRow": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.CrankRow.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 3}, "switchboardpy.CrankRow.pubkey": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "switchboardpy.CrankRow.from_bytes": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "switchboardpy.JobAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 50}, "switchboardpy.JobAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.JobAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 51}, "switchboardpy.JobAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.JobAccount.load_job": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.JobAccount.decode": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 9, "bases": 0, "doc": 3}, "switchboardpy.JobAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.JobInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.JobInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "switchboardpy.JobInitParams.data": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "switchboardpy.JobInitParams.name": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 14}, "switchboardpy.JobInitParams.expiration": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.JobInitParams.variables": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.JobInitParams.keypair": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 14}, "switchboardpy.JobInitParams.authority": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 50}, "switchboardpy.LeaseAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 24}, "switchboardpy.LeaseAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.from_seed": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.get_balance": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.extend": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.LeaseAccount.withdraw": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.LeaseExtendParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.LeaseExtendParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "switchboardpy.LeaseExtendParams.load_amount": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.LeaseExtendParams.funder": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.LeaseInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.LeaseInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 3}, "switchboardpy.LeaseInitParams.load_amount": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.LeaseInitParams.funder": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.LeaseInitParams.funder_authority": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"qualname": 4, "fullname": 5, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.LeaseInitParams.aggregator_account": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.LeaseInitParams.withdraw_authority": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.LeaseWithdrawParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.LeaseWithdrawParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "switchboardpy.LeaseWithdrawParams.amount": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.OracleAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 48}, "switchboardpy.OracleAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.OracleAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 24}, "switchboardpy.OracleAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.OracleAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.OracleAccount.from_seed": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "switchboardpy.OracleAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.OracleAccount.heartbeat": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.OracleAccount.withdraw": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.OracleInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "switchboardpy.OracleInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "switchboardpy.OracleInitParams.queue_account": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "switchboardpy.OracleInitParams.name": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 6}, "switchboardpy.OracleInitParams.metadata": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.OracleWithdrawParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.OracleWithdrawParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "switchboardpy.OracleWithdrawParams.amount": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"qualname": 3, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.OracleQueueAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 47}, "switchboardpy.OracleQueueAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.OracleQueueAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 24}, "switchboardpy.OracleQueueAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.OracleQueueAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.OracleQueueAccount.load_mint": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.OracleQueueAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.OracleQueueInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "switchboardpy.OracleQueueInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 70, "bases": 0, "doc": 3}, "switchboardpy.OracleQueueInitParams.mint": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.OracleQueueInitParams.reward": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "switchboardpy.OracleQueueInitParams.min_stake": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "switchboardpy.OracleQueueInitParams.authority": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 24}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"qualname": 4, "fullname": 5, "annotation": 3, "default_value": 2, "signature": 0, "bases": 0, "doc": 14}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"qualname": 5, "fullname": 6, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 14}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"qualname": 5, "fullname": 6, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"qualname": 4, "fullname": 5, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.OracleQueueInitParams.queue_size": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 18}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 30}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"qualname": 4, "fullname": 5, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.OracleQueueInitParams.name": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 7}, "switchboardpy.OracleQueueInitParams.metadata": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 23}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"qualname": 3, "fullname": 4, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.OracleJob": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.DESCRIPTOR": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 3, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.OracleJob.HttpTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.JsonParseTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.MedianTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.MeanTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.MaxTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.ValueTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.WebsocketTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.ConditionalTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.DivideTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.MultiplyTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.AddTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.SubtractTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.LpTokenPriceTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.LpExchangeRateTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.RegexExtractTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.XStepPriceTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.TwapTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.SerumSwapTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.PowTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.LendingRateTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.JupiterSwapTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.PerpMarketTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.OracleTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.AnchorFetchTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.DefiKingdomsTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.TpsTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.SplStakePoolTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.SplTokenParseTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.CacheTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.SysclockOffsetTask": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.Task": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 9, "doc": 4}, "switchboardpy.OracleJob.tasks": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.PermissionAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 50}, "switchboardpy.PermissionAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.PermissionAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 30}, "switchboardpy.PermissionAccount.is_permission_enabled": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.PermissionAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.PermissionAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.PermissionAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.PermissionAccount.from_seed": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 3}, "switchboardpy.PermissionAccount.set": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.PermissionInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "switchboardpy.PermissionInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "switchboardpy.PermissionInitParams.granter": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.PermissionInitParams.grantee": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "switchboardpy.PermissionSetParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "switchboardpy.PermissionSetParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 13, "bases": 0, "doc": 3}, "switchboardpy.PermissionSetParams.permission": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "switchboardpy.PermissionSetParams.authority": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "switchboardpy.ProgramStateAccount": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 41}, "switchboardpy.ProgramStateAccount.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.ProgramStateAccount.keypair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 33}, "switchboardpy.ProgramStateAccount.from_seed": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.ProgramStateAccount.load_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.ProgramStateAccount.get_token_mint": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.ProgramStateAccount.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 3, "bases": 0, "doc": 3}, "switchboardpy.ProgramStateAccount.create": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "switchboardpy.ProgramStateAccount.vault_transfer": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "switchboardpy.ProgramInitParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.ProgramInitParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.ProgramInitParams.mint": {"qualname": 2, "fullname": 3, "annotation": 4, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.VaultTransferParams": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "switchboardpy.VaultTransferParams.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 6, "bases": 0, "doc": 3}, "switchboardpy.SwitchboardDecimal": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "switchboardpy.SwitchboardDecimal.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "switchboardpy.SwitchboardDecimal.scale": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 33}, "switchboardpy.SwitchboardDecimal.fromObj": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "switchboardpy.SwitchboardDecimal.to_decimal": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 5, "bases": 0, "doc": 3}, "switchboardpy.SwitchboardDecimal.from_decimal": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 5, "bases": 0, "doc": 3}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 6, "bases": 0, "doc": 3}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 3}, "switchboardpy.readRawVarint32": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "switchboardpy.readDelimitedFrom": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}}, "length": 272, "save": true}, "index": {"qualname": {"root": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}}, "df": 30, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}}, "df": 7, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.AggregatorAccount.size": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 28}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}}, "df": 4}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}}, "df": 17}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}}, "df": 10}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.AddTask": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 10}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "s": {"docs": {"switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}}, "df": 30}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}, "s": {"docs": {"switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.ProgramStateAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.size": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 9}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.ProgramInitParams": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}}, "df": 2, "s": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankAccount.push": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}}, "df": 1}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.PermissionAccount.size": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}}, "df": 9}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.PermissionInitParams": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 4}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.PermissionSetParams": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}}, "df": 2}, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.PowTask": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 11}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 7}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.PermissionInitParams.granter": {"tf": 1}}, "df": 1}, "e": {"docs": {"switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankPopParams.nonce": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}}, "df": 15}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.AggregatorAccount.lock": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.size": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}}, "df": 10}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}}, "df": 8}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.LendingRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}}, "df": 9}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.JobAccount.decode": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.DivideTask": {"tf": 1}}, "df": 1}}}}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleAccount.heartbeat": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.HttpTask": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.ValueTask": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}}, "df": 3}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobInitParams.variables": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.VaultTransferParams": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 3, "s": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}}, "df": 7, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {"switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 2}}}}}}}}, "x": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}}, "df": 2}}, "o": {"docs": {"switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}}, "df": 2, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.TwapTask": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.TpsTask": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.Task": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankAccount.size": {"tf": 1}, "switchboardpy.LeaseAccount.size": {"tf": 1}, "switchboardpy.OracleAccount.size": {"tf": 1}, "switchboardpy.OracleQueueAccount.size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.PermissionAccount.size": {"tf": 1}, "switchboardpy.ProgramStateAccount.size": {"tf": 1}}, "df": 11}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}}, "df": 8}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SubtractTask": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.SwitchboardDecimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}, "switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}, "switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 8}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.remove_job": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {"switchboardpy.readRawVarint32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.readDelimitedFrom": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.reward": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}}, "df": 2}}}, "w": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankInitParams.max_rows": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.ConditionalTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}}, "df": 8}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.CrankAccount.size": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 12}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 11}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankPushParams": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}}, "df": 6}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.CrankRow": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}}, "df": 4}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.CacheTask": {"tf": 1}}, "df": 1}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}}, "df": 5, "s": {"docs": {"switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.JsonParseTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.LeaseAccount.get_balance": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankRow.from_bytes": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 7, "s": {"docs": {"switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.size": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.heartbeat": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}}, "df": 9}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}}, "df": 5}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.size": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 18}}}}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}, "switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 38}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.OracleTask": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {"switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 7, "t": {"docs": {"switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 4}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MedianTask": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MeanTask": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MaxTask": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MultiplyTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}}, "df": 10}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseAccount.extend": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}}, "df": 2}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}}, "df": 4}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.LeaseAccount.withdraw": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}}, "df": 5}}}}}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.WebsocketTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "x": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "fullname": {"root": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}}, "df": 30, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy": {"tf": 1}, "switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.AggregatorAccount.size": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}, "switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.CrankAccount.size": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}, "switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}, "switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}, "switchboardpy.CrankPushParams": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.CrankRow": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.size": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}, "switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.size": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.heartbeat": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.size": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}, "switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}, "switchboardpy.OracleJob.tasks": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.PermissionAccount.size": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}, "switchboardpy.PermissionInitParams": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.size": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}, "switchboardpy.ProgramInitParams": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}, "switchboardpy.VaultTransferParams": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}, "switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}, "switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}, "switchboardpy.readRawVarint32": {"tf": 1}, "switchboardpy.readDelimitedFrom": {"tf": 1}}, "df": 272}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.SwitchboardDecimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}, "switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}, "switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 8}}}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankAccount.size": {"tf": 1}, "switchboardpy.LeaseAccount.size": {"tf": 1}, "switchboardpy.OracleAccount.size": {"tf": 1}, "switchboardpy.OracleQueueAccount.size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.PermissionAccount.size": {"tf": 1}, "switchboardpy.ProgramStateAccount.size": {"tf": 1}}, "df": 11}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}}, "df": 8}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SubtractTask": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}}, "df": 7, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.AggregatorAccount.size": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 28}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}}, "df": 4}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}}, "df": 17}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}}, "df": 10}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.AddTask": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 10}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "s": {"docs": {"switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}}, "df": 30}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}, "s": {"docs": {"switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.ProgramStateAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.size": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 9}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.ProgramInitParams": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}}, "df": 2, "s": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankAccount.push": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}}, "df": 1}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.PermissionAccount.size": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}}, "df": 9}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.PermissionInitParams": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 4}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.PermissionSetParams": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}}, "df": 2}, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.PowTask": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 11}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 7}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.PermissionInitParams.granter": {"tf": 1}}, "df": 1}, "e": {"docs": {"switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankPopParams.nonce": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}}, "df": 15}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.AggregatorAccount.lock": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.size": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}}, "df": 10}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}}, "df": 8}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.LendingRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}}, "df": 9}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.JobAccount.decode": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.DivideTask": {"tf": 1}}, "df": 1}}}}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleAccount.heartbeat": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.HttpTask": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.ValueTask": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}}, "df": 3}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobInitParams.variables": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.VaultTransferParams": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 3, "s": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}}, "df": 7, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {"switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 2}}}}}}}}, "x": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}}, "df": 2}}, "o": {"docs": {"switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}}, "df": 2, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.TwapTask": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.TpsTask": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.Task": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.remove_job": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {"switchboardpy.readRawVarint32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.readDelimitedFrom": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.reward": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}}, "df": 2}}}, "w": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankInitParams.max_rows": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.ConditionalTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}}, "df": 8}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.CrankAccount.size": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 12}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 11}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankPushParams": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}}, "df": 6}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.CrankRow": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}}, "df": 4}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.CacheTask": {"tf": 1}}, "df": 1}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}}, "df": 5, "s": {"docs": {"switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.JsonParseTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.LeaseAccount.get_balance": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankRow.from_bytes": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 7, "s": {"docs": {"switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.size": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.heartbeat": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}}, "df": 9}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}}, "df": 5}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.size": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 18}}}}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}, "switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 38}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.OracleTask": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {"switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 7, "t": {"docs": {"switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 4}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MedianTask": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MeanTask": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MaxTask": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.MultiplyTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}}, "df": 10}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseAccount.extend": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}}, "df": 2}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}}, "df": 4}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.LeaseAccount.withdraw": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}}, "df": 5}}}}}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.WebsocketTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "x": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "annotation": {"root": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 89, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"switchboardpy.CrankPopParams.crank": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}}, "df": 2}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow.pubkey": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.authority": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.granter": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1.4142135623730951}, "switchboardpy.ProgramInitParams.mint": {"tf": 1.4142135623730951}}, "df": 23}}}}}}}}, "b": {"2": {"docs": {"switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 28}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 7}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AccountParams.keypair": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.keypair": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1.4142135623730951}, "switchboardpy.PermissionSetParams.authority": {"tf": 1.4142135623730951}}, "df": 6}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1.4142135623730951}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 25}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}}, "df": 5, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 10}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}}, "df": 6}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.JobInitParams.variables": {"tf": 1}}, "df": 1}}}}}}}}}}, "default_value": {"root": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}, "switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1.7320508075688772}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 42, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AccountParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankPopParams.nonce": {"tf": 1}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.authority": {"tf": 1}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1}, "switchboardpy.ProgramInitParams.mint": {"tf": 1}}, "df": 41}}}}}}, "signature": {"root": {"0": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}}, "df": 1, "x": {"1": {"0": {"3": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"2": {"9": {"4": {"0": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {"switchboardpy.AccountParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_name": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.add_job": {"tf": 2}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 2}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 2}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 2}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 2}, "switchboardpy.AggregatorAccount.lock": {"tf": 2}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 2}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 2}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.push": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.pop": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount.peak_next": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankPushParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow.from_bytes": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount.load_job": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount.decode": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.extend": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.heartbeat": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.withdraw": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.set": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.size": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1.4142135623730951}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1.4142135623730951}}, "df": 104, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.load_data": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.AggregatorAccount.size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.size": {"tf": 1}, "switchboardpy.CrankAccount.load_data": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.load_data": {"tf": 1}, "switchboardpy.JobAccount.load_job": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.size": {"tf": 1}, "switchboardpy.LeaseAccount.load_data": {"tf": 1}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.size": {"tf": 1}, "switchboardpy.OracleAccount.load_data": {"tf": 1}, "switchboardpy.OracleAccount.heartbeat": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.size": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.load_data": {"tf": 1}, "switchboardpy.PermissionAccount.size": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.size": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}, "switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 83}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 2}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1.4142135623730951}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}}, "df": 21}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 44}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.PermissionSetParams.__init__": {"tf": 1}}, "df": 1, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 3}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 2}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.decode": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.create": {"tf": 2}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1.7320508075688772}}, "df": 16, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.ProgramStateAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}}, "df": 1, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 2}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 2}, "switchboardpy.CrankPopParams.__init__": {"tf": 3.1622776601683795}, "switchboardpy.CrankRow.__init__": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 2}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 2}, "switchboardpy.PermissionAccount.from_seed": {"tf": 2.449489742783178}, "switchboardpy.PermissionInitParams.__init__": {"tf": 2.449489742783178}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1.4142135623730951}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 18}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}}, "df": 3, "s": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 33}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 2}}}}}, "b": {"2": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.set": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1.4142135623730951}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.PermissionAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.PermissionAccount.set": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 15}}}}}}, "y": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}}, "df": 7}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}}, "df": 11, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount.get_name": {"tf": 1}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1.4142135623730951}, "switchboardpy.CrankPushParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 21, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.open_round": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankPushParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 17}}}}}}}}, "t": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}}, "df": 8}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 2}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}, "switchboardpy.AggregatorAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.create": {"tf": 1}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1}, "switchboardpy.ProgramStateAccount.create": {"tf": 1}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1}}, "df": 15}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorAccount.__init__": {"tf": 1}, "switchboardpy.CrankAccount.__init__": {"tf": 1}, "switchboardpy.JobAccount.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.__init__": {"tf": 1}, "switchboardpy.OracleAccount.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1}, "switchboardpy.PermissionAccount.__init__": {"tf": 1}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1}}, "df": 8}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.set_authority": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.create": {"tf": 1}, "switchboardpy.CrankAccount.push": {"tf": 1}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankAccount.push": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankAccount.pop_txn": {"tf": 1}, "switchboardpy.CrankAccount.pop": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 2}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.lock": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 2}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}, "n": {"docs": {"switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AccountParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 3.1622776601683795}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.__init__": {"tf": 2.23606797749979}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 3.4641016151377544}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}}, "df": 22}, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}}, "df": 8}, "x": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankRow.__init__": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 5}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1}}, "df": 6}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankAccount.peak_next_ready": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.remove_job": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.create": {"tf": 1}, "switchboardpy.OracleAccount.withdraw": {"tf": 1}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 11, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.remove_job": {"tf": 1}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1}}, "df": 2}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.create": {"tf": 1}}, "df": 8, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleQueueAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleAccount.withdraw": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "n": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}, "b": {"docs": {}, "df": 0, "j": {"docs": {"switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 2.449489742783178}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1.4142135623730951}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1.4142135623730951}}, "df": 14}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.JobInitParams.__init__": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorAccount.should_report_value": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1}}, "df": 6}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}}, "df": 3}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow.from_bytes": {"tf": 1}, "switchboardpy.JobAccount.decode": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 8}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.JobAccount.create": {"tf": 1}}, "df": 3, "s": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.JobInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.LeaseAccount.create": {"tf": 1}, "switchboardpy.LeaseAccount.extend": {"tf": 1}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseAccount.create": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseAccount.extend": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseAccount.withdraw": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.create": {"tf": 1}}, "df": 1}}, "t": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 2.6457513110645907}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1}, "switchboardpy.CrankAccount.peak_next": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 2.8284271247461903}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1.4142135623730951}}, "df": 17}}, "d": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}}, "df": 5}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.add_job": {"tf": 1}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1}, "switchboardpy.AggregatorAccount.lock": {"tf": 1}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1}}, "df": 8}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1}, "switchboardpy.CrankRow.__init__": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {"switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1}}, "df": 1, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1}}, "df": 4}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 3, "t": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 4}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.SwitchboardDecimal.__init__": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankInitParams.__init__": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}, "switchboardpy.CrankPopParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankInitParams.__init__": {"tf": 1}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1}, "switchboardpy.OracleAccount.from_seed": {"tf": 1}, "switchboardpy.OracleInitParams.__init__": {"tf": 1}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 10}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.CrankPopParams.__init__": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.LeaseExtendParams.__init__": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.__init__": {"tf": 1}, "switchboardpy.JobInitParams.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.PermissionSetParams.__init__": {"tf": 1}}, "df": 1, "d": {"docs": {"switchboardpy.OracleQueueInitParams.__init__": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}}, "df": 2}, "e": {"docs": {"switchboardpy.PermissionAccount.from_seed": {"tf": 1}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleJob": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.HttpTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MedianTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MeanTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MaxTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.ValueTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DivideTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.AddTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.TwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PowTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.OracleTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.TpsTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.CacheTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.Task": {"tf": 1.4142135623730951}}, "df": 36}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.OracleJob": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.HttpTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MedianTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MeanTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MaxTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.ValueTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DivideTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.AddTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.TwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PowTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.OracleTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.TpsTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.CacheTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.Task": {"tf": 1.4142135623730951}}, "df": 36}}}}}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}}, "df": 36}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleJob": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.HttpTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.MedianTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.MeanTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.MaxTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.ValueTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.DivideTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.AddTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.TwapTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.PowTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.OracleTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.TpsTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.CacheTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.Task": {"tf": 1.7320508075688772}}, "df": 36}}}}}}}, "c": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}}, "df": 36}}}}}}}}}}, "doc": {"root": {"2": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}, "docs": {"switchboardpy": {"tf": 1.7320508075688772}, "switchboardpy.AccountParams": {"tf": 1.7320508075688772}, "switchboardpy.AccountParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AccountParams.program": {"tf": 1.7320508075688772}, "switchboardpy.AccountParams.public_key": {"tf": 1.7320508075688772}, "switchboardpy.AccountParams.keypair": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount": {"tf": 3.3166247903554}, "switchboardpy.AggregatorAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.keypair": {"tf": 2.8284271247461903}, "switchboardpy.AggregatorAccount.get_name": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.load_history": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.get_latest_value": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.get_latest_feed_timestamp": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.should_report_value": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.get_confirmed_round_results": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.produce_job_hash": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.load_jobs": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.load_hashes": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_history_buffer": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.open_round": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_min_jobs": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.add_job": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_batch_size": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_variance_threshold": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_min_oracles": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_update_interval": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.lock": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.set_authority": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.remove_job": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.get_oracle_index": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.save_result_txn": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorHistoryRow": {"tf": 2.6457513110645907}, "switchboardpy.AggregatorHistoryRow.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 2.6457513110645907}, "switchboardpy.AggregatorHistoryRow.from_buffer": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.name": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.authority": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.disable_crank": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorOpenRoundParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorOpenRoundParams.jitter": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams.authority": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount": {"tf": 3.1622776601683795}, "switchboardpy.CrankAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.keypair": {"tf": 2.449489742783178}, "switchboardpy.CrankAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.push": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.pop_txn": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.pop": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.peak_next_with_time": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.peak_next_ready": {"tf": 1.7320508075688772}, "switchboardpy.CrankAccount.peak_next": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.crank": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.queue": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.nonce": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams.fail_open_on_mismatch": {"tf": 1.7320508075688772}, "switchboardpy.CrankInitParams": {"tf": 1.4142135623730951}, "switchboardpy.CrankInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1.4142135623730951}, "switchboardpy.CrankInitParams.name": {"tf": 1.4142135623730951}, "switchboardpy.CrankInitParams.metadata": {"tf": 1.4142135623730951}, "switchboardpy.CrankInitParams.max_rows": {"tf": 1.7320508075688772}, "switchboardpy.CrankPushParams": {"tf": 1.7320508075688772}, "switchboardpy.CrankPushParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankRow": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow.__init__": {"tf": 1.7320508075688772}, "switchboardpy.CrankRow.pubkey": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow.from_bytes": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount": {"tf": 3.1622776601683795}, "switchboardpy.JobAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.keypair": {"tf": 3.4641016151377544}, "switchboardpy.JobAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.load_job": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.decode": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.data": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.name": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.expiration": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.variables": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.keypair": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.authority": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount": {"tf": 3.1622776601683795}, "switchboardpy.LeaseAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.keypair": {"tf": 2.449489742783178}, "switchboardpy.LeaseAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.get_balance": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.extend": {"tf": 1.7320508075688772}, "switchboardpy.LeaseAccount.withdraw": {"tf": 1.7320508075688772}, "switchboardpy.LeaseExtendParams": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.withdraw_authority": {"tf": 1.7320508075688772}, "switchboardpy.LeaseWithdrawParams": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 3.1622776601683795}, "switchboardpy.OracleAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.keypair": {"tf": 2.449489742783178}, "switchboardpy.OracleAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.heartbeat": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount.withdraw": {"tf": 1.7320508075688772}, "switchboardpy.OracleInitParams": {"tf": 1.7320508075688772}, "switchboardpy.OracleInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams.name": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams.metadata": {"tf": 1.7320508075688772}, "switchboardpy.OracleWithdrawParams": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1.4142135623730951}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 3.1622776601683795}, "switchboardpy.OracleQueueAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 2.449489742783178}, "switchboardpy.OracleQueueAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount.load_mint": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueInitParams.unpermissioned_vrf": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DESCRIPTOR": {"tf": 1.7320508075688772}, "switchboardpy.OracleJob.HttpTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MedianTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MeanTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MaxTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.ValueTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DivideTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.AddTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.TwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PowTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.OracleTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.TpsTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.CacheTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.Task": {"tf": 1.4142135623730951}, "switchboardpy.OracleJob.tasks": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 3.1622776601683795}, "switchboardpy.PermissionAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.keypair": {"tf": 2.6457513110645907}, "switchboardpy.PermissionAccount.is_permission_enabled": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.set": {"tf": 1.7320508075688772}, "switchboardpy.PermissionInitParams": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.PermissionInitParams.granter": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1.4142135623730951}, "switchboardpy.PermissionSetParams": {"tf": 1.4142135623730951}, "switchboardpy.PermissionSetParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.PermissionSetParams.permission": {"tf": 1.4142135623730951}, "switchboardpy.PermissionSetParams.authority": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount": {"tf": 3.1622776601683795}, "switchboardpy.ProgramStateAccount.__init__": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 3}, "switchboardpy.ProgramStateAccount.from_seed": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.load_data": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.get_token_mint": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.size": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.create": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount.vault_transfer": {"tf": 1.7320508075688772}, "switchboardpy.ProgramInitParams": {"tf": 1.4142135623730951}, "switchboardpy.ProgramInitParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.ProgramInitParams.mint": {"tf": 1.7320508075688772}, "switchboardpy.VaultTransferParams": {"tf": 1.4142135623730951}, "switchboardpy.VaultTransferParams.__init__": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal.__init__": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 3}, "switchboardpy.SwitchboardDecimal.fromObj": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal.to_decimal": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal.from_decimal": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal.sbd_to_decimal": {"tf": 1.7320508075688772}, "switchboardpy.SwitchboardDecimal.as_proper_sbd": {"tf": 1.7320508075688772}, "switchboardpy.readRawVarint32": {"tf": 1.7320508075688772}, "switchboardpy.readDelimitedFrom": {"tf": 1.7320508075688772}}, "df": 272, "t": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1.4142135623730951}}, "df": 1, "h": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy": {"tf": 1}, "switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.AccountParams.program": {"tf": 1.4142135623730951}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow": {"tf": 2}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 2.23606797749979}, "switchboardpy.JobInitParams": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1.4142135623730951}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionInitParams": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 74, "i": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}, "m": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1.4142135623730951}}, "df": 33}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 4}, "n": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 4, "s": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}}, "df": 5}}}}}}}}, "o": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1.4142135623730951}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 40, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}, "switchboardpy.ProgramInitParams": {"tf": 1}}, "df": 10}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 5}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.CrankPopParams": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.VaultTransferParams": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount": {"tf": 1.4142135623730951}}, "df": 8, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy": {"tf": 1}, "switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 10, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankPushParams": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.SwitchboardDecimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorHistoryRow": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}}, "df": 2, "d": {"docs": {"switchboardpy.JobAccount": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.reward": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 3}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}}, "df": 2}, "d": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.JobInitParams": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {"switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 5}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 3}}, "c": {"docs": {"switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}}, "df": 4}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.JobInitParams": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.SwitchboardDecimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.authority": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AccountParams": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount": {"tf": 2.449489742783178}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1.4142135623730951}}, "df": 12, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobInitParams": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}}, "df": 36}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.mint": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"switchboardpy.JobInitParams.variables": {"tf": 1}}, "df": 1, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.reward": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount": {"tf": 1.4142135623730951}}, "df": 9, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 8}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.CrankRow": {"tf": 1}, "switchboardpy.PermissionInitParams": {"tf": 1}}, "df": 5, "s": {"docs": {"switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.JobAccount": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.keypair": {"tf": 2}, "switchboardpy.PermissionInitParams": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.PermissionSetParams": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 12, "s": {"docs": {"switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.authority": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseAccount": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}}, "v": {"2": {"docs": {"switchboardpy": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobInitParams.expiration": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy": {"tf": 1}, "switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorHistoryRow": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 7}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}}, "df": 6, "n": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}}, "df": 2}}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 11}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.JobInitParams.name": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}}, "df": 10}}}}, "s": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}, "e": {"docs": {"switchboardpy.OracleQueueInitParams.authority": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1, "f": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AccountParams": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 10}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 3, "s": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.authority": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 3}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 7}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}}, "df": 5}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}}, "df": 4}}}, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.CrankPopParams": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.reward": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.authority": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 3}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.CrankInitParams.metadata": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 7, "s": {"docs": {"switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}, "switchboardpy.OracleJob": {"tf": 1}, "switchboardpy.OracleJob.HttpTask": {"tf": 1}, "switchboardpy.OracleJob.JsonParseTask": {"tf": 1}, "switchboardpy.OracleJob.MedianTask": {"tf": 1}, "switchboardpy.OracleJob.MeanTask": {"tf": 1}, "switchboardpy.OracleJob.MaxTask": {"tf": 1}, "switchboardpy.OracleJob.ValueTask": {"tf": 1}, "switchboardpy.OracleJob.WebsocketTask": {"tf": 1}, "switchboardpy.OracleJob.ConditionalTask": {"tf": 1}, "switchboardpy.OracleJob.DivideTask": {"tf": 1}, "switchboardpy.OracleJob.MultiplyTask": {"tf": 1}, "switchboardpy.OracleJob.AddTask": {"tf": 1}, "switchboardpy.OracleJob.SubtractTask": {"tf": 1}, "switchboardpy.OracleJob.LpTokenPriceTask": {"tf": 1}, "switchboardpy.OracleJob.LpExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.RegexExtractTask": {"tf": 1}, "switchboardpy.OracleJob.XStepPriceTask": {"tf": 1}, "switchboardpy.OracleJob.TwapTask": {"tf": 1}, "switchboardpy.OracleJob.SerumSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PowTask": {"tf": 1}, "switchboardpy.OracleJob.LendingRateTask": {"tf": 1}, "switchboardpy.OracleJob.MangoPerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.JupiterSwapTask": {"tf": 1}, "switchboardpy.OracleJob.PerpMarketTask": {"tf": 1}, "switchboardpy.OracleJob.OracleTask": {"tf": 1}, "switchboardpy.OracleJob.AnchorFetchTask": {"tf": 1}, "switchboardpy.OracleJob.DefiKingdomsTask": {"tf": 1}, "switchboardpy.OracleJob.TpsTask": {"tf": 1}, "switchboardpy.OracleJob.SplStakePoolTask": {"tf": 1}, "switchboardpy.OracleJob.SplTokenParseTask": {"tf": 1}, "switchboardpy.OracleJob.UniswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.SushiswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.PancakeswapExchangeRateTask": {"tf": 1}, "switchboardpy.OracleJob.CacheTask": {"tf": 1}, "switchboardpy.OracleJob.SysclockOffsetTask": {"tf": 1}, "switchboardpy.OracleJob.Task": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}}, "df": 56, "n": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}}, "df": 16, "d": {"docs": {"switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1.4142135623730951}}, "df": 9}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 11, "p": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1.4142135623730951}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankPushParams": {"tf": 1}, "switchboardpy.CrankRow": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1.7320508075688772}, "switchboardpy.OracleWithdrawParams.amount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionInitParams": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 19, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorAccount.keypair": {"tf": 2}, "switchboardpy.AggregatorHistoryRow": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankPushParams": {"tf": 1.4142135623730951}, "switchboardpy.CrankRow": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 22, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.CrankPushParams": {"tf": 1}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}}}}, "s": {"docs": {"switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 9}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 10}}, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 3}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}, "switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 12}}, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"switchboardpy.AggregatorInitParams.authority": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {"switchboardpy.JobAccount": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}}, "df": 3}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleInitParams": {"tf": 1}}, "df": 1, "d": {"docs": {"switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}}, "df": 2}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.JobInitParams.data": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}, "switchboardpy.VaultTransferParams": {"tf": 1}}, "df": 9}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AccountParams": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1.7320508075688772}}, "df": 2}}, "s": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 15}, "n": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}}, "df": 8, "t": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}, "switchboardpy.SwitchboardDecimal": {"tf": 1.4142135623730951}}, "df": 6, "o": {"docs": {"switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorSaveResultParams": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 7}, "t": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {"switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 2}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount": {"tf": 1.4142135623730951}}, "df": 9, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorAccount": {"tf": 1.7320508075688772}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1.7320508075688772}, "switchboardpy.JobAccount": {"tf": 1.7320508075688772}, "switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1.7320508075688772}, "switchboardpy.OracleAccount": {"tf": 1.7320508075688772}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1.7320508075688772}, "switchboardpy.PermissionAccount": {"tf": 1.7320508075688772}, "switchboardpy.ProgramStateAccount": {"tf": 1.7320508075688772}}, "df": 13}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}}, "df": 3}}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorHistoryRow": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.amount": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.PermissionInitParams": {"tf": 1}, "switchboardpy.PermissionInitParams.granter": {"tf": 1}}, "df": 40}, "r": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleWithdrawParams.withdraw_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1.4142135623730951}}, "df": 19, "s": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}}, "df": 10}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleInitParams": {"tf": 1}}, "df": 2}}}}}}}}}, "e": {"docs": {"switchboardpy.OracleInitParams.queue_account": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleInitParams.name": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.CrankRow.pubkey": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 14, "e": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams.metadata": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.ProgramInitParams": {"tf": 1}}, "df": 6, "l": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.OracleQueueInitParams.mint": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.author_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AccountParams.program": {"tf": 1}, "switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.VaultTransferParams": {"tf": 1}}, "df": 5}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}}, "df": 5}}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}}, "df": 10}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.PermissionAccount": {"tf": 1}}, "df": 4}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 2}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}}}}, "x": {"docs": {"switchboardpy.CrankInitParams.metadata": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.LeaseAccount": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.SwitchboardDecimal": {"tf": 1}, "switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.OracleInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}}, "df": 5}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 6}}}}, "t": {"docs": {"switchboardpy.AggregatorSaveResultParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.queue": {"tf": 1}, "switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.ProgramInitParams": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1, "o": {"docs": {"switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.OracleQueueInitParams.authority": {"tf": 1}}, "df": 3, "t": {"docs": {"switchboardpy.AccountParams.public_key": {"tf": 1}, "switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 7}, "n": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.CrankAccount": {"tf": 1.4142135623730951}, "switchboardpy.JobAccount": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount": {"tf": 1.4142135623730951}, "switchboardpy.PermissionAccount": {"tf": 1.4142135623730951}, "switchboardpy.ProgramStateAccount": {"tf": 1.4142135623730951}}, "df": 8}, "c": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.OracleInitParams.queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.feed_probation_period": {"tf": 1}}, "df": 7}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.batch_size": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_oracle_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.min_required_job_results": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.CrankInitParams.metadata": {"tf": 1}}, "df": 7}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "/": {"0": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 2}, "x": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}}, "df": 3}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams.size": {"tf": 1}, "switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1.7320508075688772}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.PermissionInitParams.grantee": {"tf": 1}}, "df": 25}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 8, "s": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 7}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1.4142135623730951}}, "df": 14}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseExtendParams.funder": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1.4142135623730951}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.LeaseAccount": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.JobInitParams.expiration": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.OracleJob.tasks": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}}, "df": 2}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"switchboardpy.AggregatorAccount": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}, "switchboardpy.CrankPopParams.crank": {"tf": 1}, "switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 8}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1, "s": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueAccount": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {"switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1}, "switchboardpy.LeaseAccount.keypair": {"tf": 1}, "switchboardpy.OracleAccount.keypair": {"tf": 1}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1}}, "df": 5}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1}}, "df": 1, "d": {"docs": {"switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.PermissionAccount": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.PermissionInitParams": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.ProgramStateAccount": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}, "switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorAccount.keypair": {"tf": 1}, "switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 4}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorHistoryRow.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.max_response": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.token_mint": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}}, "df": 3}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.LeaseAccount": {"tf": 1.7320508075688772}, "switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseExtendParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseInitParams.load_amount": {"tf": 1}, "switchboardpy.LeaseInitParams.funder_authority": {"tf": 1}, "switchboardpy.LeaseInitParams.oracle_queue_account": {"tf": 1}, "switchboardpy.LeaseInitParams.aggregator_account": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams.withdraw_wallet": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 11, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.LeaseAccount.keypair": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}}, "df": 2}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.variance_threshold": {"tf": 1}}, "df": 1}}}, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"switchboardpy.LeaseExtendParams": {"tf": 1}, "switchboardpy.LeaseInitParams": {"tf": 1}, "switchboardpy.LeaseWithdrawParams": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"switchboardpy.PermissionSetParams.authority": {"tf": 1}}, "df": 1, "d": {"docs": {"switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.PermissionAccount.keypair": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.AggregatorHistoryRow": {"tf": 1}, "switchboardpy.AggregatorSetHistoryBufferParams": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}}, "df": 3}, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.JobInitParams": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams": {"tf": 1}, "switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1.4142135623730951}, "switchboardpy.AggregatorSaveResultParams": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.error": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_oracle_failure_limit": {"tf": 1}}, "df": 10, "s": {"docs": {"switchboardpy.AggregatorInitParams.authority": {"tf": 1}, "switchboardpy.LeaseAccount": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"switchboardpy.AggregatorInitParams.metadata": {"tf": 1}, "switchboardpy.AggregatorInitParams.force_report_period": {"tf": 1}, "switchboardpy.JobInitParams.name": {"tf": 1}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}}, "df": 3}}}, "e": {"docs": {"switchboardpy.JobInitParams.variables": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 2}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.min_update_delay_seconds": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams": {"tf": 1}, "switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.jobs": {"tf": 1}, "switchboardpy.CrankPopParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankPopParams.queue_pubkey": {"tf": 1}, "switchboardpy.OracleAccount": {"tf": 1}, "switchboardpy.OracleInitParams": {"tf": 1}, "switchboardpy.OracleQueueAccount": {"tf": 1}, "switchboardpy.OracleQueueInitParams": {"tf": 1}, "switchboardpy.OracleQueueInitParams.mint": {"tf": 1}, "switchboardpy.OracleQueueInitParams.reward": {"tf": 1}, "switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}, "switchboardpy.OracleQueueInitParams.minimum_delay_seconds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}, "switchboardpy.OracleQueueInitParams.unpermissioned_feeds": {"tf": 1}, "switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}, "switchboardpy.OracleQueueInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.metadata": {"tf": 1}}, "df": 19, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankPopParams.crank": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.AggregatorInitParams.queue_account": {"tf": 1}, "switchboardpy.AggregatorInitParams.name": {"tf": 1}, "switchboardpy.CrankAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.LeaseAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.OracleQueueAccount.keypair": {"tf": 1.4142135623730951}}, "df": 6}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.PermissionAccount.keypair": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.AggregatorInitParams.start_after": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.AggregatorOpenRoundParams.oracle_queue_account": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {"switchboardpy.JobInitParams.name": {"tf": 1}, "switchboardpy.OracleQueueInitParams.oracle_timeout": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}, "switchboardpy.CrankAccount": {"tf": 1.7320508075688772}, "switchboardpy.CrankPopParams": {"tf": 1}, "switchboardpy.CrankPopParams.token_mint": {"tf": 1}, "switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.CrankInitParams": {"tf": 1}, "switchboardpy.CrankInitParams.queue_account": {"tf": 1}, "switchboardpy.CrankInitParams.name": {"tf": 1}, "switchboardpy.CrankRow.pubkey": {"tf": 1}}, "df": 9, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.CrankAccount.keypair": {"tf": 1.4142135623730951}, "switchboardpy.CrankPopParams.queue_authority": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.CrankPushParams": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.OracleQueueInitParams.min_stake": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"switchboardpy.AggregatorSaveResultParams.oracle_idx": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.CrankPopParams.ready_pubkeys": {"tf": 1}, "switchboardpy.OracleQueueInitParams.variance_tolerance_multiplier": {"tf": 1}, "switchboardpy.OracleQueueInitParams.consecutive_feed_failure_limit": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"switchboardpy.OracleQueueInitParams.slashing_enabled": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"switchboardpy.ProgramStateAccount.keypair": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"switchboardpy.PermissionSetParams.permission": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"switchboardpy.JobInitParams.expiration": {"tf": 1}}, "df": 1}}}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"switchboardpy.AggregatorInitParams.expiration": {"tf": 1}, "switchboardpy.AggregatorInitParams.keypair": {"tf": 1}, "switchboardpy.JobAccount": {"tf": 1}, "switchboardpy.JobInitParams": {"tf": 1}, "switchboardpy.JobInitParams.data": {"tf": 1}, "switchboardpy.JobInitParams.expiration": {"tf": 1}, "switchboardpy.JobInitParams.keypair": {"tf": 1}}, "df": 7, "s": {"docs": {"switchboardpy.AggregatorSaveResultParams.value": {"tf": 1}, "switchboardpy.AggregatorSaveResultParams.min_response": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"switchboardpy.JobAccount.keypair": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"switchboardpy.OracleQueueInitParams.queue_size": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"switchboardpy.AggregatorOpenRoundParams.payout_wallet": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"switchboardpy.SwitchboardDecimal.scale": {"tf": 1}}, "df": 1}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; - - // mirrored in build-search-index.js (part 1) - // Also split on html tags. this is a cheap heuristic, but good enough. - elasticlunr.tokenizer.setSeperator(/[\s\-.;&_'"=,()]+|<[^>]*>/); - - let searchIndex; - if (docs._isPrebuiltIndex) { - console.info("using precompiled search index"); - searchIndex = elasticlunr.Index.load(docs); - } else { - console.time("building search index"); - // mirrored in build-search-index.js (part 2) - searchIndex = elasticlunr(function () { - this.pipeline.remove(elasticlunr.stemmer); - this.pipeline.remove(elasticlunr.stopWordFilter); - this.addField("qualname"); - this.addField("fullname"); - this.addField("annotation"); - this.addField("default_value"); - this.addField("signature"); - this.addField("bases"); - this.addField("doc"); - this.setRef("fullname"); - }); - for (let doc of docs) { - searchIndex.addDoc(doc); - } - console.timeEnd("building search index"); - } - - return (term) => searchIndex.search(term, { - fields: { - qualname: {boost: 4}, - fullname: {boost: 2}, - annotation: {boost: 2}, - default_value: {boost: 2}, - signature: {boost: 2}, - bases: {boost: 2}, - doc: {boost: 1}, - }, - expand: true - }); -})(); \ No newline at end of file diff --git a/website/static/api/py/switchboardpy.html b/website/static/api/py/switchboardpy.html deleted file mode 100644 index f8ea62a..0000000 --- a/website/static/api/py/switchboardpy.html +++ /dev/null @@ -1,10526 +0,0 @@ - - - - - - - switchboardpy API documentation - - - - - - - - - -
-
-

-switchboardpy

- -

The Switchboard Python v2 Wrapper.

-
- -
- View Source -
"""The Switchboard Python v2 Wrapper."""
-
-from switchboardpy.aggregator import (
-    AggregatorAccount, 
-    AggregatorHistoryRow, 
-    AggregatorInitParams, 
-    AggregatorOpenRoundParams, 
-    AggregatorSaveResultParams, 
-    AggregatorSetHistoryBufferParams,
-)
-from switchboardpy.compiled import OracleJob
-from switchboardpy.common import SBV2_DEVNET_PID, AccountParams, SwitchboardDecimal
-from switchboardpy.crank import CrankAccount, CrankPopParams, CrankInitParams, CrankPushParams, CrankRow
-from switchboardpy.job import JobAccount, JobInitParams
-from switchboardpy.lease import LeaseAccount, LeaseExtendParams, LeaseInitParams, LeaseWithdrawParams
-from switchboardpy.oracle import OracleAccount, OracleInitParams, OracleWithdrawParams
-from switchboardpy.oraclequeue import OracleQueueAccount, OracleQueueInitParams
-from switchboardpy.permission import PermissionAccount, PermissionInitParams, PermissionSetParams
-from switchboardpy.program import ProgramStateAccount, ProgramInitParams, VaultTransferParams
-
-__all__ = [
-    "AccountParams",
-    "AggregatorAccount", 
-    "AggregatorHistoryRow", 
-    "AggregatorInitParams", 
-    "AggregatorOpenRoundParams", 
-    "AggregatorSaveResultParams", 
-    "AggregatorSetHistoryBufferParams",
-    "CrankAccount",
-    "CrankPopParams",
-    "CrankInitParams",
-    "CrankPushParams",
-    "CrankRow",
-    "JobAccount",
-    "JobInitParams",
-    "LeaseAccount",
-    "LeaseExtendParams",
-    "LeaseInitParams",
-    "LeaseWithdrawParams",
-    "OracleAccount",
-    "OracleInitParams",
-    "OracleWithdrawParams",
-    "OracleQueueAccount",
-    "OracleQueueInitParams",
-    "OracleJob",
-    "PermissionAccount",
-    "PermissionInitParams",
-    "PermissionSetParams",
-    "ProgramStateAccount",
-    "ProgramInitParams",
-    "VaultTransferParams",
-    "SwitchboardDecimal",
-    "readRawVarint32",
-    "readDelimitedFrom"
-]
-
- -
- -
-
-
- #   - -
@dataclass
- - class - AccountParams: -
- -
- View Source -
@dataclass
-class AccountParams:
-
-    """program referencing the Switchboard program and IDL."""
-    program: anchorpy.Program
-
-    """
-    Public key of the account being referenced. This will always be populated
-    within the account wrapper.
-    """
-    public_key: PublicKey = None
-
-    """Keypair of the account being referenced. This may not always be populated."""
-    keypair: Keypair = None
-
- -
- -

program referencing the Switchboard program and IDL.

-
- - -
-
#   - - - AccountParams( - program: anchorpy.program.core.Program, - public_key: solana.publickey.PublicKey = None, - keypair: solana.keypair.Keypair = None -) -
- - - - -
-
-
#   - - program: anchorpy.program.core.Program -
- - -

Public key of the account being referenced. This will always be populated -within the account wrapper.

-
- - -
-
-
#   - - public_key: solana.publickey.PublicKey = None -
- - -

Keypair of the account being referenced. This may not always be populated.

-
- - -
-
-
#   - - keypair: solana.keypair.Keypair = None -
- - - - -
-
-
-
- #   - - - class - AggregatorAccount: -
- -
- View Source -
class AggregatorAccount:
-    """AggregatorAccount is the wrapper for an Aggregator, the structure for that keeps aggregated feed data / metadata.
-
-    Attributes:
-        program (anchor.Program): The anchor program ref
-        public_key (PublicKey | None): This aggregator's public key
-        keypair (Keypair | None): this aggregator's keypair
-    """
-
-
-    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-    
-
-    """
-    Get name of an aggregator.
-
-    Args:
-        aggregator (Any): Anchor-loaded aggregator
-
-    Returns:
-        name string of the aggregator
-    """
-    @staticmethod
-    def get_name(aggregator: Any) -> str:
-        return  ''.join(map(chr, *aggregator.name)).decode("utf-8").replace(u"\u0000", "*").encode("utf-8")
-
-        
-    """
-    Load and parse AggregatorAccount state based on the program IDL. 
-    
-    Returns:
-        name (AggregatorAccount): data parsed in accordance with the
-            Switchboard IDL.
-
-    Args:
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def load_data(self):
-        return await AggregatorAccountData.fetch(self.program.provider.connection, self.public_key)
-        
-
-    """
-    Get AggregatorAccount historical data 
-
-    Returns:
-        name (AggregatorAccount): data parsed in accordance with the
-            Switchboard IDL.
-
-    Args:
-        aggregator (Any): Optional aggregator 
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def load_history(self, aggregator: Any = None) -> Any:
-
-        # if aggregator data passed in - use that, else load this aggregator
-        aggregator = aggregator if aggregator else await self.load_data()
-
-        # Compare History Buffer to default public key (zeroed out)
-        if (aggregator.history_buffer == 11111111111111111111111111111111):
-            return []
-
-        # Fixed AggregatorHistoryRow size
-        ROW_SIZE = 28
-
-        # Get account data
-        info = await self.program.provider.connection.get_account_info(aggregator.history_buffer) 
-        buffer = info.data if info else []
-        if not buffer or buffer.length < 12:
-            return []
-        
-        # Read UInt32 as a Little Endian val, starting at position 8
-        insert_idx: int = struct.unpack_from("<L", buffer, 8)[0] * ROW_SIZE
-
-        front = []
-        tail = []
-
-        if not isinstance(buffer, list):
-            return []
-        
-        for i in range(13, buffer.length, ROW_SIZE):
-            if i + ROW_SIZE > buffer.length:
-                break
-            row = AggregatorHistoryRow.from_buffer(buffer)
-            if row.timestamp == 0:
-                break
-            if i <= insert_idx:
-                tail.append(row)
-            else:
-                front.append(row)
-        return front.extend(tail)
-
-    """
-    Get the latest confirmed value stored in the aggregator account. 
-    
-    Args:
-        aggregator (Any): Optional aggregator value to pass in
-
-    Returns:
-        value (Decimal): the latest feed value
-
-    Raises:
-        ValueError: If the aggregator currently holds no value
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def get_latest_value(self, aggregator: Optional[Any] = None) -> Decimal:
-        aggregator = aggregator if aggregator else await self.load_data()
-        if hasattr(aggregator, 'latest_confirmed_round') and aggregator.latest_confirmed_round.num_success == 0:
-            raise ValueError('Aggregator currently holds no value.')
-        return SwitchboardDecimal.sbd_to_decimal(aggregator.latest_confirmed_round.result)
-
-
-    """
-    Get the timestamp latest confirmed round stored in the aggregator account. 
-    
-    Args:
-        aggregator (Any): Optional aggregator value to pass in
-
-    Returns:
-        timestamp (str): latest feed timestamp as hex string
-
-    Raises:
-        ValueError: If the aggregator currently holds no value
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def get_latest_feed_timestamp(self, aggregator: Optional[Any] = None) -> Decimal:
-        aggregator = aggregator if aggregator else await self.load_data()
-        if hasattr(aggregator, 'latest_confirmed_round') and aggregator.latest_confirmed_round.num_success == 0:
-            raise ValueError('Aggregator currently holds no value.')
-
-        return aggregator.latest_confirmed_round.round_open_timestamp
-
-
-    """
-    Get name of an aggregator.
-
-    Args:
-        aggregator (any): Anchor-loaded aggregator
-
-    Returns:
-        name string of the aggregator
-    """
-    @staticmethod
-    def should_report_value(value: Decimal, aggregator: Optional[Any] = None) -> bool:
-        if aggregator.latestConfirmedRound and aggregator.latest_confirmed_round.num_success == 0:
-            return True
-        timestamp = round(int(time.time()) / 1000)
-        if aggregator.start_after > timestamp:
-            return False
-        variance_threshold = SwitchboardDecimal.sbd_to_decimal(aggregator.variance_threshold)
-        latest_result = SwitchboardDecimal.sbd_to_decimal(aggregator.latest_confirmed_round.result)
-        force_report_period = aggregator.force_report_period
-        last_timestamp = aggregator.latest_confirmed_round.round_open_timestamp
-        if last_timestamp + force_report_period < timestamp:
-            return True
-        diff = latest_result / value
-        if abs(diff) > 1:
-            diff = value / latest_result
-        if diff < 0:
-            return True
-        
-        change_percentage = 1 - diff * 100
-        return change_percentage > variance_threshold
-
-    """
-    Get the individual oracle results of the latest confirmed round. 
-    
-    Args:
-        aggregator (Any): Optional aggregator value to pass in
-
-    Returns:
-        timestamp (str): latest feed timestamp as hex string
-
-    Raises:
-        ValueError: If aggregator currently holds no value.
-    """
-    async def get_confirmed_round_results(self, aggregator: Optional[Any] = None) -> Decimal:
-        
-        aggregator = aggregator if aggregator else await self.load_data()
-        if hasattr(aggregator, 'latest_confirmed_round') and aggregator.latest_confirmed_round.num_success == 0:
-            raise ValueError('Aggregator currently holds no value.')
-        results: list[Any] = []
-        for i in range(aggregator.oracle_request_batch_size):
-            if aggregator.latest_confirmed_round.medians_filfilled[i]:
-                results.append({
-                    "oracle_account": OracleAccount(AccountParams(program=self.program, public_key=aggregator.latest_confirmed_round.oracle_pubkeys_data[i])),
-                    "value": SwitchboardDecimal.sbd_to_decimal(aggregator.latest_confirmed_round.medians_data[i])
-                })
-        return results
-
-    """
-    Get the hash of a list of OracleJobs
-    
-    Args:
-        jobs (list[OracleJob]): list of jobs to hash
-
-    Returns:
-        hash (_Hash): hash as hex string
-
-    Raises:
-    """
-    @staticmethod
-    def produce_job_hash(jobs: list[OracleJob]):
-        hash = hashlib.sha256()
-        for job in jobs:
-            job_hasher = hashlib.sha256()
-            job_hasher.update(job.SerializeToString())
-            hash.update(job_hasher.digest())
-        return hash
-
-
-    """
-    Load and deserialize all jobs stored in this aggregator
-    
-    Args:
-        aggregator (Any): Optional aggregator
-
-    Returns:
-        jobs (list[{ "job": OracleJob, "public_key": PublicKey, "account": JobAccountData }]) 
-
-    Raises:
-        ValueError: Failed to load feed jobs.
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def load_jobs(self, aggregator: Optional[Any] = None) -> Decimal:
-        coder = anchorpy.AccountsCoder(self.program.idl)
-        aggregator = aggregator if aggregator else await self.load_data()
-        job_accounts_raw = await anchorpy.utils.rpc.get_multiple_accounts(self.program.provider.connection, aggregator.job_pubkeys_data[:aggregator.job_pubkeys_size], 10, Confirmed)
-        if not job_accounts_raw:
-            raise ValueError('Failed to load feed jobs.')
-        
-        # Deserialize OracleJob objects from each decoded JobAccountData 
-        return [AggregatorLoadedJob(parseOracleJob(coder.decode(job.account.data).data), job.pubkey, coder.decode(job.account.data)) for job in job_accounts_raw]
-        
-    """
-    Load all job hashes for each job stored in this aggregator
-    
-    Args:
-        aggregator (Any): Optional aggregator
-
-    Returns:
-        hashes (list[str]): hashes for each job 
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def load_hashes(self, aggregator: Optional[Any] = None) -> Decimal:
-        coder = anchorpy.AccountsCoder(self.program.idl)
-        aggregator = aggregator if aggregator else await self.loadData()
-        job_accounts_raw = await anchorpy.utils.rpc.get_multiple_accounts(self.program.provider.connection, aggregator.job_pubkeys_data[:aggregator.job_pubkeys_size])
-        if not job_accounts_raw:
-            raise ValueError('Failed to load feed jobs.')
-        
-        # get hashes from each decoded JobAccountData 
-        return [coder.decode(job.account.data).hash for job in job_accounts_raw]
-        
-    
-    """
-    Get the size of an AggregatorAccount on chain
-    
-    Returns:
-        int: size of the AggregatorAccount on chain
-    """
-    def size(self):
-        return self.program.account["AggregatorAccountData"].size
-
-    """
-    Create and initialize the AggregatorAccount.
-    
-    Args:
-        program (anchorpy.Program): Switchboard program representation holding connection and IDL
-        params (AggregatorInitParams): init params for the aggregator
-
-    Returns:
-        AggregatorAccount
-    """
-    @staticmethod
-    async def create(program: anchorpy.Program, aggregator_init_params: AggregatorInitParams):
-        aggregator_account = aggregator_init_params.keypair or Keypair.generate()
-        authority = aggregator_init_params.authority or aggregator_account.public_key
-        size = program.account["AggregatorAccountData"].size
-        state_account, state_bump = ProgramStateAccount.from_seed(program)
-        state = await state_account.load_data()
-        response = await program.provider.connection.get_minimum_balance_for_rent_exemption(size)
-        lamports = response["result"]
-        zero_decimal = SwitchboardDecimal(0, 0).as_proper_sbd(program)
-
-        await program.rpc["aggregator_init"](
-            {
-                "name": aggregator_init_params.name or bytes([0] * 32),
-                "metadata": aggregator_init_params.metadata or bytes([0] * 128),
-                "batch_size": aggregator_init_params.batch_size,
-                "min_oracle_results": aggregator_init_params.min_required_oracle_results,
-                "min_job_results": aggregator_init_params.min_required_job_results,
-                "min_update_delay_seconds": aggregator_init_params.min_update_delay_seconds,
-                "variance_threshold": SwitchboardDecimal.from_decimal(aggregator_init_params.variance_threshold).as_proper_sbd(program) if aggregator_init_params.variance_threshold else zero_decimal,
-                "force_report_period": aggregator_init_params.force_report_period or 0,
-                "expiration": aggregator_init_params.expiration or 0,
-                "state_bump": state_bump,
-                "disable_crank": aggregator_init_params.disable_crank or False,
-                "start_after": aggregator_init_params.start_after or 0,
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": aggregator_account.public_key,
-                    "authority": authority,
-                    "queue": aggregator_init_params.queue_account.public_key,
-                    "author_wallet": aggregator_init_params.author_wallet or state.token_vault,
-                    "program_state": state_account.public_key
-                },
-                signers=[aggregator_account],
-                pre_instructions=[
-                    create_account(
-                        CreateAccountParams(
-                            from_pubkey=program.provider.wallet.public_key, 
-                            new_account_pubkey=aggregator_account.public_key,
-                            lamports=lamports, 
-                            space=size, 
-                            program_id=program.program_id
-                        )
-                    )
-                ]
-            )
-        )
-        return AggregatorAccount(AccountParams(program=program, keypair=aggregator_account))
-
-    """
-    Create and set a history buffer for the aggregator
-
-    Args:
-        program (anchorpy.Program): Switchboard program representation holding connection and IDL
-        params (AggregatorSetHistoryBufferParams)
-
-    Returns:
-        TransactionSignature
-    """
-    async def set_history_buffer(self, params: AggregatorSetHistoryBufferParams):
-        buffer = Keypair.generate()
-        program = self.program
-        authority = params.authority or self.keypair
-        HISTORY_ROW_SIZE = 28
-        INSERT_IDX_SIZE = 4
-        DISCRIMINATOR_SIZE = 8
-        size = params.size * HISTORY_ROW_SIZE + INSERT_IDX_SIZE + DISCRIMINATOR_SIZE
-        response = await program.provider.connection.get_minimum_balance_for_rent_exemption(size)
-        lamports = response["result"]
-        await program.rpc["aggregator_set_history_buffer"](
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                    "buffer": buffer.public_key
-                },
-                signers=[authority, buffer],
-                pre_instructions=[
-                    create_account(
-                        CreateAccountParams(
-                            from_pubkey=program.provider.wallet.public_key,
-                            new_account_pubkey=buffer.public_key,
-                            space=size,
-                            lamports=lamports,
-                            program_id=program.program_id
-                        )
-                    )
-                ]
-            )
-        )
-
-    """
-    Open round on aggregator to get an update
-
-    Args:
-        program (anchorpy.Program): Switchboard program representation holding connection and IDL
-        params (AggregatorOpenRoundParams)
-
-    Returns:
-        TransactionSignature
-    """
-    async def open_round(self, params: AggregatorOpenRoundParams):
-        program = self.program
-        state_account, state_bump = ProgramStateAccount.from_seed(program)
-        queue = await params.oracle_queue_account.load_data()
-        lease_account, lease_bump = LeaseAccount.from_seed(
-            self.program,
-            params.oracle_queue_account,
-            self
-        )
-        lease = await lease_account.load_data()
-        permission_account, permission_bump = PermissionAccount.from_seed(
-            self.program,
-            queue.authority,
-            params.oracle_queue_account.public_key,
-            self.public_key
-        )
-        return await program.rpc["aggregator_open_round"](
-            {
-                "state_bump": state_bump,
-                "lease_bump": lease_bump,
-                "permission_bump": permission_bump,
-                "jitter": params.jitter or 0
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "lease":  lease_account.public_key,
-                    "oracle_queue": params.oracle_queue_account.public_key,
-                    "queue_authority": queue.authority,
-                    "permission": permission_account.public_key,
-                    "escrow": lease.escrow,
-                    "program_state": state_account.public_key,
-                    "payout_wallet": params.payout_wallet,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "data_buffer": queue.data_buffer,
-                    "mint": (await params.oracle_queue_account.load_mint()).pubkey,
-                },
-            )
-        )
-
-    """
-    Set min jobs sets the min jobs parameter. This is a suggestion to oracles 
-    of the number of jobs that must resolve for a job to be considered valid.
-
-    Args:
-        params (AggregatorSetMinJobsParams): parameters pecifying the min jobs that must respond
-    Returns:
-        TransactionSignature
-
-    """
-    async def set_min_jobs(self, params: AggregatorSetMinJobsParams):
-        authority = authority or self.keypair
-        return await self.program.rpc['aggregator_set_min_jobs'](
-            {
-                "min_job_results": params.min_job_results
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-
-    """
-    Set min oracles sets the min oracles parameter. This will determine how many oracles need to come back with a 
-    valid response for a result to be accepted. 
-
-    Args:
-        params (AggregatorSetMinOraclesParams): parameters pecifying the min jobs that must respond
-    Returns:
-        TransactionSignature
-
-    """
-    async def set_min_jobs(self, params: AggregatorSetMinJobsParams):
-        authority = authority or self.keypair
-        return await self.program.rpc['aggregator_set_min_jobs'](
-            {
-                "min_job_results": params.min_job_results
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-    
-    """
-    RPC to add a new job to an aggregtor to be performed on feed updates.
-
-    Args:
-        job (JobAccount): specifying another job for this aggregator to fulfill on update
-        authority (Keypair | None)
-    Returns:
-        TransactionSignature
-    """
-    async def add_job(self, job: JobAccount, weight: int = 0, authority: Optional[Keypair] = None) -> TransactionSignature:
-        authority = authority or self.keypair
-        
-        return await self.program.rpc['aggregator_add_job'](
-            {
-                "weight": weight
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                    "job": job.public_key
-                },
-                signers=[authority]
-            )
-        )
-
-    """
-    RPC Set batch size / the number of oracles that'll respond to updates
-
-    Args:
-        params (AggregatorSetBatchSizeParams)
-    Returns:
-        TransactionSignature
-    """
-    async def set_batch_size(self, params: AggregatorSetBatchSizeParams) -> TransactionSignature:
-        authority = authority or self.keypair
-        return await self.program.rpc['aggregator_set_batch_size'](
-            {
-                "batch_size": params.batch_size
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-        
-
-    """
-    RPC set variance threshold (only write updates when response is > variance threshold %)
-
-    Args:
-        params (AggregatorSetVarianceThresholdParams)
-    Returns:
-        TransactionSignature
-    """
-    async def set_variance_threshold(self, params: AggregatorSetVarianceThresholdParams) -> TransactionSignature:
-        authority = authority or self.keypair
-        
-        return await self.program.rpc['aggregator_set_variance_threshold'](
-            {
-                "variance_threshold": SwitchboardDecimal.from_decimal(params.threshold)
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-
-    """
-    RPC set min oracles
-
-    Args:
-        params (AggregatorSetMinOraclesParams)
-    Returns:
-        TransactionSignature
-    """
-    async def set_min_oracles(self, params: AggregatorSetMinOraclesParams) -> TransactionSignature:
-        authority = authority or self.keypair
-        
-        return await self.program.rpc['aggregator_set_min_oracles'](
-            {
-                "min_oracle_results": params.min_oracle_results
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-
-    """
-    RPC set update interval
-
-    Args:
-        params (AggregatorSetUpdateIntervalParams)
-    Returns:
-        TransactionSignature
-    """
-    async def set_update_interval(self, params: AggregatorSetUpdateIntervalParams) -> TransactionSignature:
-        authority = authority or self.keypair
-        
-        return await self.program.rpc['aggregator_set_update_interval'](
-            {
-                "new_interval": params.new_interval
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-        
-    """
-    Prevent new jobs from being added to the feed.
-
-    Args:
-        authority (Keypair | None): the current authority keypair
-
-    Returns:
-        TransactionSignature
-    """
-    async def lock(self, authority: Optional[Keypair] = None) -> TransactionSignature:
-        authority = authority or self.keypair
-        return await self.program.rpc['aggregator_lock'](
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-
-    """
-    Change the aggregator authority
-
-    Args:
-        new_authority (Keypair): The new authority
-        current_authority (Keypair | None): the current authority keypair
-
-    Returns:
-        TransactionSignature
-    """
-    async def set_authority(self, new_authority: Keypair, current_authority: Optional[Keypair] = None) -> TransactionSignature:
-        current_authority = current_authority or self.keypair
-        return await self.program.rpc['aggregator_set_authoirty'](
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "new_authority": new_authority,
-                    "authority": current_authority.public_key,
-                },
-                signers=[current_authority]
-            )
-        )
-
-    """
-    RPC to add remove job from an aggregtor.
-
-    Args:
-        job (JobAccount): specifying job to remove
-        authority (Keypair | None)
-    Returns:
-        TransactionSignature
-    """
-    async def remove_job(self, job: JobAccount, authority: Optional[Keypair] = None) -> TransactionSignature:
-        authority = authority or self.keypair
-        return await self.program.rpc['aggregator_remove_job'](
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                    "job": job.public_key
-                },
-                signers=[authority]
-            )
-        )
-    
-    """
-    Get Index of Oracle in Aggregator
-
-    Args:
-        oracle_pubkey (PublicKey): Public key belonging to the oracle
-
-    Returns:
-        int: index of the oracle, -1 if not found
-    """
-    async def get_oracle_index(self, oracle_pubkey: PublicKey):
-        aggregator = await self.load_data()
-        for i, curr_oracle_pubkey in enumerate(aggregator.current_round.oracle_pubkeys_data):
-            if curr_oracle_pubkey == oracle_pubkey:
-                return i
-        return -1
-    
-    """
-    Save Aggregator result
-
-    Args:
-        aggregator (Any): Aggregator data
-        oracle_account (OracleAccount)
-        params (AggregatorSaveResultParams)
-
-    Returns:
-        TransactionSignature
-    """
-    async def remove_job(self, aggregator: Any, oracle_account: OracleAccount, params: AggregatorSaveResultParams) -> TransactionSignature:
-        return await self.program.provider.send(
-            tx=(
-                await self.save_result_txn(
-                    aggregator,
-                    oracle_account,
-                    params
-                )
-            )
-        )
-    
-    """
-    RPC call for an oracle to save a result to an aggregator round.
-
-    Args:
-        aggregator (Any): Aggregator data
-        oracle_account (OracleAccount)
-        params (AggregatorSaveResultParams)
-
-    Returns:
-        TransactionSignature
-    """
-    async def save_result_txn(self, aggregator: Any, oracle_account: OracleAccount, params: AggregatorSaveResultParams):
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        remaining_accounts: list[PublicKey] = []
-        for i in range(aggregator.oracle_request_batch_size):
-            remaining_accounts.append(aggregator.current_round.oracle_pubkeys_data[i])
-        for oracle in params.oracles:
-            remaining_accounts.push(oracle.token_account)
-        queue_pubkey = aggregator.queue_pubkey
-        queue_account = OracleQueueAccount(AccountParams(program=self.program, public_key=queue_pubkey))
-        lease_account, lease_bump = LeaseAccount.from_seed(
-            self.program,
-            queue_account,
-            self
-        )
-        escrow = get_associated_token_address(lease_account.public_key, params.token_mint)
-        feed_permission_account, feed_permission_bump = PermissionAccount.from_seed(
-            self.program,
-            params.queue_authority,
-            queue_account.public_key,
-            self.public_key
-        )
-        oracle_permission_account, oracle_permission_bump = PermissionAccount.from_seed(
-            self.program,
-            params.queue_authority,
-            queue_account.public_key,
-            oracle_account.public_key
-        )
-        program_state_account, state_bump = ProgramStateAccount.from_seed(self.program)
-        digest = await self.produce_job_hash(params.jobs).digest()
-        history_buffer = aggregator.history_buffer
-        if history_buffer == PublicKey('11111111111111111111111111111111'):
-            history_buffer = self.public_key
-        return self.program.transaction['aggregator_save_result'](
-            {
-                "oracle_idx": params.oracle_idx,
-                "error": params.error,
-                "value": SwitchboardDecimal.from_decimal(params.value).as_proper_sbd(self.program),
-                "jobs_checksum": digest,
-                "min_response": SwitchboardDecimal.from_decimal(params.min_response).as_proper_sbd(self.program),
-                "max_response": SwitchboardDecimal.from_decimal(params.max_response).as_proper_sbd(self.program),
-                "feed_permission_bump": feed_permission_bump,
-                "oracle_permission_bump": oracle_permission_bump,
-                "lease_bump": lease_bump,
-                "state_bump": state_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "oracle": oracle_account.public_key,
-                    "oracle_authority": payer_keypair.public_key,
-                    "oracle_queue": queue_account.public_key,
-                    "feed_permission": feed_permission_account.public_key,
-                    "oracle_permission": oracle_permission_account.public_key,
-                    "lease": lease_account.public_key,
-                    "escrow": escrow,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "program_state": program_state_account.public_key,
-                    "history_buffer": history_buffer,
-                    "mint": params.token_mint
-                },
-                remaining_accounts=[{"is_signer": False, "is_writable": True, "pubkey": pubkey} for pubkey in remaining_accounts]
-            )
-        )
-
- -
- -

AggregatorAccount is the wrapper for an Aggregator, the structure for that keeps aggregated feed data / metadata.

- -

Attributes: - program (anchor.Program): The anchor program ref - public_key (PublicKey | None): This aggregator's public key - keypair (Keypair | None): this aggregator's keypair

-
- - -
-
#   - - - AggregatorAccount(params: switchboardpy.AccountParams) -
- -
- View Source -
    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-
- -
- - - -
-
-
#   - - keypair -
- - -

Get name of an aggregator.

- -

Args: - aggregator (Any): Anchor-loaded aggregator

- -

Returns: - name string of the aggregator

-
- - -
-
-
#   - -
@staticmethod
- - def - get_name(aggregator: Any) -> str: -
- -
- View Source -
    @staticmethod
-    def get_name(aggregator: Any) -> str:
-        return  ''.join(map(chr, *aggregator.name)).decode("utf-8").replace(u"\u0000", "*").encode("utf-8")
-
- -
- - - -
-
-
#   - - - async def - load_data(self): -
- -
- View Source -
    async def load_data(self):
-        return await AggregatorAccountData.fetch(self.program.provider.connection, self.public_key)
-
- -
- - - -
-
-
#   - - - async def - load_history(self, aggregator: Any = None) -> Any: -
- -
- View Source -
    async def load_history(self, aggregator: Any = None) -> Any:
-
-        # if aggregator data passed in - use that, else load this aggregator
-        aggregator = aggregator if aggregator else await self.load_data()
-
-        # Compare History Buffer to default public key (zeroed out)
-        if (aggregator.history_buffer == 11111111111111111111111111111111):
-            return []
-
-        # Fixed AggregatorHistoryRow size
-        ROW_SIZE = 28
-
-        # Get account data
-        info = await self.program.provider.connection.get_account_info(aggregator.history_buffer) 
-        buffer = info.data if info else []
-        if not buffer or buffer.length < 12:
-            return []
-        
-        # Read UInt32 as a Little Endian val, starting at position 8
-        insert_idx: int = struct.unpack_from("<L", buffer, 8)[0] * ROW_SIZE
-
-        front = []
-        tail = []
-
-        if not isinstance(buffer, list):
-            return []
-        
-        for i in range(13, buffer.length, ROW_SIZE):
-            if i + ROW_SIZE > buffer.length:
-                break
-            row = AggregatorHistoryRow.from_buffer(buffer)
-            if row.timestamp == 0:
-                break
-            if i <= insert_idx:
-                tail.append(row)
-            else:
-                front.append(row)
-        return front.extend(tail)
-
- -
- - - -
-
-
#   - - - async def - get_latest_value(self, aggregator: Optional[Any] = None) -> decimal.Decimal: -
- -
- View Source -
    async def get_latest_value(self, aggregator: Optional[Any] = None) -> Decimal:
-        aggregator = aggregator if aggregator else await self.load_data()
-        if hasattr(aggregator, 'latest_confirmed_round') and aggregator.latest_confirmed_round.num_success == 0:
-            raise ValueError('Aggregator currently holds no value.')
-        return SwitchboardDecimal.sbd_to_decimal(aggregator.latest_confirmed_round.result)
-
- -
- - - -
-
-
#   - - - async def - get_latest_feed_timestamp(self, aggregator: Optional[Any] = None) -> decimal.Decimal: -
- -
- View Source -
    async def get_latest_feed_timestamp(self, aggregator: Optional[Any] = None) -> Decimal:
-        aggregator = aggregator if aggregator else await self.load_data()
-        if hasattr(aggregator, 'latest_confirmed_round') and aggregator.latest_confirmed_round.num_success == 0:
-            raise ValueError('Aggregator currently holds no value.')
-
-        return aggregator.latest_confirmed_round.round_open_timestamp
-
- -
- - - -
-
-
#   - -
@staticmethod
- - def - should_report_value(value: decimal.Decimal, aggregator: Optional[Any] = None) -> bool: -
- -
- View Source -
    @staticmethod
-    def should_report_value(value: Decimal, aggregator: Optional[Any] = None) -> bool:
-        if aggregator.latestConfirmedRound and aggregator.latest_confirmed_round.num_success == 0:
-            return True
-        timestamp = round(int(time.time()) / 1000)
-        if aggregator.start_after > timestamp:
-            return False
-        variance_threshold = SwitchboardDecimal.sbd_to_decimal(aggregator.variance_threshold)
-        latest_result = SwitchboardDecimal.sbd_to_decimal(aggregator.latest_confirmed_round.result)
-        force_report_period = aggregator.force_report_period
-        last_timestamp = aggregator.latest_confirmed_round.round_open_timestamp
-        if last_timestamp + force_report_period < timestamp:
-            return True
-        diff = latest_result / value
-        if abs(diff) > 1:
-            diff = value / latest_result
-        if diff < 0:
-            return True
-        
-        change_percentage = 1 - diff * 100
-        return change_percentage > variance_threshold
-
- -
- - - -
-
-
#   - - - async def - get_confirmed_round_results(self, aggregator: Optional[Any] = None) -> decimal.Decimal: -
- -
- View Source -
    async def get_confirmed_round_results(self, aggregator: Optional[Any] = None) -> Decimal:
-        
-        aggregator = aggregator if aggregator else await self.load_data()
-        if hasattr(aggregator, 'latest_confirmed_round') and aggregator.latest_confirmed_round.num_success == 0:
-            raise ValueError('Aggregator currently holds no value.')
-        results: list[Any] = []
-        for i in range(aggregator.oracle_request_batch_size):
-            if aggregator.latest_confirmed_round.medians_filfilled[i]:
-                results.append({
-                    "oracle_account": OracleAccount(AccountParams(program=self.program, public_key=aggregator.latest_confirmed_round.oracle_pubkeys_data[i])),
-                    "value": SwitchboardDecimal.sbd_to_decimal(aggregator.latest_confirmed_round.medians_data[i])
-                })
-        return results
-
- -
- - - -
-
-
#   - -
@staticmethod
- - def - produce_job_hash(jobs: list[switchboardpy.OracleJob]): -
- -
- View Source -
    @staticmethod
-    def produce_job_hash(jobs: list[OracleJob]):
-        hash = hashlib.sha256()
-        for job in jobs:
-            job_hasher = hashlib.sha256()
-            job_hasher.update(job.SerializeToString())
-            hash.update(job_hasher.digest())
-        return hash
-
- -
- - - -
-
-
#   - - - async def - load_jobs(self, aggregator: Optional[Any] = None) -> decimal.Decimal: -
- -
- View Source -
    async def load_jobs(self, aggregator: Optional[Any] = None) -> Decimal:
-        coder = anchorpy.AccountsCoder(self.program.idl)
-        aggregator = aggregator if aggregator else await self.load_data()
-        job_accounts_raw = await anchorpy.utils.rpc.get_multiple_accounts(self.program.provider.connection, aggregator.job_pubkeys_data[:aggregator.job_pubkeys_size], 10, Confirmed)
-        if not job_accounts_raw:
-            raise ValueError('Failed to load feed jobs.')
-        
-        # Deserialize OracleJob objects from each decoded JobAccountData 
-        return [AggregatorLoadedJob(parseOracleJob(coder.decode(job.account.data).data), job.pubkey, coder.decode(job.account.data)) for job in job_accounts_raw]
-
- -
- - - -
-
-
#   - - - async def - load_hashes(self, aggregator: Optional[Any] = None) -> decimal.Decimal: -
- -
- View Source -
    async def load_hashes(self, aggregator: Optional[Any] = None) -> Decimal:
-        coder = anchorpy.AccountsCoder(self.program.idl)
-        aggregator = aggregator if aggregator else await self.loadData()
-        job_accounts_raw = await anchorpy.utils.rpc.get_multiple_accounts(self.program.provider.connection, aggregator.job_pubkeys_data[:aggregator.job_pubkeys_size])
-        if not job_accounts_raw:
-            raise ValueError('Failed to load feed jobs.')
-        
-        # get hashes from each decoded JobAccountData 
-        return [coder.decode(job.account.data).hash for job in job_accounts_raw]
-
- -
- - - -
-
-
#   - - - def - size(self): -
- -
- View Source -
    def size(self):
-        return self.program.account["AggregatorAccountData"].size
-
- -
- - - -
-
-
#   - -
@staticmethod
- - async def - create( - program: anchorpy.program.core.Program, - aggregator_init_params: switchboardpy.AggregatorInitParams -): -
- -
- View Source -
    @staticmethod
-    async def create(program: anchorpy.Program, aggregator_init_params: AggregatorInitParams):
-        aggregator_account = aggregator_init_params.keypair or Keypair.generate()
-        authority = aggregator_init_params.authority or aggregator_account.public_key
-        size = program.account["AggregatorAccountData"].size
-        state_account, state_bump = ProgramStateAccount.from_seed(program)
-        state = await state_account.load_data()
-        response = await program.provider.connection.get_minimum_balance_for_rent_exemption(size)
-        lamports = response["result"]
-        zero_decimal = SwitchboardDecimal(0, 0).as_proper_sbd(program)
-
-        await program.rpc["aggregator_init"](
-            {
-                "name": aggregator_init_params.name or bytes([0] * 32),
-                "metadata": aggregator_init_params.metadata or bytes([0] * 128),
-                "batch_size": aggregator_init_params.batch_size,
-                "min_oracle_results": aggregator_init_params.min_required_oracle_results,
-                "min_job_results": aggregator_init_params.min_required_job_results,
-                "min_update_delay_seconds": aggregator_init_params.min_update_delay_seconds,
-                "variance_threshold": SwitchboardDecimal.from_decimal(aggregator_init_params.variance_threshold).as_proper_sbd(program) if aggregator_init_params.variance_threshold else zero_decimal,
-                "force_report_period": aggregator_init_params.force_report_period or 0,
-                "expiration": aggregator_init_params.expiration or 0,
-                "state_bump": state_bump,
-                "disable_crank": aggregator_init_params.disable_crank or False,
-                "start_after": aggregator_init_params.start_after or 0,
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": aggregator_account.public_key,
-                    "authority": authority,
-                    "queue": aggregator_init_params.queue_account.public_key,
-                    "author_wallet": aggregator_init_params.author_wallet or state.token_vault,
-                    "program_state": state_account.public_key
-                },
-                signers=[aggregator_account],
-                pre_instructions=[
-                    create_account(
-                        CreateAccountParams(
-                            from_pubkey=program.provider.wallet.public_key, 
-                            new_account_pubkey=aggregator_account.public_key,
-                            lamports=lamports, 
-                            space=size, 
-                            program_id=program.program_id
-                        )
-                    )
-                ]
-            )
-        )
-        return AggregatorAccount(AccountParams(program=program, keypair=aggregator_account))
-
- -
- - - -
-
-
#   - - - async def - set_history_buffer( - self, - params: switchboardpy.AggregatorSetHistoryBufferParams -): -
- -
- View Source -
    async def set_history_buffer(self, params: AggregatorSetHistoryBufferParams):
-        buffer = Keypair.generate()
-        program = self.program
-        authority = params.authority or self.keypair
-        HISTORY_ROW_SIZE = 28
-        INSERT_IDX_SIZE = 4
-        DISCRIMINATOR_SIZE = 8
-        size = params.size * HISTORY_ROW_SIZE + INSERT_IDX_SIZE + DISCRIMINATOR_SIZE
-        response = await program.provider.connection.get_minimum_balance_for_rent_exemption(size)
-        lamports = response["result"]
-        await program.rpc["aggregator_set_history_buffer"](
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                    "buffer": buffer.public_key
-                },
-                signers=[authority, buffer],
-                pre_instructions=[
-                    create_account(
-                        CreateAccountParams(
-                            from_pubkey=program.provider.wallet.public_key,
-                            new_account_pubkey=buffer.public_key,
-                            space=size,
-                            lamports=lamports,
-                            program_id=program.program_id
-                        )
-                    )
-                ]
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - open_round(self, params: switchboardpy.AggregatorOpenRoundParams): -
- -
- View Source -
    async def open_round(self, params: AggregatorOpenRoundParams):
-        program = self.program
-        state_account, state_bump = ProgramStateAccount.from_seed(program)
-        queue = await params.oracle_queue_account.load_data()
-        lease_account, lease_bump = LeaseAccount.from_seed(
-            self.program,
-            params.oracle_queue_account,
-            self
-        )
-        lease = await lease_account.load_data()
-        permission_account, permission_bump = PermissionAccount.from_seed(
-            self.program,
-            queue.authority,
-            params.oracle_queue_account.public_key,
-            self.public_key
-        )
-        return await program.rpc["aggregator_open_round"](
-            {
-                "state_bump": state_bump,
-                "lease_bump": lease_bump,
-                "permission_bump": permission_bump,
-                "jitter": params.jitter or 0
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "lease":  lease_account.public_key,
-                    "oracle_queue": params.oracle_queue_account.public_key,
-                    "queue_authority": queue.authority,
-                    "permission": permission_account.public_key,
-                    "escrow": lease.escrow,
-                    "program_state": state_account.public_key,
-                    "payout_wallet": params.payout_wallet,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "data_buffer": queue.data_buffer,
-                    "mint": (await params.oracle_queue_account.load_mint()).pubkey,
-                },
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - set_min_jobs(self, params: switchboardpy.aggregator.AggregatorSetMinJobsParams): -
- -
- View Source -
    async def set_min_jobs(self, params: AggregatorSetMinJobsParams):
-        authority = authority or self.keypair
-        return await self.program.rpc['aggregator_set_min_jobs'](
-            {
-                "min_job_results": params.min_job_results
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - add_job( - self, - job: switchboardpy.JobAccount, - weight: int = 0, - authority: Optional[solana.keypair.Keypair] = None -) -> <function NewType.<locals>.new_type at 0x103bd2940>: -
- -
- View Source -
    async def add_job(self, job: JobAccount, weight: int = 0, authority: Optional[Keypair] = None) -> TransactionSignature:
-        authority = authority or self.keypair
-        
-        return await self.program.rpc['aggregator_add_job'](
-            {
-                "weight": weight
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                    "job": job.public_key
-                },
-                signers=[authority]
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - set_batch_size( - self, - params: switchboardpy.aggregator.AggregatorSetBatchSizeParams -) -> <function NewType.<locals>.new_type at 0x103bd2940>: -
- -
- View Source -
    async def set_batch_size(self, params: AggregatorSetBatchSizeParams) -> TransactionSignature:
-        authority = authority or self.keypair
-        return await self.program.rpc['aggregator_set_batch_size'](
-            {
-                "batch_size": params.batch_size
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - set_variance_threshold( - self, - params: switchboardpy.aggregator.AggregatorSetVarianceThresholdParams -) -> <function NewType.<locals>.new_type at 0x103bd2940>: -
- -
- View Source -
    async def set_variance_threshold(self, params: AggregatorSetVarianceThresholdParams) -> TransactionSignature:
-        authority = authority or self.keypair
-        
-        return await self.program.rpc['aggregator_set_variance_threshold'](
-            {
-                "variance_threshold": SwitchboardDecimal.from_decimal(params.threshold)
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - set_min_oracles( - self, - params: switchboardpy.aggregator.AggregatorSetMinOraclesParams -) -> <function NewType.<locals>.new_type at 0x103bd2940>: -
- -
- View Source -
    async def set_min_oracles(self, params: AggregatorSetMinOraclesParams) -> TransactionSignature:
-        authority = authority or self.keypair
-        
-        return await self.program.rpc['aggregator_set_min_oracles'](
-            {
-                "min_oracle_results": params.min_oracle_results
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - set_update_interval( - self, - params: switchboardpy.aggregator.AggregatorSetUpdateIntervalParams -) -> <function NewType.<locals>.new_type at 0x103bd2940>: -
- -
- View Source -
    async def set_update_interval(self, params: AggregatorSetUpdateIntervalParams) -> TransactionSignature:
-        authority = authority or self.keypair
-        
-        return await self.program.rpc['aggregator_set_update_interval'](
-            {
-                "new_interval": params.new_interval
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - lock( - self, - authority: Optional[solana.keypair.Keypair] = None -) -> <function NewType.<locals>.new_type at 0x103bd2940>: -
- -
- View Source -
    async def lock(self, authority: Optional[Keypair] = None) -> TransactionSignature:
-        authority = authority or self.keypair
-        return await self.program.rpc['aggregator_lock'](
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "authority": authority.public_key,
-                },
-                signers=[authority]
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - set_authority( - self, - new_authority: solana.keypair.Keypair, - current_authority: Optional[solana.keypair.Keypair] = None -) -> <function NewType.<locals>.new_type at 0x103bd2940>: -
- -
- View Source -
    async def set_authority(self, new_authority: Keypair, current_authority: Optional[Keypair] = None) -> TransactionSignature:
-        current_authority = current_authority or self.keypair
-        return await self.program.rpc['aggregator_set_authoirty'](
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "new_authority": new_authority,
-                    "authority": current_authority.public_key,
-                },
-                signers=[current_authority]
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - remove_job( - self, - aggregator: Any, - oracle_account: switchboardpy.OracleAccount, - params: switchboardpy.AggregatorSaveResultParams -) -> <function NewType.<locals>.new_type at 0x103bd2940>: -
- -
- View Source -
    async def remove_job(self, aggregator: Any, oracle_account: OracleAccount, params: AggregatorSaveResultParams) -> TransactionSignature:
-        return await self.program.provider.send(
-            tx=(
-                await self.save_result_txn(
-                    aggregator,
-                    oracle_account,
-                    params
-                )
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - get_oracle_index(self, oracle_pubkey: solana.publickey.PublicKey): -
- -
- View Source -
    async def get_oracle_index(self, oracle_pubkey: PublicKey):
-        aggregator = await self.load_data()
-        for i, curr_oracle_pubkey in enumerate(aggregator.current_round.oracle_pubkeys_data):
-            if curr_oracle_pubkey == oracle_pubkey:
-                return i
-        return -1
-
- -
- - - -
-
-
#   - - - async def - save_result_txn( - self, - aggregator: Any, - oracle_account: switchboardpy.OracleAccount, - params: switchboardpy.AggregatorSaveResultParams -): -
- -
- View Source -
    async def save_result_txn(self, aggregator: Any, oracle_account: OracleAccount, params: AggregatorSaveResultParams):
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        remaining_accounts: list[PublicKey] = []
-        for i in range(aggregator.oracle_request_batch_size):
-            remaining_accounts.append(aggregator.current_round.oracle_pubkeys_data[i])
-        for oracle in params.oracles:
-            remaining_accounts.push(oracle.token_account)
-        queue_pubkey = aggregator.queue_pubkey
-        queue_account = OracleQueueAccount(AccountParams(program=self.program, public_key=queue_pubkey))
-        lease_account, lease_bump = LeaseAccount.from_seed(
-            self.program,
-            queue_account,
-            self
-        )
-        escrow = get_associated_token_address(lease_account.public_key, params.token_mint)
-        feed_permission_account, feed_permission_bump = PermissionAccount.from_seed(
-            self.program,
-            params.queue_authority,
-            queue_account.public_key,
-            self.public_key
-        )
-        oracle_permission_account, oracle_permission_bump = PermissionAccount.from_seed(
-            self.program,
-            params.queue_authority,
-            queue_account.public_key,
-            oracle_account.public_key
-        )
-        program_state_account, state_bump = ProgramStateAccount.from_seed(self.program)
-        digest = await self.produce_job_hash(params.jobs).digest()
-        history_buffer = aggregator.history_buffer
-        if history_buffer == PublicKey('11111111111111111111111111111111'):
-            history_buffer = self.public_key
-        return self.program.transaction['aggregator_save_result'](
-            {
-                "oracle_idx": params.oracle_idx,
-                "error": params.error,
-                "value": SwitchboardDecimal.from_decimal(params.value).as_proper_sbd(self.program),
-                "jobs_checksum": digest,
-                "min_response": SwitchboardDecimal.from_decimal(params.min_response).as_proper_sbd(self.program),
-                "max_response": SwitchboardDecimal.from_decimal(params.max_response).as_proper_sbd(self.program),
-                "feed_permission_bump": feed_permission_bump,
-                "oracle_permission_bump": oracle_permission_bump,
-                "lease_bump": lease_bump,
-                "state_bump": state_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "aggregator": self.public_key,
-                    "oracle": oracle_account.public_key,
-                    "oracle_authority": payer_keypair.public_key,
-                    "oracle_queue": queue_account.public_key,
-                    "feed_permission": feed_permission_account.public_key,
-                    "oracle_permission": oracle_permission_account.public_key,
-                    "lease": lease_account.public_key,
-                    "escrow": escrow,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "program_state": program_state_account.public_key,
-                    "history_buffer": history_buffer,
-                    "mint": params.token_mint
-                },
-                remaining_accounts=[{"is_signer": False, "is_writable": True, "pubkey": pubkey} for pubkey in remaining_accounts]
-            )
-        )
-
- -
- - - -
-
-
-
- #   - -
@dataclass
- - class - AggregatorHistoryRow: -
- -
- View Source -
@dataclass
-class AggregatorHistoryRow:
-    """AggregatorHistoryRow is a wrapper for the row structure of elements in the aggregator history buffer.
-    
-    Attributes:
-        timestamp (int): timestamp of the aggregator result
-        value (Decimal): Aggregator value at the timestamp
-    """
-    timestamp: int
-    value: Decimal
-    
-    """
-    Generate an AggregatorHistoryRow from a retrieved buffer representation
-
-    Args:
-        buf (list): Anchor-loaded buffer representation of AggregatorHistoryRow
-
-    Returns:
-        AggregatorHistoryRow
-    """
-    @staticmethod
-    def from_buffer(buf: bytes):
-        timestamp: int = struct.unpack_from("<L", buf[:8])[0]
-        mantissa: int = struct.unpack_from("<L", buf[8:24])[0]
-        scale: int = struct.unpack_from("<L", buf, 24)[0]
-        decimal = SwitchboardDecimal.sbd_to_decimal({"mantissa": mantissa, "scale": scale})
-        res = AggregatorHistoryRow(timestamp, decimal)
-        return res
-
- -
- -

AggregatorHistoryRow is a wrapper for the row structure of elements in the aggregator history buffer.

- -

Attributes: - timestamp (int): timestamp of the aggregator result - value (Decimal): Aggregator value at the timestamp

-
- - -
-
#   - - - AggregatorHistoryRow(timestamp: int, value: decimal.Decimal) -
- - - - -
-
-
#   - - value: decimal.Decimal -
- - -

Generate an AggregatorHistoryRow from a retrieved buffer representation

- -

Args: - buf (list): Anchor-loaded buffer representation of AggregatorHistoryRow

- -

Returns: - AggregatorHistoryRow

-
- - -
-
-
#   - -
@staticmethod
- - def - from_buffer(buf: bytes): -
- -
- View Source -
    @staticmethod
-    def from_buffer(buf: bytes):
-        timestamp: int = struct.unpack_from("<L", buf[:8])[0]
-        mantissa: int = struct.unpack_from("<L", buf[8:24])[0]
-        scale: int = struct.unpack_from("<L", buf, 24)[0]
-        decimal = SwitchboardDecimal.sbd_to_decimal({"mantissa": mantissa, "scale": scale})
-        res = AggregatorHistoryRow(timestamp, decimal)
-        return res
-
- -
- - - -
-
-
-
- #   - -
@dataclass
- - class - AggregatorInitParams: -
- -
- View Source -
@dataclass
-class AggregatorInitParams:
-    """Number of oracles to request on aggregator update."""
-    batch_size: int
-
-    """Minimum number of oracle responses required before a round is validated."""
-    min_required_oracle_results: int
-
-    """Minimum number of seconds required between aggregator rounds."""
-    min_required_job_results: int
-
-    """Minimum number of seconds required between aggregator rounds."""
-    min_update_delay_seconds: int
-
-    """The queue to which this aggregator will be linked"""
-    queue_account: OracleQueueAccount
- 
-    """Name of the aggregator to store on-chain."""
-    name: bytes = None
-
-    """Metadata of the aggregator to store on-chain."""
-    metadata: bytes = None
-
-    """unix_timestamp for which no feed update will occur before."""
-    start_after: int = None
-
-    """
-    Change percentage required between a previous round and the current round.
-    If variance percentage is not met, reject new oracle responses.
-    """
-    variance_threshold: Decimal = None
-
-    """
-    Number of seconds for which, even if the variance threshold is not passed,
-    accept new responses from oracles.
-    """
-    force_report_period: int = None
-
-    """
-    unix_timestamp after which funds may be withdrawn from the aggregator.
-    null/undefined/0 means the feed has no expiration.
-    """
-    expiration: int = None
-
-    """
-    An optional wallet for receiving kickbacks from job usage in feeds.
-    Defaults to token vault.
-    """
-    keypair: Keypair = None
-    
-    """
-    An optional wallet for receiving kickbacks from job usage in feeds.
-    Defaults to token vault.
-    """
-    author_wallet: PublicKey = None
-
-    """
-    If included, this keypair will be the aggregator authority rather than
-    the aggregator keypair.
-    """
-    authority: PublicKey = None
-
-    """Disable automatic updates"""
-    disable_crank: bool = None
-
- -
- -

Number of oracles to request on aggregator update.

-
- - -
-
#   - - - AggregatorInitParams( - batch_size: int, - min_required_oracle_results: int, - min_required_job_results: int, - min_update_delay_seconds: int, - queue_account: switchboardpy.OracleQueueAccount, - name: bytes = None, - metadata: bytes = None, - start_after: int = None, - variance_threshold: decimal.Decimal = None, - force_report_period: int = None, - expiration: int = None, - keypair: solana.keypair.Keypair = None, - author_wallet: solana.publickey.PublicKey = None, - authority: solana.publickey.PublicKey = None, - disable_crank: bool = None -) -
- - - - -
-
-
#   - - batch_size: int -
- - -

Minimum number of oracle responses required before a round is validated.

-
- - -
-
-
#   - - min_required_oracle_results: int -
- - -

Minimum number of seconds required between aggregator rounds.

-
- - -
-
-
#   - - min_required_job_results: int -
- - -

Minimum number of seconds required between aggregator rounds.

-
- - -
-
-
#   - - min_update_delay_seconds: int -
- - -

The queue to which this aggregator will be linked

-
- - -
-
- - - -

Name of the aggregator to store on-chain.

-
- - -
-
-
#   - - name: bytes = None -
- - -

Metadata of the aggregator to store on-chain.

-
- - -
-
-
#   - - metadata: bytes = None -
- - -

unix_timestamp for which no feed update will occur before.

-
- - -
-
-
#   - - start_after: int = None -
- - -

Change percentage required between a previous round and the current round. -If variance percentage is not met, reject new oracle responses.

-
- - -
-
-
#   - - variance_threshold: decimal.Decimal = None -
- - -

Number of seconds for which, even if the variance threshold is not passed, -accept new responses from oracles.

-
- - -
-
-
#   - - force_report_period: int = None -
- - -

unix_timestamp after which funds may be withdrawn from the aggregator. -null/undefined/0 means the feed has no expiration.

-
- - -
-
-
#   - - expiration: int = None -
- - -

An optional wallet for receiving kickbacks from job usage in feeds. -Defaults to token vault.

-
- - -
-
-
#   - - keypair: solana.keypair.Keypair = None -
- - -

An optional wallet for receiving kickbacks from job usage in feeds. -Defaults to token vault.

-
- - -
-
-
#   - - author_wallet: solana.publickey.PublicKey = None -
- - -

If included, this keypair will be the aggregator authority rather than -the aggregator keypair.

-
- - -
-
-
#   - - authority: solana.publickey.PublicKey = None -
- - -

Disable automatic updates

-
- - -
-
-
#   - - disable_crank: bool = None -
- - - - -
-
-
-
- #   - -
@dataclass
- - class - AggregatorOpenRoundParams: -
- -
- View Source -
@dataclass
-class AggregatorOpenRoundParams:
-
-    """The oracle queue from which oracles are assigned this update."""
-    oracle_queue_account: OracleQueueAccount
-    
-    """The token wallet which will receive rewards for calling update on this feed."""
-    payout_wallet: PublicKey
-
-    """
-    Data feeds on a crank are ordered by their next available update time with some 
-    level of jitter to mitigate oracles being assigned to the same update request upon 
-    each iteration of the queue, which makes them susceptible to a malicous oracle. 
-    """
-    jitter: int = None
-
- -
- -

The oracle queue from which oracles are assigned this update.

-
- - -
-
#   - - - AggregatorOpenRoundParams( - oracle_queue_account: switchboardpy.OracleQueueAccount, - payout_wallet: solana.publickey.PublicKey, - jitter: int = None -) -
- - - - -
-
-
#   - - oracle_queue_account: switchboardpy.OracleQueueAccount -
- - -

The token wallet which will receive rewards for calling update on this feed.

-
- - -
-
-
#   - - payout_wallet: solana.publickey.PublicKey -
- - -

Data feeds on a crank are ordered by their next available update time with some -level of jitter to mitigate oracles being assigned to the same update request upon -each iteration of the queue, which makes them susceptible to a malicous oracle.

-
- - -
-
-
#   - - jitter: int = None -
- - - - -
-
-
-
- #   - -
@dataclass
- - class - AggregatorSaveResultParams: -
- -
- View Source -
@dataclass
-class AggregatorSaveResultParams:
-
-    """Index in the list of oracles in the aggregator assigned to this round update."""
-    oracle_idx: int
-
-    """Reports that an error occured and the oracle could not send a value."""
-    error: bool
-
-    """Value the oracle is responding with for this update."""
-    value: Decimal
-
-    """
-    The minimum value this oracle has seen this round for the jobs listed in the
-    aggregator.
-    """
-    min_response: Decimal
-
-    """
-    The maximum value this oracle has seen this round for the jobs listed in the
-    aggregator.
-    """
-    max_response: Decimal
-
-    """List of OracleJobs that were performed to produce this result"""
-    jobs: list[OracleJob]
-
-    """Authority of the queue the aggregator is attached to"""
-    queue_authority: PublicKey
-
-    """Program token mint"""
-    token_mint: PublicKey
-
-    """List of parsed oracles"""
-    oracles: list[Any]
-
- -
- -

Index in the list of oracles in the aggregator assigned to this round update.

-
- - -
-
#   - - - AggregatorSaveResultParams( - oracle_idx: int, - error: bool, - value: decimal.Decimal, - min_response: decimal.Decimal, - max_response: decimal.Decimal, - jobs: list[switchboardpy.OracleJob], - queue_authority: solana.publickey.PublicKey, - token_mint: solana.publickey.PublicKey, - oracles: list[typing.Any] -) -
- - - - -
-
-
#   - - oracle_idx: int -
- - -

Reports that an error occured and the oracle could not send a value.

-
- - -
-
-
#   - - error: bool -
- - -

Value the oracle is responding with for this update.

-
- - -
-
-
#   - - value: decimal.Decimal -
- - -

The minimum value this oracle has seen this round for the jobs listed in the -aggregator.

-
- - -
-
-
#   - - min_response: decimal.Decimal -
- - -

The maximum value this oracle has seen this round for the jobs listed in the -aggregator.

-
- - -
-
-
#   - - max_response: decimal.Decimal -
- - -

List of OracleJobs that were performed to produce this result

-
- - -
-
-
#   - - jobs: list[switchboardpy.OracleJob] -
- - -

Authority of the queue the aggregator is attached to

-
- - -
-
-
#   - - queue_authority: solana.publickey.PublicKey -
- - -

Program token mint

-
- - -
-
-
#   - - token_mint: solana.publickey.PublicKey -
- - -

List of parsed oracles

-
- - -
-
-
-
- #   - -
@dataclass
- - class - AggregatorSetHistoryBufferParams: -
- -
- View Source -
@dataclass
-class AggregatorSetHistoryBufferParams:
-    
-    """Number of elements for the history buffer to fit"""
-    size: int
-
-    """Authority keypair for the aggregator"""
-    authority: Keypair = None
-
- -
- -

Number of elements for the history buffer to fit

-
- - -
-
#   - - - AggregatorSetHistoryBufferParams(size: int, authority: solana.keypair.Keypair = None) -
- - - - -
-
-
#   - - size: int -
- - -

Authority keypair for the aggregator

-
- - -
-
-
#   - - authority: solana.keypair.Keypair = None -
- - - - -
-
-
-
- #   - - - class - CrankAccount: -
- -
- View Source -
class CrankAccount:
-    """ A Switchboard account representing a crank of aggregators ordered by next update time.
-
-    Attributes:
-        program (anchor.Program): The anchor program ref
-        public_key (PublicKey | None): This crank's public key
-        keypair (Keypair | None): this crank's keypair
-    """
-
-
-    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-    
-    """
-    Get the size of an CrankAccount on chain
-
-    Args:
-
-    Returns:
-        int: size of the CrankAccount type on chain
-    """
-    def size(self):
-        return self.program.account["CrankAccountData"].size
-
-    """
-    Load and parse CrankAccount data based on the program IDL
-
-    Args:
-    
-    Returns:
-        CrankAccount
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def load_data(self):
-        return await CrankAccountData.fetch(self.program.provider.connection, self.public_key)
-
-
-    """
-    Create and initialize the CrankAccount.
-
-    Args:
-        program (anchor.Program): Switchboard program representation holding connection and IDL.
-        params (CrankInitParams)
-    
-    Returns:
-        CrankAccount
-    """
-    @staticmethod
-    async def create(program: anchorpy.Program, params: CrankInitParams):
-        crank_account = Keypair.generate()
-        buffer = Keypair.generate()
-        size = program.account["CrankAccountData"].size
-        max_rows = params.max_rows or 500
-        crank_size = max_rows * 40 + 8
-        response = await program.provider.connection.get_minimum_balance_for_rent_exemption(crank_size)
-        lamports = response["result"]
-        await program.rpc["crank_init"](
-            {
-                "name": params.name or bytes([0] * 32),
-                "metadata": params.metadata or bytes([0] * 128),
-                "crank_size": max_rows
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "crank": crank_account.public_key,
-                    "queue": params.queue_account.public_key,
-                    "buffer": buffer.public_key,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "payer": program.provider.wallet.public_key
-                },
-                signers=[crank_account, buffer],
-                pre_instructions=[
-                    create_account(
-                        CreateAccountParams(
-                            from_pubkey=program.provider.wallet.public_key, 
-                            new_account_pubkey=buffer.public_key,
-                            lamports=lamports, 
-                            space=size, 
-                            program_id=program.program_id
-                        )
-                    )
-                ]
-            )
-        )
-
-        return CrankAccount(AccountParams(program=program, keypair=crank_account))
-
-    """
-    Pushes a new aggregator onto the crank
-    
-    Args:
-        params (CrankPushParams): aggregator and related data
-    
-    Returns:
-        TransactionSignature
-    """
-    async def push(self, params: CrankPushParams):
-        aggregator_account: AggregatorAccount = params.aggregator_account
-        crank = await self.load_data()
-        queue_account = OracleQueueAccount(AccountParams(program=self.program, public_key=crank.queue_pubkey))
-        queue = await queue_account.load_data()
-        queue_authority = queue.authority
-        lease_account, lease_bump = LeaseAccount.from_seed(self.program, queue_account, aggregator_account)
-        lease: Any = None
-        try:
-            lease = await lease_account.load_data()
-        except Exception:
-            raise ValueError('A requested lease pda account has not been initialized.')
-        permission_account, permission_bump = PermissionAccount.from_seed(
-            self.program,
-            queue_authority,
-            queue_account.public_key,
-            aggregator_account.public_key
-        )
-        try:
-            await lease_account.load_data()
-        except Exception:
-            raise ValueError('A requested permission pda account has not been initialized.')
-        program_state_account, state_bump = ProgramStateAccount.from_seed(self.program)
-        return await self.program.rpc["crank_push"](
-            {
-                "state_bump": state_bump,
-                "permission_bump": permission_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "crank": self.public_key,
-                    "aggregator": aggregator_account.public_key,
-                    "oracle_queue": queue_account.public_key,
-                    "queue_authority": queue_authority,
-                    "permission": permission_account.public_key,
-                    "lease": lease_account.public_key,
-                    "escrow": lease.escrow,
-                    "program_state": program_state_account.public_key,
-                    "data_buffer": crank.data_buffer
-                }
-            )
-        )
-
-
-    """
-    Pops a tx from the crank.
-
-    Args:
-        params (CrankPopParams)
-
-    Returns:
-        TransactionSignature    
-    """
-    async def pop_txn(self, params: CrankPopParams):
-        fail_open_on_account_mismatch = params.fail_open_on_mismatch or False
-        next = params.ready_pubkeys or await self.peak_next_ready(5)
-        if len(next) == 0:
-            raise ValueError('Crank is not ready to be turned')
-        remaining_accounts: list[PublicKey] = []
-        lease_bumps_map: Dict[str, int] = {}
-        permission_bumps_map: Dict[str, int] = {}
-        queue_account = OracleQueueAccount(AccountParams(program=self.program, public_key=params.queue_pubkey))
-        for row in next:
-            aggregator_account = AggregatorAccount(AccountParams(program=self.program, public_key=row))
-            lease_account, lease_bump = LeaseAccount.from_seed(
-                self.program,
-                queue_account,
-                aggregator_account
-            )
-            permission_account, permission_bump = PermissionAccount.from_seed(
-                self.program,
-                params.queue_authority,
-                params.queue_pubkey,
-                row
-            )
-            escrow = get_associated_token_address(
-                lease_account.public_key,
-                params.token_mint
-            )
-            remaining_accounts.append(aggregator_account.public_key)
-            remaining_accounts.append(lease_account.public_key)
-            remaining_accounts.append(escrow)
-            remaining_accounts.append(permission_account.public_key)
-            lease_bumps_map[row.to_base58()] = lease_bump
-            permission_bumps_map[row.to_base58()] = permission_bump
-        remaining_accounts.sort(key=lambda key : bytes(key))
-        crank = params.crank
-        queue = params.queue
-        lease_bumps: list[int] = []
-        permission_bumps: list[int] = []
-        for key in remaining_accounts:
-            lease_bumps.append(lease_bumps_map.get(key.to_base58()) or 0)
-            permission_bumps.append(permission_bumps_map.get(key.to_base58()) or 0)
-        program_state_account, state_bump = ProgramStateAccount.from_seed(self.program)
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        return self.program.transaction["crank_pop"](
-            {
-                "state_bump": state_bump,
-                "lease_bumps": bytes(lease_bumps),
-                "permission_bumps": bytes(permission_bumps),
-                "nonce": params.nonce or None,
-                "fail_open_on_account_mismatch": fail_open_on_account_mismatch
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "crank": self.public_key,
-                    "oracle_queue": params.queue_pubkey,
-                    "queue_authority": params.queue_authority,
-                    "program_state": program_state_account.public_key,
-                    "payout_wallet": params.payout_wallet,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "crank_data_buffer": crank.data_buffer,
-                    "queue_data_buffer": queue.data_buffer
-                },
-                remaining_accounts=[{ "is_signer": False, "is_writable": True, "pubkey": pubkey } for pubkey in remaining_accounts],
-                signers=[payer_keypair]
-            )
-        )
-
-    """
-    Pops an aggregator from the crank
-
-    Args:
-        params (CrankPopParams)
-    
-    Returns:
-        TransactionSignature
-    """
-    async def pop(self, params: CrankPopParams):
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        txn = await self.pop_txn(params)
-        return await self.program.provider.connection.send_transaction(txn, [payer_keypair])
-    
-    """
-    Get an array of the next aggregator pubkeys to be popped from the crank, limited by n
-
-    Args:
-        n (int): limit of pubkeys to return
-
-    Returns:
-        list[CrankRow]: Pubkey list of Aggregators and next timestamp to be popped, ordered by timestamp
-    """
-    async def peak_next_with_time(self, n: int):
-        crank = await self.load_data()
-
-        # get list slice of length pq_size 
-        pq_data: list[CrankRow] = crank.pq_data[:crank.pq_size]
-
-        # sort by CrankRow next timestamp
-        pq_data.sort(key=lambda crank_row: crank_row.next_timestamp)
-
-        # return items
-        return pq_data[:n]
-
-    """
-    Get an array of the next readily updateable aggregator pubkeys to be popped
-    from the crank, limited by n
-
-    Args:
-        n (Optional[int]): limit of pubkeys to return
-
-    Returns:
-        list[PublicKey]: Pubkey list of Aggregators and next timestamp to be popped, ordered by timestamp
-    """
-    async def peak_next_ready(self, n: Optional[int] = None):
-        now = math.floor(time.time())
-        crank = await self.load_data()
-        pq_data: list[CrankRow] = crank.pq_data[:crank.pq_size]
-        key = lambda crank_row: crank_row.next_timestamp
-        return [item.pubkey for item in list(filter(lambda item: now >= item.next_timestamp, pq_data)).sort(key=key)[:(n or len(pq_data))]]
-        
-    """
-    Get an array of the next aggregator pubkeys to be popped from the crank, limited by n
-
-    Args:
-        n (int): limit of pubkeys to return
-
-    Returns:
-        list[PublicKey]: Pubkey list of Aggregators and next timestamp to be popped, ordered by timestamp
-    """
-    async def peak_next(self, n: int):
-        crank = await self.load_data()
-        pq_data: list[CrankRow] = crank.pq_data[:crank.pq_size]
-        pq_data.sort(key=lambda crank_row: crank_row.next_timestamp)
-        return [item.pubkey for item in pq_data[:n]]
-
- -
- -

A Switchboard account representing a crank of aggregators ordered by next update time.

- -

Attributes: - program (anchor.Program): The anchor program ref - public_key (PublicKey | None): This crank's public key - keypair (Keypair | None): this crank's keypair

-
- - -
-
#   - - - CrankAccount(params: switchboardpy.AccountParams) -
- -
- View Source -
    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-
- -
- - - -
-
-
#   - - keypair -
- - -

Get the size of an CrankAccount on chain

- -

Args:

- -

Returns: - int: size of the CrankAccount type on chain

-
- - -
-
-
#   - - - def - size(self): -
- -
- View Source -
    def size(self):
-        return self.program.account["CrankAccountData"].size
-
- -
- - - -
-
-
#   - - - async def - load_data(self): -
- -
- View Source -
    async def load_data(self):
-        return await CrankAccountData.fetch(self.program.provider.connection, self.public_key)
-
- -
- - - -
-
-
#   - -
@staticmethod
- - async def - create( - program: anchorpy.program.core.Program, - params: switchboardpy.CrankInitParams -): -
- -
- View Source -
    @staticmethod
-    async def create(program: anchorpy.Program, params: CrankInitParams):
-        crank_account = Keypair.generate()
-        buffer = Keypair.generate()
-        size = program.account["CrankAccountData"].size
-        max_rows = params.max_rows or 500
-        crank_size = max_rows * 40 + 8
-        response = await program.provider.connection.get_minimum_balance_for_rent_exemption(crank_size)
-        lamports = response["result"]
-        await program.rpc["crank_init"](
-            {
-                "name": params.name or bytes([0] * 32),
-                "metadata": params.metadata or bytes([0] * 128),
-                "crank_size": max_rows
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "crank": crank_account.public_key,
-                    "queue": params.queue_account.public_key,
-                    "buffer": buffer.public_key,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "payer": program.provider.wallet.public_key
-                },
-                signers=[crank_account, buffer],
-                pre_instructions=[
-                    create_account(
-                        CreateAccountParams(
-                            from_pubkey=program.provider.wallet.public_key, 
-                            new_account_pubkey=buffer.public_key,
-                            lamports=lamports, 
-                            space=size, 
-                            program_id=program.program_id
-                        )
-                    )
-                ]
-            )
-        )
-
-        return CrankAccount(AccountParams(program=program, keypair=crank_account))
-
- -
- - - -
-
-
#   - - - async def - push(self, params: switchboardpy.CrankPushParams): -
- -
- View Source -
    async def push(self, params: CrankPushParams):
-        aggregator_account: AggregatorAccount = params.aggregator_account
-        crank = await self.load_data()
-        queue_account = OracleQueueAccount(AccountParams(program=self.program, public_key=crank.queue_pubkey))
-        queue = await queue_account.load_data()
-        queue_authority = queue.authority
-        lease_account, lease_bump = LeaseAccount.from_seed(self.program, queue_account, aggregator_account)
-        lease: Any = None
-        try:
-            lease = await lease_account.load_data()
-        except Exception:
-            raise ValueError('A requested lease pda account has not been initialized.')
-        permission_account, permission_bump = PermissionAccount.from_seed(
-            self.program,
-            queue_authority,
-            queue_account.public_key,
-            aggregator_account.public_key
-        )
-        try:
-            await lease_account.load_data()
-        except Exception:
-            raise ValueError('A requested permission pda account has not been initialized.')
-        program_state_account, state_bump = ProgramStateAccount.from_seed(self.program)
-        return await self.program.rpc["crank_push"](
-            {
-                "state_bump": state_bump,
-                "permission_bump": permission_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "crank": self.public_key,
-                    "aggregator": aggregator_account.public_key,
-                    "oracle_queue": queue_account.public_key,
-                    "queue_authority": queue_authority,
-                    "permission": permission_account.public_key,
-                    "lease": lease_account.public_key,
-                    "escrow": lease.escrow,
-                    "program_state": program_state_account.public_key,
-                    "data_buffer": crank.data_buffer
-                }
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - pop_txn(self, params: switchboardpy.CrankPopParams): -
- -
- View Source -
    async def pop_txn(self, params: CrankPopParams):
-        fail_open_on_account_mismatch = params.fail_open_on_mismatch or False
-        next = params.ready_pubkeys or await self.peak_next_ready(5)
-        if len(next) == 0:
-            raise ValueError('Crank is not ready to be turned')
-        remaining_accounts: list[PublicKey] = []
-        lease_bumps_map: Dict[str, int] = {}
-        permission_bumps_map: Dict[str, int] = {}
-        queue_account = OracleQueueAccount(AccountParams(program=self.program, public_key=params.queue_pubkey))
-        for row in next:
-            aggregator_account = AggregatorAccount(AccountParams(program=self.program, public_key=row))
-            lease_account, lease_bump = LeaseAccount.from_seed(
-                self.program,
-                queue_account,
-                aggregator_account
-            )
-            permission_account, permission_bump = PermissionAccount.from_seed(
-                self.program,
-                params.queue_authority,
-                params.queue_pubkey,
-                row
-            )
-            escrow = get_associated_token_address(
-                lease_account.public_key,
-                params.token_mint
-            )
-            remaining_accounts.append(aggregator_account.public_key)
-            remaining_accounts.append(lease_account.public_key)
-            remaining_accounts.append(escrow)
-            remaining_accounts.append(permission_account.public_key)
-            lease_bumps_map[row.to_base58()] = lease_bump
-            permission_bumps_map[row.to_base58()] = permission_bump
-        remaining_accounts.sort(key=lambda key : bytes(key))
-        crank = params.crank
-        queue = params.queue
-        lease_bumps: list[int] = []
-        permission_bumps: list[int] = []
-        for key in remaining_accounts:
-            lease_bumps.append(lease_bumps_map.get(key.to_base58()) or 0)
-            permission_bumps.append(permission_bumps_map.get(key.to_base58()) or 0)
-        program_state_account, state_bump = ProgramStateAccount.from_seed(self.program)
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        return self.program.transaction["crank_pop"](
-            {
-                "state_bump": state_bump,
-                "lease_bumps": bytes(lease_bumps),
-                "permission_bumps": bytes(permission_bumps),
-                "nonce": params.nonce or None,
-                "fail_open_on_account_mismatch": fail_open_on_account_mismatch
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "crank": self.public_key,
-                    "oracle_queue": params.queue_pubkey,
-                    "queue_authority": params.queue_authority,
-                    "program_state": program_state_account.public_key,
-                    "payout_wallet": params.payout_wallet,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "crank_data_buffer": crank.data_buffer,
-                    "queue_data_buffer": queue.data_buffer
-                },
-                remaining_accounts=[{ "is_signer": False, "is_writable": True, "pubkey": pubkey } for pubkey in remaining_accounts],
-                signers=[payer_keypair]
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - pop(self, params: switchboardpy.CrankPopParams): -
- -
- View Source -
    async def pop(self, params: CrankPopParams):
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        txn = await self.pop_txn(params)
-        return await self.program.provider.connection.send_transaction(txn, [payer_keypair])
-
- -
- - - -
-
-
#   - - - async def - peak_next_with_time(self, n: int): -
- -
- View Source -
    async def peak_next_with_time(self, n: int):
-        crank = await self.load_data()
-
-        # get list slice of length pq_size 
-        pq_data: list[CrankRow] = crank.pq_data[:crank.pq_size]
-
-        # sort by CrankRow next timestamp
-        pq_data.sort(key=lambda crank_row: crank_row.next_timestamp)
-
-        # return items
-        return pq_data[:n]
-
- -
- - - -
-
-
#   - - - async def - peak_next_ready(self, n: Optional[int] = None): -
- -
- View Source -
    async def peak_next_ready(self, n: Optional[int] = None):
-        now = math.floor(time.time())
-        crank = await self.load_data()
-        pq_data: list[CrankRow] = crank.pq_data[:crank.pq_size]
-        key = lambda crank_row: crank_row.next_timestamp
-        return [item.pubkey for item in list(filter(lambda item: now >= item.next_timestamp, pq_data)).sort(key=key)[:(n or len(pq_data))]]
-
- -
- - - -
-
-
#   - - - async def - peak_next(self, n: int): -
- -
- View Source -
    async def peak_next(self, n: int):
-        crank = await self.load_data()
-        pq_data: list[CrankRow] = crank.pq_data[:crank.pq_size]
-        pq_data.sort(key=lambda crank_row: crank_row.next_timestamp)
-        return [item.pubkey for item in pq_data[:n]]
-
- -
- - - -
-
-
-
- #   - -
@dataclass
- - class - CrankPopParams: -
- -
- View Source -
@dataclass
-class CrankPopParams:
-
-    """Specifies the wallet to reward for turning the crank."""
-    payout_wallet: PublicKey
-
-    """The pubkey of the linked oracle queue."""
-    queue_pubkey: PublicKey
-
-    """The pubkey of the linked oracle queue authority."""
-    queue_authority: PublicKey
-
-    """CrankAccount data"""
-    crank: Any
-
-    """QueueAccount data"""
-    queue: Any
-
-    """Token mint pubkey"""
-    token_mint: PublicKey
-
-    """
-    Array of pubkeys to attempt to pop. If discluded, this will be loaded
-    from the crank upon calling.
-    """
-    ready_pubkeys: list[PublicKey] = None
-
-    """Nonce to allow consecutive crank pops with the same blockhash."""
-    nonce: int = None
-    fail_open_on_mismatch: bool = None
-
- -
- -

Specifies the wallet to reward for turning the crank.

-
- - -
-
#   - - - CrankPopParams( - payout_wallet: solana.publickey.PublicKey, - queue_pubkey: solana.publickey.PublicKey, - queue_authority: solana.publickey.PublicKey, - crank: Any, - queue: Any, - token_mint: solana.publickey.PublicKey, - ready_pubkeys: list[solana.publickey.PublicKey] = None, - nonce: int = None, - fail_open_on_mismatch: bool = None -) -
- - - - -
-
-
#   - - payout_wallet: solana.publickey.PublicKey -
- - -

The pubkey of the linked oracle queue.

-
- - -
-
-
#   - - queue_pubkey: solana.publickey.PublicKey -
- - -

The pubkey of the linked oracle queue authority.

-
- - -
-
-
#   - - queue_authority: solana.publickey.PublicKey -
- - -

CrankAccount data

-
- - -
-
-
#   - - crank: Any -
- - -

QueueAccount data

-
- - -
-
-
#   - - queue: Any -
- - -

Token mint pubkey

-
- - -
-
-
#   - - token_mint: solana.publickey.PublicKey -
- - -

Array of pubkeys to attempt to pop. If discluded, this will be loaded -from the crank upon calling.

-
- - -
-
-
#   - - ready_pubkeys: list[solana.publickey.PublicKey] = None -
- - -

Nonce to allow consecutive crank pops with the same blockhash.

-
- - -
-
-
#   - - nonce: int = None -
- - - - -
-
-
#   - - fail_open_on_mismatch: bool = None -
- - - - -
-
-
-
- #   - -
@dataclass
- - class - CrankInitParams: -
- -
- View Source -
@dataclass
-class CrankInitParams:
-
-    """OracleQueueAccount for which this crank is associated"""
-    queue_account: OracleQueueAccount
-
-    """Buffer specifying crank name"""
-    name: bytes = None
-
-    """Buffer specifying crank metadata"""
-    metadata: bytes = None
-
-    """Optional max number of rows"""
-    max_rows: int = None
-
- -
- -

OracleQueueAccount for which this crank is associated

-
- - -
-
#   - - - CrankInitParams( - queue_account: switchboardpy.OracleQueueAccount, - name: bytes = None, - metadata: bytes = None, - max_rows: int = None -) -
- - - - -
-
- - - -

Buffer specifying crank name

-
- - -
-
-
#   - - name: bytes = None -
- - -

Buffer specifying crank metadata

-
- - -
-
-
#   - - metadata: bytes = None -
- - -

Optional max number of rows

-
- - -
-
-
#   - - max_rows: int = None -
- - - - -
-
-
-
- #   - -
@dataclass
- - class - CrankPushParams: -
- -
- View Source -
@dataclass
-class CrankPushParams:
-    aggregator_account: AggregatorAccount
-
- -
- -

CrankPushParams(aggregator_account: switchboardpy.AggregatorAccount)

-
- - -
-
#   - - - CrankPushParams(aggregator_account: switchboardpy.AggregatorAccount) -
- - - - -
-
-
-
- #   - -
@dataclass
- - class - CrankRow: -
- -
- View Source -
@dataclass
-class CrankRow:
-
-    """Aggregator account pubkey"""
-    pubkey: PublicKey
-
-    """Next aggregator update timestamp to order the crank by"""
-    next_timestamp: int
-
-    @staticmethod
-    def from_bytes(buf: bytes):
-        pass
-
- -
- -

Aggregator account pubkey

-
- - -
-
#   - - - CrankRow(pubkey: solana.publickey.PublicKey, next_timestamp: int) -
- - - - -
-
-
#   - - pubkey: solana.publickey.PublicKey -
- - -

Next aggregator update timestamp to order the crank by

-
- - -
-
-
#   - -
@staticmethod
- - def - from_bytes(buf: bytes): -
- -
- View Source -
    @staticmethod
-    def from_bytes(buf: bytes):
-        pass
-
- -
- - - -
-
-
-
- #   - - - class - JobAccount: -
- -
- View Source -
class JobAccount:
-    """ A Switchboard account representing a job for an oracle to perform, stored as
-        a protocol buffer.
-
-    Attributes:
-        program (anchor.Program): The anchor program ref
-        public_key (PublicKey | None): This aggregator's public key
-        keypair (Keypair | None): this aggregator's keypair
-    """
-
-
-    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-    
-    """
-    Load and parse JobAccount state based on the program IDL. 
-    
-    Returns:
-        name (JobAccount): data parsed in accordance with the
-            Switchboard IDL.
-
-    Args:
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def load_data(self):
-        return await JobAccountData.fetch(self.program.provider.connection, self.public_key)
-
-
-    """
-    Load and parse the protobuf from the raw buffer stored in the JobAccount.
-    
-    Returns:
-        OracleJob
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def load_job(self):
-        job = await self.load_data()
-        return parseOracleJob(job.data);
-
-    """
-    Load and parse JobAccount data based on the program IDL from a buffer.
-    
-    Args:
-        program (anchorpy.Program)
-        buf (bytes): Bytes representation of the JobAccount
-
-    Returns:
-        Any: JobAccountData parsed in accordance with the
-            Switchboard IDL.
-    """
-    @staticmethod
-    def decode(program: anchorpy.Program, buf: bytes):
-        coder = anchorpy.Coder(program.idl)
-        return coder.accounts.decode(buf)
-    
-    """
-    Create and initialize the JobAccount
-
-    Args:
-        program (anchor.Program)
-        params (JobInitParams)
-
-    Returns:
-        JobAccount
-    """
-    @staticmethod
-    async def create(program: anchorpy.Program, params: JobInitParams):
-
-        job_account = params.keypair or Keypair.generate()
-        size = 280 + len(params.data) + (''.join(params.variables) if params.variables else 0)
-        state_account, state_bump = ProgramStateAccount.from_seed(program)
-        state = await state_account.load_data()
-        response = await program.provider.connection.get_minimum_balance_for_rent_exemption(size)
-        lamports = response["result"]
-        await program.rpc["job_init"](
-            {
-                "name": params.name or bytes([0] * 32),
-                "expiration": params.expiration or 0,
-                "data": params.data,
-                "variables": [bytes(b'') for _ in params.variables] if params.variables else [],
-                "state_bump": state_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "job": job_account.public_key,
-                    "authority": params.authority or state.token_vault,
-                    "program_state": state_account.public_key
-                },
-                signers=[job_account],
-                pre_instructions=[
-                    create_account(
-                        CreateAccountParams(
-                            from_pubkey=program.provider.wallet.public_key, 
-                            new_account_pubkey=job_account.public_key,
-                            lamports=lamports, 
-                            space=size, 
-                            program_id=program.program_id
-                        )
-                    )
-                ]
-            )
-        )
-        return JobAccount(AccountParams(program=program, keypair=job_account))
-
- -
- -

A Switchboard account representing a job for an oracle to perform, stored as - a protocol buffer.

- -

Attributes: - program (anchor.Program): The anchor program ref - public_key (PublicKey | None): This aggregator's public key - keypair (Keypair | None): this aggregator's keypair

-
- - -
-
#   - - - JobAccount(params: switchboardpy.AccountParams) -
- -
- View Source -
    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-
- -
- - - -
-
-
#   - - keypair -
- - -

Load and parse JobAccount state based on the program IDL.

- -

Returns: - name (JobAccount): data parsed in accordance with the - Switchboard IDL.

- -

Args:

- -

Raises: - AccountDoesNotExistError: If the account doesn't exist. - AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.

-
- - -
-
-
#   - - - async def - load_data(self): -
- -
- View Source -
    async def load_data(self):
-        return await JobAccountData.fetch(self.program.provider.connection, self.public_key)
-
- -
- - - -
-
-
#   - - - async def - load_job(self): -
- -
- View Source -
    async def load_job(self):
-        job = await self.load_data()
-        return parseOracleJob(job.data);
-
- -
- - - -
-
-
#   - -
@staticmethod
- - def - decode(program: anchorpy.program.core.Program, buf: bytes): -
- -
- View Source -
    @staticmethod
-    def decode(program: anchorpy.Program, buf: bytes):
-        coder = anchorpy.Coder(program.idl)
-        return coder.accounts.decode(buf)
-
- -
- - - -
-
-
#   - -
@staticmethod
- - async def - create( - program: anchorpy.program.core.Program, - params: switchboardpy.JobInitParams -): -
- -
- View Source -
    @staticmethod
-    async def create(program: anchorpy.Program, params: JobInitParams):
-
-        job_account = params.keypair or Keypair.generate()
-        size = 280 + len(params.data) + (''.join(params.variables) if params.variables else 0)
-        state_account, state_bump = ProgramStateAccount.from_seed(program)
-        state = await state_account.load_data()
-        response = await program.provider.connection.get_minimum_balance_for_rent_exemption(size)
-        lamports = response["result"]
-        await program.rpc["job_init"](
-            {
-                "name": params.name or bytes([0] * 32),
-                "expiration": params.expiration or 0,
-                "data": params.data,
-                "variables": [bytes(b'') for _ in params.variables] if params.variables else [],
-                "state_bump": state_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "job": job_account.public_key,
-                    "authority": params.authority or state.token_vault,
-                    "program_state": state_account.public_key
-                },
-                signers=[job_account],
-                pre_instructions=[
-                    create_account(
-                        CreateAccountParams(
-                            from_pubkey=program.provider.wallet.public_key, 
-                            new_account_pubkey=job_account.public_key,
-                            lamports=lamports, 
-                            space=size, 
-                            program_id=program.program_id
-                        )
-                    )
-                ]
-            )
-        )
-        return JobAccount(AccountParams(program=program, keypair=job_account))
-
- -
- - - -
-
-
-
- #   - -
@dataclass
- - class - JobInitParams: -
- -
- View Source -
@dataclass
-class JobInitParams:
-
-    """A serialized protocol buffer holding the schema of the job."""
-    data: bytes
-
-    """An optional name to apply to the job account."""
-    name: bytes = None
-
-    """unix_timestamp of when funds can be withdrawn from this account."""
-    expiration: int = None
-
-    """A required variables oracles must fill to complete the job."""
-    variables: list[str] = None
-
-    """A pre-generated keypair to use."""
-    keypair: Keypair = None
-
-    """
-    An optional wallet for receiving kickbacks from job usage in feeds.
-    """
-    authority: PublicKey = None
-
- -
- -

A serialized protocol buffer holding the schema of the job.

-
- - -
-
#   - - - JobInitParams( - data: bytes, - name: bytes = None, - expiration: int = None, - variables: list[str] = None, - keypair: solana.keypair.Keypair = None, - authority: solana.publickey.PublicKey = None -) -
- - - - -
-
-
#   - - data: bytes -
- - -

An optional name to apply to the job account.

-
- - -
-
-
#   - - name: bytes = None -
- - -

unix_timestamp of when funds can be withdrawn from this account.

-
- - -
-
-
#   - - expiration: int = None -
- - -

A required variables oracles must fill to complete the job.

-
- - -
-
-
#   - - variables: list[str] = None -
- - -

A pre-generated keypair to use.

-
- - -
-
-
#   - - keypair: solana.keypair.Keypair = None -
- - -

An optional wallet for receiving kickbacks from job usage in feeds.

-
- - -
-
-
#   - - authority: solana.publickey.PublicKey = None -
- - - - -
-
-
-
- #   - - - class - LeaseAccount: -
- -
- View Source -
class LeaseAccount:
-    """ A Switchboard account representing a lease for managing funds for oracle payouts
-    for fulfilling feed updates.
-
-    Attributes:
-        program (anchor.Program): The anchor program ref
-        public_key (PublicKey | None): This lease's public key
-        keypair (Keypair | None): this lease's keypair
-    """
-
-
-    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-
-    """
-    Get the size of an LeaseAccount on chain
-
-    Args:
-
-    Returns:
-        int: size of the LeaseAccount type on chain
-    """
-    def size(self):
-        return self.program.account["LeaseAccountData"].size
-
-    """
-    Load and parse LeaseAccount data based on the program IDL
-
-    Args:
-    
-    Returns:
-        LeaseAccount
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def load_data(self):
-        return await LeaseAccountData.fetch(self.program.provider.connection, self.public_key)
-
-
-    """
-    Loads a LeaseAccount from the expected PDA seed format
-
-    Args:
-        program (anchorpy.Program)
-        queue_account (OracleQueueAccount)
-        aggregator_account (AggregatorAccount)
-
-    Returns:
-        Tuple[LeaseAccount, int]: LeaseAccount and PDA bump
-    """
-    @staticmethod
-    def from_seed(program: anchorpy.Program, queue_account: OracleQueueAccount, aggregator_account: AggregatorAccount):
-        pubkey, bump = publickey.PublicKey.find_program_address(
-            [
-                bytes(b'LeaseAccountData'), 
-                bytes(queue_account.public_key),
-                bytes(aggregator_account.public_key),
-            ],
-            program.program_id
-        )
-    
-        return LeaseAccount(AccountParams(program=program, public_key=pubkey)), bump
-
-    """
-    Create and initialize the LeaseAccount.
-
-    Args:
-        program (anchor.Program): Switchboard program representation holding connection and IDL.
-        params (LeaseInitParams)
-    
-    Returns:
-        LeaseAccount
-    """
-    @staticmethod
-    async def create(program: anchorpy.Program, params: LeaseInitParams):
-        program_state_account, state_bump = ProgramStateAccount.from_seed(program)
-        switch_token_mint = await program_state_account.get_token_mint()
-        lease_account, lease_bump = LeaseAccount.from_seed(
-            program,
-            params.oracle_queue_account,
-            params.aggregator_account
-        )
-
-
-        job_account_data = await params.aggregator_account.load_jobs()
-        aggregator_account_data = await params.aggregator_account.load_data()
-        job_pubkeys: list[PublicKey] = aggregator_account_data.job_pubkeys_data[:aggregator_account_data.job_pubkeys_size]
-        job_wallets: list[PublicKey] = []
-        wallet_bumps: list[int] = []
-        for job in job_account_data:
-            authority = job.account.authority or PublicKey('11111111111111111111111111111111')
-            pubkey, bump = publickey.PublicKey.find_program_address(
-                [
-                    bytes(authority), 
-                    bytes(TOKEN_PROGRAM_ID),
-                    bytes(switch_token_mint.pubkey),
-                ],
-                ASSOCIATED_TOKEN_PROGRAM_ID
-            )
-            job_wallets.append(pubkey)
-            wallet_bumps.append(bump)
-
-        escrow = await switch_token_mint.create_associated_token_account(lease_account.public_key, skip_confirmation=False)
-        await program.rpc["lease_init"](
-            {
-                "load_amount": params.load_amount,
-                "state_bump": state_bump,
-                "lease_bump": lease_bump,
-                "withdraw_authority": params.withdraw_authority or PublicKey('11111111111111111111111111111111'),
-                "wallet_bumps": bytes(wallet_bumps)
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "program_state": program_state_account.public_key,
-                    "lease": lease_account.public_key,
-                    "queue": params.oracle_queue_account.public_key,
-                    "aggregator": params.aggregator_account.public_key,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "funder": params.funder,
-                    "payer": program.provider.wallet.public_key,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "escrow": escrow,
-                    "owner": params.funder_authority.public_key,
-                    "mint": switch_token_mint.pubkey
-                },
-                signers=[params.funder_authority],
-                remaining_accounts=[AccountMeta(is_signer=False, is_writable=True, pubkey=x) for x in [*job_pubkeys, *job_wallets]]
-            )
-        )
-        return LeaseAccount(AccountParams(program=program, public_key=lease_account.public_key))
-
-    """
-    Get lease balance
-
-    Args:
-    Returns:
-        int balance
-    """
-    async def get_balance(self):
-        lease = self.load_data()
-        return await self.program.provider.connection.get_balance(lease.escrow)
-
-    """
-    Adds fund to a LeaseAccount. Note that funds can always be withdrawn by
-    the withdraw authority if one was set on lease initialization.
-
-    Args:
-        program (anchor.Program): Switchboard program representation holding connection and IDL.
-        params (LeaseExtendParams)
-    
-    Returns:
-        TransactionSignature
-    """
-    async def extend(self, params: LeaseExtendParams):
-        program = self.program
-        lease = await self.load_data()
-        escrow = lease.escrow
-        queue = lease.queue
-        aggregator = lease.aggregator
-        program_state_account, state_bump = ProgramStateAccount.from_seed(program)
-        queue_account = OracleQueueAccount(AccountParams(program=program, public_key=queue))
-        switch_token_mint = await queue_account.load_mint()
-        lease_account, lease_bump = LeaseAccount.from_seed(
-            program,
-            OracleQueueAccount(AccountParams(program=program, public_key=queue)),
-            AggregatorAccount(AccountParams(program=program, public_key=aggregator))
-        )
-        job_account_data = await aggregator.load_jobs()
-        aggregator_account_data = await aggregator.load_data()
-        job_pubkeys: list[PublicKey] = aggregator_account_data.job_pubkeys_data[:aggregator_account_data.job_pubkeys_size]
-        job_wallets: list[PublicKey] = []
-        wallet_bumps: list[int] = []
-        for job in job_account_data:
-            authority = job.account.authority or PublicKey('11111111111111111111111111111111')
-            pubkey, bump = publickey.PublicKey.find_program_address(
-                [
-                    bytes(authority), 
-                    bytes(TOKEN_PROGRAM_ID),
-                    bytes(switch_token_mint.pubkey),
-                ],
-                ASSOCIATED_TOKEN_PROGRAM_ID
-            )
-            job_wallets.append(pubkey)
-            wallet_bumps.append(bump)
-
-        return await program.rpc["lease_extend"](
-            {
-                "load_amount": params.load_amount,
-                "state_bump": state_bump,
-                "lease_bump": lease_bump,
-                "wallet_bumps": bytes(wallet_bumps)
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "lease": lease_account.public_key,
-                    "aggregator": aggregator,
-                    "queue": queue,
-                    "funder": params.funder,
-                    "owner": params.funder_authority.public_key,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "escrow": escrow,
-                    "program_state": program_state_account.public_key,
-                    "mint": switch_token_mint.pubkey
-                },
-                signers=[params.funder_authority],
-                remaining_accounts=[AccountMeta(is_signer=False, is_writable=True, pubkey=x) for x in [*job_pubkeys, *job_wallets]]
-            )
-        )
- 
-    """
-    Withdraw stake and/or rewards from a LeaseAccount.
-
-    Args:
-        params (LeaseWithdrawParams)
-    
-    Returns:
-        TransactionSignature
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def withdraw(self, params: LeaseWithdrawParams):
-        program = self.program
-        lease = await self.load_data()
-        escrow = lease.escrow
-        queue = lease.queue
-        aggregator = lease.aggregator
-        program_state_account, state_bump = ProgramStateAccount.from_seed(program)
-        queue_account = OracleQueueAccount(AccountParams(program=program, public_key=queue))
-        switch_token_mint = await queue_account.load_mint()
-        lease_account, lease_bump = LeaseAccount.from_seed(
-            program,
-            OracleQueueAccount(AccountParams(program=program, public_key=queue)),
-            AggregatorAccount(AccountParams(program=program, public_key=aggregator))
-        )
-        return await self.program.rpc["lease_withdraw"](
-            {
-                "amount": params.amount,
-                "state_bump": state_bump,
-                "lease_bump": lease_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "lease": lease_account.public_key,
-                    "escrow": escrow,
-                    "aggregator": aggregator,
-                    "queue": queue,
-                    "withdraw_authority": params.withdraw_authority.public_key,
-                    "withdraw_account": params.withdraw_wallet,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "program_state": program_state_account.public_key,
-                    "mint": switch_token_mint.pubkey
-                },
-                signers=[params.withdraw_authority]
-            )
-        )
-
- -
- -

A Switchboard account representing a lease for managing funds for oracle payouts -for fulfilling feed updates.

- -

Attributes: - program (anchor.Program): The anchor program ref - public_key (PublicKey | None): This lease's public key - keypair (Keypair | None): this lease's keypair

-
- - -
-
#   - - - LeaseAccount(params: switchboardpy.AccountParams) -
- -
- View Source -
    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-
- -
- - - -
-
-
#   - - keypair -
- - -

Get the size of an LeaseAccount on chain

- -

Args:

- -

Returns: - int: size of the LeaseAccount type on chain

-
- - -
-
-
#   - - - def - size(self): -
- -
- View Source -
    def size(self):
-        return self.program.account["LeaseAccountData"].size
-
- -
- - - -
-
-
#   - - - async def - load_data(self): -
- -
- View Source -
    async def load_data(self):
-        return await LeaseAccountData.fetch(self.program.provider.connection, self.public_key)
-
- -
- - - -
-
-
#   - -
@staticmethod
- - def - from_seed( - program: anchorpy.program.core.Program, - queue_account: switchboardpy.OracleQueueAccount, - aggregator_account: switchboardpy.AggregatorAccount -): -
- -
- View Source -
    @staticmethod
-    def from_seed(program: anchorpy.Program, queue_account: OracleQueueAccount, aggregator_account: AggregatorAccount):
-        pubkey, bump = publickey.PublicKey.find_program_address(
-            [
-                bytes(b'LeaseAccountData'), 
-                bytes(queue_account.public_key),
-                bytes(aggregator_account.public_key),
-            ],
-            program.program_id
-        )
-    
-        return LeaseAccount(AccountParams(program=program, public_key=pubkey)), bump
-
- -
- - - -
-
-
#   - -
@staticmethod
- - async def - create( - program: anchorpy.program.core.Program, - params: switchboardpy.LeaseInitParams -): -
- -
- View Source -
    @staticmethod
-    async def create(program: anchorpy.Program, params: LeaseInitParams):
-        program_state_account, state_bump = ProgramStateAccount.from_seed(program)
-        switch_token_mint = await program_state_account.get_token_mint()
-        lease_account, lease_bump = LeaseAccount.from_seed(
-            program,
-            params.oracle_queue_account,
-            params.aggregator_account
-        )
-
-
-        job_account_data = await params.aggregator_account.load_jobs()
-        aggregator_account_data = await params.aggregator_account.load_data()
-        job_pubkeys: list[PublicKey] = aggregator_account_data.job_pubkeys_data[:aggregator_account_data.job_pubkeys_size]
-        job_wallets: list[PublicKey] = []
-        wallet_bumps: list[int] = []
-        for job in job_account_data:
-            authority = job.account.authority or PublicKey('11111111111111111111111111111111')
-            pubkey, bump = publickey.PublicKey.find_program_address(
-                [
-                    bytes(authority), 
-                    bytes(TOKEN_PROGRAM_ID),
-                    bytes(switch_token_mint.pubkey),
-                ],
-                ASSOCIATED_TOKEN_PROGRAM_ID
-            )
-            job_wallets.append(pubkey)
-            wallet_bumps.append(bump)
-
-        escrow = await switch_token_mint.create_associated_token_account(lease_account.public_key, skip_confirmation=False)
-        await program.rpc["lease_init"](
-            {
-                "load_amount": params.load_amount,
-                "state_bump": state_bump,
-                "lease_bump": lease_bump,
-                "withdraw_authority": params.withdraw_authority or PublicKey('11111111111111111111111111111111'),
-                "wallet_bumps": bytes(wallet_bumps)
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "program_state": program_state_account.public_key,
-                    "lease": lease_account.public_key,
-                    "queue": params.oracle_queue_account.public_key,
-                    "aggregator": params.aggregator_account.public_key,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "funder": params.funder,
-                    "payer": program.provider.wallet.public_key,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "escrow": escrow,
-                    "owner": params.funder_authority.public_key,
-                    "mint": switch_token_mint.pubkey
-                },
-                signers=[params.funder_authority],
-                remaining_accounts=[AccountMeta(is_signer=False, is_writable=True, pubkey=x) for x in [*job_pubkeys, *job_wallets]]
-            )
-        )
-        return LeaseAccount(AccountParams(program=program, public_key=lease_account.public_key))
-
- -
- - - -
-
-
#   - - - async def - get_balance(self): -
- -
- View Source -
    async def get_balance(self):
-        lease = self.load_data()
-        return await self.program.provider.connection.get_balance(lease.escrow)
-
- -
- - - -
-
-
#   - - - async def - extend(self, params: switchboardpy.LeaseExtendParams): -
- -
- View Source -
    async def extend(self, params: LeaseExtendParams):
-        program = self.program
-        lease = await self.load_data()
-        escrow = lease.escrow
-        queue = lease.queue
-        aggregator = lease.aggregator
-        program_state_account, state_bump = ProgramStateAccount.from_seed(program)
-        queue_account = OracleQueueAccount(AccountParams(program=program, public_key=queue))
-        switch_token_mint = await queue_account.load_mint()
-        lease_account, lease_bump = LeaseAccount.from_seed(
-            program,
-            OracleQueueAccount(AccountParams(program=program, public_key=queue)),
-            AggregatorAccount(AccountParams(program=program, public_key=aggregator))
-        )
-        job_account_data = await aggregator.load_jobs()
-        aggregator_account_data = await aggregator.load_data()
-        job_pubkeys: list[PublicKey] = aggregator_account_data.job_pubkeys_data[:aggregator_account_data.job_pubkeys_size]
-        job_wallets: list[PublicKey] = []
-        wallet_bumps: list[int] = []
-        for job in job_account_data:
-            authority = job.account.authority or PublicKey('11111111111111111111111111111111')
-            pubkey, bump = publickey.PublicKey.find_program_address(
-                [
-                    bytes(authority), 
-                    bytes(TOKEN_PROGRAM_ID),
-                    bytes(switch_token_mint.pubkey),
-                ],
-                ASSOCIATED_TOKEN_PROGRAM_ID
-            )
-            job_wallets.append(pubkey)
-            wallet_bumps.append(bump)
-
-        return await program.rpc["lease_extend"](
-            {
-                "load_amount": params.load_amount,
-                "state_bump": state_bump,
-                "lease_bump": lease_bump,
-                "wallet_bumps": bytes(wallet_bumps)
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "lease": lease_account.public_key,
-                    "aggregator": aggregator,
-                    "queue": queue,
-                    "funder": params.funder,
-                    "owner": params.funder_authority.public_key,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "escrow": escrow,
-                    "program_state": program_state_account.public_key,
-                    "mint": switch_token_mint.pubkey
-                },
-                signers=[params.funder_authority],
-                remaining_accounts=[AccountMeta(is_signer=False, is_writable=True, pubkey=x) for x in [*job_pubkeys, *job_wallets]]
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - withdraw(self, params: switchboardpy.LeaseWithdrawParams): -
- -
- View Source -
    async def withdraw(self, params: LeaseWithdrawParams):
-        program = self.program
-        lease = await self.load_data()
-        escrow = lease.escrow
-        queue = lease.queue
-        aggregator = lease.aggregator
-        program_state_account, state_bump = ProgramStateAccount.from_seed(program)
-        queue_account = OracleQueueAccount(AccountParams(program=program, public_key=queue))
-        switch_token_mint = await queue_account.load_mint()
-        lease_account, lease_bump = LeaseAccount.from_seed(
-            program,
-            OracleQueueAccount(AccountParams(program=program, public_key=queue)),
-            AggregatorAccount(AccountParams(program=program, public_key=aggregator))
-        )
-        return await self.program.rpc["lease_withdraw"](
-            {
-                "amount": params.amount,
-                "state_bump": state_bump,
-                "lease_bump": lease_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "lease": lease_account.public_key,
-                    "escrow": escrow,
-                    "aggregator": aggregator,
-                    "queue": queue,
-                    "withdraw_authority": params.withdraw_authority.public_key,
-                    "withdraw_account": params.withdraw_wallet,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "program_state": program_state_account.public_key,
-                    "mint": switch_token_mint.pubkey
-                },
-                signers=[params.withdraw_authority]
-            )
-        )
-
- -
- - - -
-
-
-
- #   - -
@dataclass
- - class - LeaseExtendParams: -
- -
- View Source -
@dataclass
-class LeaseExtendParams:
-
-    """Token amount to load into the lease escrow"""
-    load_amount: int
-
-    """The funding wallet of the lease"""
-    funder: PublicKey
-
-    """The authority of the funding wallet"""
-    funder_authority: Keypair
-
- -
- -

Token amount to load into the lease escrow

-
- - -
-
#   - - - LeaseExtendParams( - load_amount: int, - funder: solana.publickey.PublicKey, - funder_authority: solana.keypair.Keypair -) -
- - - - -
-
-
#   - - load_amount: int -
- - -

The funding wallet of the lease

-
- - -
-
-
#   - - funder: solana.publickey.PublicKey -
- - -

The authority of the funding wallet

-
- - -
-
-
-
- #   - -
@dataclass
- - class - LeaseInitParams: -
- -
- View Source -
@dataclass
-class LeaseInitParams:
-
-    """Token amount to load into the lease escrow"""
-    load_amount: int
-
-    """The funding wallet of the lease"""
-    funder: PublicKey
-
-    """The authority of the funding wallet"""
-    funder_authority: Keypair
-
-    """The target to which this lease is applied"""
-    oracle_queue_account: OracleQueueAccount
-
-    """The feed which the lease grants permission"""
-    aggregator_account: AggregatorAccount
-
-    """This authority will be permitted to withdraw funds from this lease"""
-    withdraw_authority: PublicKey = None
-
- -
- -

Token amount to load into the lease escrow

-
- - -
-
#   - - - LeaseInitParams( - load_amount: int, - funder: solana.publickey.PublicKey, - funder_authority: solana.keypair.Keypair, - oracle_queue_account: switchboardpy.OracleQueueAccount, - aggregator_account: switchboardpy.AggregatorAccount, - withdraw_authority: solana.publickey.PublicKey = None -) -
- - - - -
-
-
#   - - load_amount: int -
- - -

The funding wallet of the lease

-
- - -
-
-
#   - - funder: solana.publickey.PublicKey -
- - -

The authority of the funding wallet

-
- - -
-
-
#   - - funder_authority: solana.keypair.Keypair -
- - -

The target to which this lease is applied

-
- - -
-
-
#   - - oracle_queue_account: switchboardpy.OracleQueueAccount -
- - -

The feed which the lease grants permission

-
- - -
-
-
#   - - aggregator_account: switchboardpy.AggregatorAccount -
- - -

This authority will be permitted to withdraw funds from this lease

-
- - -
-
-
#   - - withdraw_authority: solana.publickey.PublicKey = None -
- - - - -
-
-
-
- #   - -
@dataclass
- - class - LeaseWithdrawParams: -
- -
- View Source -
@dataclass
-class LeaseWithdrawParams:
-
-    """Token amount to withdraw from the lease escrow"""
-    amount: int
-
-    """The wallet of to withdraw to"""
-    withdraw_wallet: PublicKey
-
-    """The withdraw authority of the lease"""
-    withdraw_authority: Keypair
-
- -
- -

Token amount to withdraw from the lease escrow

-
- - -
-
#   - - - LeaseWithdrawParams( - amount: int, - withdraw_wallet: solana.publickey.PublicKey, - withdraw_authority: solana.keypair.Keypair -) -
- - - - -
-
-
#   - - amount: int -
- - -

The wallet of to withdraw to

-
- - -
-
-
#   - - withdraw_wallet: solana.publickey.PublicKey -
- - -

The withdraw authority of the lease

-
- - -
-
-
-
- #   - - - class - OracleAccount: -
- -
- View Source -
class OracleAccount:
-    """ A Switchboard account representing an oracle account and its associated queue
-    and escrow account.
-
-    Attributes:
-        program (anchor.Program): The anchor program ref
-        public_key (PublicKey | None): This aggregator's public key
-        keypair (Keypair | None): this aggregator's keypair
-    """
-
-
-    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-    
-    """
-    Get the size of an OracleAccount on chain
-
-    Args:
-
-    Returns:
-        int: size of the OracleAccount type on chain
-    """
-    def size(self):
-        return self.program.account["OracleAccountData"].size
-
-    """
-    Load and parse OracleAccount data based on the program IDL
-
-    Args:
-    
-    Returns:
-        OracleAccount
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def load_data(self):
-        return await OracleAccountData.fetch(self.program.provider.connection, self.public_key)
-
-
-    """
-    Loads a OracleAccount from the expected PDA seed format
-
-    Args:
-        program (anchorpy.Program)
-        queue_account (OracleQueueAccount)
-        wallet (PublicKey)
-
-    Returns:
-        Tuple[OracleAccount, int]: OracleAccount and PDA bump
-    """
-    @staticmethod
-    def from_seed(program: anchorpy.Program, queue_account: OracleQueueAccount, wallet: PublicKey):
-        oracle_pubkey, bump = PublicKey.find_program_address(
-            [
-                bytes(b'OracleAccountData'), 
-                bytes(queue_account.public_key),
-                bytes(wallet),
-            ],
-            program.program_id
-        )
-    
-        return OracleAccount(AccountParams(program=program, public_key=oracle_pubkey)), bump
-
-    """
-    Create and initialize the OracleAccount.
-
-    Args:
-        program (anchor.Program): Switchboard program representation holding connection and IDL.
-        params (OracleInitParams)
-    
-    Returns:
-        OracleAccount
-
-    """
-    @staticmethod
-    async def create(program: anchorpy.Program, params: OracleInitParams):
-        payer_keypair = Keypair.from_secret_key(program.provider.wallet.payer.secret_key)
-        program_state_account, state_bump = ProgramStateAccount.from_seed(program)
-        switch_token_mint = await program_state_account.get_token_mint()
-        wallet = await switch_token_mint.create_account(program.provider.wallet.public_key)
-        await switch_token_mint.set_authority(
-            wallet,
-            program_state_account.public_key,
-            'AccountOwner',
-            payer_keypair,
-            []
-        )
-        oracle_account, oracle_bump = OracleAccount.from_seed(
-            program,
-            params.queue_account,
-            wallet
-        )
-
-        await program.rpc["oracle_init"](
-            {
-                "name": params.name or bytes([0] * 32),
-                "metadata": params.metadata or bytes([0] * 128),
-                "state_bump": state_bump,
-                "oracle_bump": oracle_bump,
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "oracle": oracle_account.public_key,
-                    "oracle_authority": payer_keypair.public_key,
-                    "queue": params.queue_account.public_key,
-                    "wallet": wallet,
-                    "program_state": program_state_account.public_key,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "payer": program.provider.wallet.public_key
-                }
-            )
-        )
-        return OracleAccount(AccountParams(program=program, public_key=oracle_account.public_key))
-
-    """
-    Inititates a heartbeat for an OracleAccount, signifying oracle is still healthy.
-
-    Args:
-    
-    Returns:
-        TransactionSignature
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def heartbeat(self):
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        oracle = await self.load_data()
-        queue_account = OracleQueueAccount(AccountParams(program=self.program,public_key=oracle.queue_pubkey))
-        queue_data = await queue_account.load_data()
-        last_pubkey = self.public_key
-        if queue_data.size != 0:
-            last_pubkey = queue_data.queue[queue_data.gc_idx]
-        permission_account, permission_bump = PermissionAccount.from_seed(
-            self.program,
-            queue_data.authority,
-            queue_account.public_key,
-            self.public_key
-        )
-        try:
-            await permission_account.load_data()
-        except Exception:
-            raise ValueError('A requested permission pda account has not been initialized.')
-
-        return await self.program.rpc["oracle_heartbeat"](
-            {
-                "permission_bump": permission_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "oracle": self.public_key,
-                    "oracle_authority": payer_keypair.public_key,
-                    "token_account": oracle.token_account,
-                    "gc_oracle": last_pubkey,
-                    "oracle_queue": queue_account.public_key,
-                    "permission": permission_account.public_key,
-                    "data_buffer": queue_data.data_buffer
-                },
-                signers=[self.keypair]
-            )
-        )
-
-
-    """
-    Withdraw stake and/or rewards from an OracleAccount.
-
-    Args:
-        params (OracleWithdrawParams)
-    
-    Returns:
-        TransactionSignature
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def withdraw(self, params: OracleWithdrawParams):
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        oracle = await self.load_data()
-        queue_pubkey = oracle.queue_pubkey
-        queue_account = OracleQueueAccount(AccountParams(program=self.program, public_key=queue_pubkey))
-        queue = await queue_account.load_data()
-        queue_authority = queue.authority
-        state_account, state_bump = ProgramStateAccount.from_seed(self.program)
-        permission_account, permission_bump = PermissionAccount.from_seed(
-            self.program,
-            queue_authority,
-            queue_account.public_key,
-            self.public_key
-        )
-        return await self.program.rpc["oracle_withdraw"](
-            {
-                "permission_bump": permission_bump,
-                "state_bump": state_bump,
-                "amount": params.amount
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "oracle": self.public_key,
-                    "oracle_authority": params.oracle_authority.public_key,
-                    "token_account": oracle.token_account,
-                    "withdraw_account": params.withdraw_account,
-                    "oracle_queue": queue_account.public_key,
-                    "permission": permission_account.public_key,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "program_state": state_account.public_key,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "payer": self.program.provider.wallet.public_key
-                },
-                signers=[params.oracle_authority]
-            )
-        )
-
- -
- -

A Switchboard account representing an oracle account and its associated queue -and escrow account.

- -

Attributes: - program (anchor.Program): The anchor program ref - public_key (PublicKey | None): This aggregator's public key - keypair (Keypair | None): this aggregator's keypair

-
- - -
-
#   - - - OracleAccount(params: switchboardpy.AccountParams) -
- -
- View Source -
    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-
- -
- - - -
-
-
#   - - keypair -
- - -

Get the size of an OracleAccount on chain

- -

Args:

- -

Returns: - int: size of the OracleAccount type on chain

-
- - -
-
-
#   - - - def - size(self): -
- -
- View Source -
    def size(self):
-        return self.program.account["OracleAccountData"].size
-
- -
- - - -
-
-
#   - - - async def - load_data(self): -
- -
- View Source -
    async def load_data(self):
-        return await OracleAccountData.fetch(self.program.provider.connection, self.public_key)
-
- -
- - - -
-
-
#   - -
@staticmethod
- - def - from_seed( - program: anchorpy.program.core.Program, - queue_account: switchboardpy.OracleQueueAccount, - wallet: solana.publickey.PublicKey -): -
- -
- View Source -
    @staticmethod
-    def from_seed(program: anchorpy.Program, queue_account: OracleQueueAccount, wallet: PublicKey):
-        oracle_pubkey, bump = PublicKey.find_program_address(
-            [
-                bytes(b'OracleAccountData'), 
-                bytes(queue_account.public_key),
-                bytes(wallet),
-            ],
-            program.program_id
-        )
-    
-        return OracleAccount(AccountParams(program=program, public_key=oracle_pubkey)), bump
-
- -
- - - -
-
-
#   - -
@staticmethod
- - async def - create( - program: anchorpy.program.core.Program, - params: switchboardpy.OracleInitParams -): -
- -
- View Source -
    @staticmethod
-    async def create(program: anchorpy.Program, params: OracleInitParams):
-        payer_keypair = Keypair.from_secret_key(program.provider.wallet.payer.secret_key)
-        program_state_account, state_bump = ProgramStateAccount.from_seed(program)
-        switch_token_mint = await program_state_account.get_token_mint()
-        wallet = await switch_token_mint.create_account(program.provider.wallet.public_key)
-        await switch_token_mint.set_authority(
-            wallet,
-            program_state_account.public_key,
-            'AccountOwner',
-            payer_keypair,
-            []
-        )
-        oracle_account, oracle_bump = OracleAccount.from_seed(
-            program,
-            params.queue_account,
-            wallet
-        )
-
-        await program.rpc["oracle_init"](
-            {
-                "name": params.name or bytes([0] * 32),
-                "metadata": params.metadata or bytes([0] * 128),
-                "state_bump": state_bump,
-                "oracle_bump": oracle_bump,
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "oracle": oracle_account.public_key,
-                    "oracle_authority": payer_keypair.public_key,
-                    "queue": params.queue_account.public_key,
-                    "wallet": wallet,
-                    "program_state": program_state_account.public_key,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "payer": program.provider.wallet.public_key
-                }
-            )
-        )
-        return OracleAccount(AccountParams(program=program, public_key=oracle_account.public_key))
-
- -
- - - -
-
-
#   - - - async def - heartbeat(self): -
- -
- View Source -
    async def heartbeat(self):
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        oracle = await self.load_data()
-        queue_account = OracleQueueAccount(AccountParams(program=self.program,public_key=oracle.queue_pubkey))
-        queue_data = await queue_account.load_data()
-        last_pubkey = self.public_key
-        if queue_data.size != 0:
-            last_pubkey = queue_data.queue[queue_data.gc_idx]
-        permission_account, permission_bump = PermissionAccount.from_seed(
-            self.program,
-            queue_data.authority,
-            queue_account.public_key,
-            self.public_key
-        )
-        try:
-            await permission_account.load_data()
-        except Exception:
-            raise ValueError('A requested permission pda account has not been initialized.')
-
-        return await self.program.rpc["oracle_heartbeat"](
-            {
-                "permission_bump": permission_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "oracle": self.public_key,
-                    "oracle_authority": payer_keypair.public_key,
-                    "token_account": oracle.token_account,
-                    "gc_oracle": last_pubkey,
-                    "oracle_queue": queue_account.public_key,
-                    "permission": permission_account.public_key,
-                    "data_buffer": queue_data.data_buffer
-                },
-                signers=[self.keypair]
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - withdraw(self, params: switchboardpy.OracleWithdrawParams): -
- -
- View Source -
    async def withdraw(self, params: OracleWithdrawParams):
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        oracle = await self.load_data()
-        queue_pubkey = oracle.queue_pubkey
-        queue_account = OracleQueueAccount(AccountParams(program=self.program, public_key=queue_pubkey))
-        queue = await queue_account.load_data()
-        queue_authority = queue.authority
-        state_account, state_bump = ProgramStateAccount.from_seed(self.program)
-        permission_account, permission_bump = PermissionAccount.from_seed(
-            self.program,
-            queue_authority,
-            queue_account.public_key,
-            self.public_key
-        )
-        return await self.program.rpc["oracle_withdraw"](
-            {
-                "permission_bump": permission_bump,
-                "state_bump": state_bump,
-                "amount": params.amount
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "oracle": self.public_key,
-                    "oracle_authority": params.oracle_authority.public_key,
-                    "token_account": oracle.token_account,
-                    "withdraw_account": params.withdraw_account,
-                    "oracle_queue": queue_account.public_key,
-                    "permission": permission_account.public_key,
-                    "token_program": TOKEN_PROGRAM_ID,
-                    "program_state": state_account.public_key,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "payer": self.program.provider.wallet.public_key
-                },
-                signers=[params.oracle_authority]
-            )
-        )
-
- -
- - - -
-
-
-
- #   - -
@dataclass
- - class - OracleInitParams: -
- -
- View Source -
@dataclass
-class OracleInitParams:
-    
-    """Specifies the oracle queue to associate with this OracleAccount."""
-    queue_account: OracleQueueAccount
-
-    """Buffer specifying orace name"""
-    name: bytes = None
-
-    """Buffer specifying oralce metadata"""
-    metadata: bytes = None
-
- -
- -

Specifies the oracle queue to associate with this OracleAccount.

-
- - -
-
#   - - - OracleInitParams( - queue_account: switchboardpy.OracleQueueAccount, - name: bytes = None, - metadata: bytes = None -) -
- - - - -
-
- - - -

Buffer specifying orace name

-
- - -
-
-
#   - - name: bytes = None -
- - -

Buffer specifying oralce metadata

-
- - -
-
-
#   - - metadata: bytes = None -
- - - - -
-
-
-
- #   - -
@dataclass
- - class - OracleWithdrawParams: -
- -
- View Source -
@dataclass
-class OracleWithdrawParams:
-    
-    """Amount to withdraw"""
-    amount: Decimal
-
-    """Token Account to withdraw to"""
-    withdraw_account: PublicKey
-
-    """Oracle authority keypair"""
-    oracle_authority: Keypair
-
- -
- -

Amount to withdraw

-
- - -
-
#   - - - OracleWithdrawParams( - amount: decimal.Decimal, - withdraw_account: solana.publickey.PublicKey, - oracle_authority: solana.keypair.Keypair -) -
- - - - -
-
-
#   - - amount: decimal.Decimal -
- - -

Token Account to withdraw to

-
- - -
-
-
#   - - withdraw_account: solana.publickey.PublicKey -
- - -

Oracle authority keypair

-
- - -
-
-
-
- #   - - - class - OracleQueueAccount: -
- -
- View Source -
class OracleQueueAccount:
-    """A Switchboard account representing a queue for distributing oracles to
-    permitted data feeds.
-
-    Attributes:
-        program (anchor.Program): The anchor program ref
-        public_key (PublicKey | None): This OracleQueueAccount's public key
-        keypair (Keypair | None): this OracleQueueAccount's keypair
-    """
-
-    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-
-    """
-    Get the size of an OracleQueueAccount on chain
-
-    Args:
-
-    Returns:
-        int: size of the OracleQueueAccount type on chain
-    """
-    def size(self):
-        return self.program.account["OracleQueueAccountData"].size
-
-    """
-    Load and parse OracleQueueAccount data based on the program IDL
-
-    Args:
-    
-    Returns:
-        OracleQueueAccount
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def load_data(self):
-        return await OracleQueueAccountData.fetch(self.program.provider.connection, self.public_key)
-
-    """
-    Fetch the token mint for this queue
-    Args:
-    Returns:
-        AsyncToken
-    """
-    async def load_mint(self) -> AsyncToken:
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        queue = await self.load_data()
-        try:
-            mint = AsyncToken(self.program.provider.connection, queue.mint, TOKEN_PROGRAM_ID, payer_keypair)
-            return mint;
-        except AttributeError:
-            return AsyncToken(self.program.provider.connection, WRAPPED_SOL_MINT, TOKEN_PROGRAM_ID, payer_keypair)
-
-    """
-    Create and initialize the OracleQueueAccount
-
-    Args:
-        program (anchor.Program)
-        params (OracleQueueInitParams)
-
-    Returns:
-        OracleQueueAccount
-    """
-    @staticmethod
-    async def create(program: anchorpy.Program, params: OracleQueueInitParams):
-        oracle_queue_account = Keypair.generate()
-        buffer = Keypair.generate()
-        queue_size = params.queue_size or 500
-        queue_size = queue_size * 32 + 8
-        response = await program.provider.connection.get_minimum_balance_for_rent_exemption(queue_size)
-        lamports = response["result"]
-        await program.rpc["oracle_queue_init"](
-            {
-                "name": params.name or bytes([0] * 32),
-                "metadata": params.metadata or bytes([0] * 64),
-                "reward": params.reward or 0,
-                "min_stake": params.min_stake or 0,
-                "feed_probation_period": params.feed_probation_period or 0,
-                "oracle_timeout": params.oracle_timeout or 180,
-                "slashing_enabled": params.slashing_enabled or False,
-                "variance_tolerance_multiplier": SwitchboardDecimal.from_decimal(params.variance_tolerance_multiplier or Decimal(2)).as_proper_sbd(program),
-                "authority": params.authority,
-                "consecutive_feed_failure_limit": params.consecutive_feed_failure_limit or 1000,
-                "consecutive_oracle_failure_limit": params.consecutive_oracle_failure_limit or 1000,
-                "minimum_delay_seconds": params.minimum_delay_seconds or 5,
-                "queue_size": params.queue_size or 0,
-                "unpermissioned_feeds": params.unpermissioned_feeds or False,
-                "unpermissioned_vrf": params.unpermissioned_feeds or False,
-                "enable_buffer_relayers": False
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "oracle_queue": oracle_queue_account.public_key,
-                    "authority": params.authority,
-                    "buffer": buffer.public_key,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "payer": program.provider.wallet.public_key,
-                    "mint": params.mint
-                },
-                signers=[oracle_queue_account, buffer],
-                pre_instructions=[
-                    create_account(
-                        CreateAccountParams(
-                            from_pubkey=program.provider.wallet.public_key, 
-                            new_account_pubkey=buffer.public_key,
-                            lamports=lamports, 
-                            space=queue_size, 
-                            program_id=program.program_id
-                        )
-                    )
-                ]
-            )
-        )
-        return OracleQueueAccount(AccountParams(program=program, keypair=oracle_queue_account));
-
- -
- -

A Switchboard account representing a queue for distributing oracles to -permitted data feeds.

- -

Attributes: - program (anchor.Program): The anchor program ref - public_key (PublicKey | None): This OracleQueueAccount's public key - keypair (Keypair | None): this OracleQueueAccount's keypair

-
- - -
-
#   - - - OracleQueueAccount(params: switchboardpy.AccountParams) -
- -
- View Source -
    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-
- -
- - - -
-
-
#   - - keypair -
- - -

Get the size of an OracleQueueAccount on chain

- -

Args:

- -

Returns: - int: size of the OracleQueueAccount type on chain

-
- - -
-
-
#   - - - def - size(self): -
- -
- View Source -
    def size(self):
-        return self.program.account["OracleQueueAccountData"].size
-
- -
- - - -
-
-
#   - - - async def - load_data(self): -
- -
- View Source -
    async def load_data(self):
-        return await OracleQueueAccountData.fetch(self.program.provider.connection, self.public_key)
-
- -
- - - -
-
-
#   - - - async def - load_mint(self) -> spl.token.async_client.AsyncToken: -
- -
- View Source -
    async def load_mint(self) -> AsyncToken:
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        queue = await self.load_data()
-        try:
-            mint = AsyncToken(self.program.provider.connection, queue.mint, TOKEN_PROGRAM_ID, payer_keypair)
-            return mint;
-        except AttributeError:
-            return AsyncToken(self.program.provider.connection, WRAPPED_SOL_MINT, TOKEN_PROGRAM_ID, payer_keypair)
-
- -
- - - -
-
-
#   - -
@staticmethod
- - async def - create( - program: anchorpy.program.core.Program, - params: switchboardpy.OracleQueueInitParams -): -
- -
- View Source -
    @staticmethod
-    async def create(program: anchorpy.Program, params: OracleQueueInitParams):
-        oracle_queue_account = Keypair.generate()
-        buffer = Keypair.generate()
-        queue_size = params.queue_size or 500
-        queue_size = queue_size * 32 + 8
-        response = await program.provider.connection.get_minimum_balance_for_rent_exemption(queue_size)
-        lamports = response["result"]
-        await program.rpc["oracle_queue_init"](
-            {
-                "name": params.name or bytes([0] * 32),
-                "metadata": params.metadata or bytes([0] * 64),
-                "reward": params.reward or 0,
-                "min_stake": params.min_stake or 0,
-                "feed_probation_period": params.feed_probation_period or 0,
-                "oracle_timeout": params.oracle_timeout or 180,
-                "slashing_enabled": params.slashing_enabled or False,
-                "variance_tolerance_multiplier": SwitchboardDecimal.from_decimal(params.variance_tolerance_multiplier or Decimal(2)).as_proper_sbd(program),
-                "authority": params.authority,
-                "consecutive_feed_failure_limit": params.consecutive_feed_failure_limit or 1000,
-                "consecutive_oracle_failure_limit": params.consecutive_oracle_failure_limit or 1000,
-                "minimum_delay_seconds": params.minimum_delay_seconds or 5,
-                "queue_size": params.queue_size or 0,
-                "unpermissioned_feeds": params.unpermissioned_feeds or False,
-                "unpermissioned_vrf": params.unpermissioned_feeds or False,
-                "enable_buffer_relayers": False
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "oracle_queue": oracle_queue_account.public_key,
-                    "authority": params.authority,
-                    "buffer": buffer.public_key,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "payer": program.provider.wallet.public_key,
-                    "mint": params.mint
-                },
-                signers=[oracle_queue_account, buffer],
-                pre_instructions=[
-                    create_account(
-                        CreateAccountParams(
-                            from_pubkey=program.provider.wallet.public_key, 
-                            new_account_pubkey=buffer.public_key,
-                            lamports=lamports, 
-                            space=queue_size, 
-                            program_id=program.program_id
-                        )
-                    )
-                ]
-            )
-        )
-        return OracleQueueAccount(AccountParams(program=program, keypair=oracle_queue_account));
-
- -
- - - -
-
-
-
- #   - -
@dataclass
- - class - OracleQueueInitParams: -
- -
- View Source -
@dataclass
-class OracleQueueInitParams:
-
-    """Mint for the oracle queue"""
-    mint: PublicKey
-
-    """Rewards to provide oracles and round openers on this queue."""
-    reward: int
-
-    """The minimum amount of stake oracles must present to remain on the queue."""
-    min_stake: int
-
-    """
-    The account to delegate authority to for creating permissions targeted
-    at the queue.
-    """
-    authority: PublicKey 
-
-    """Time period we should remove an oracle after if no response."""
-    oracle_timeout: int = None
-
-    """
-    The tolerated variance amount oracle results can have from the
-    accepted round result before being slashed.
-    slashBound = varianceToleranceMultiplier * stdDeviation
-    Default: 2
-    """
-    variance_tolerance_multiplier: Decimal = None
-
-    """Consecutive failure limit for a feed before feed permission is revoked."""
-    consecutive_feed_failure_limit: int = None
-
-    """
-    Consecutive failure limit for an oracle before oracle permission is revoked.
-    """
-    consecutive_oracle_failure_limit: int = None
-
-    """the minimum update delay time for Aggregators"""
-    minimum_delay_seconds: int = None
-
-    """Optionally set the size of the queue."""
-    queue_size: int = None
-
-    """
-    Enabling this setting means data feeds do not need explicit permission
-    to join the queue.
-    """
-    unpermissioned_feeds: bool = None
-
-    """Whether slashing is enabled on this queue"""
-    slashing_enabled: bool = None
-
-    """
-    After a feed lease is funded or re-funded, it must consecutively succeed
-    N amount of times or its authorization to use the queue is auto-revoked.
-    """
-    feed_probation_period: int = None
-
-    """A name to assign to this OracleQueue."""
-    name: bytes = None
-
-    """Buffer for queue metadata."""
-    metadata: bytes = None
-
-    """
-    Enabling this setting means data feeds do not need explicit permission
-    to request VRF proofs and verifications from this queue.
-    """
-    unpermissioned_vrf: bool = None
-
- -
- -

Mint for the oracle queue

-
- - -
-
#   - - - OracleQueueInitParams( - mint: solana.publickey.PublicKey, - reward: int, - min_stake: int, - authority: solana.publickey.PublicKey, - oracle_timeout: int = None, - variance_tolerance_multiplier: decimal.Decimal = None, - consecutive_feed_failure_limit: int = None, - consecutive_oracle_failure_limit: int = None, - minimum_delay_seconds: int = None, - queue_size: int = None, - unpermissioned_feeds: bool = None, - slashing_enabled: bool = None, - feed_probation_period: int = None, - name: bytes = None, - metadata: bytes = None, - unpermissioned_vrf: bool = None -) -
- - - - -
-
-
#   - - mint: solana.publickey.PublicKey -
- - -

Rewards to provide oracles and round openers on this queue.

-
- - -
-
-
#   - - reward: int -
- - -

The minimum amount of stake oracles must present to remain on the queue.

-
- - -
-
-
#   - - min_stake: int -
- - -

The account to delegate authority to for creating permissions targeted -at the queue.

-
- - -
-
-
#   - - authority: solana.publickey.PublicKey -
- - -

Time period we should remove an oracle after if no response.

-
- - -
-
-
#   - - oracle_timeout: int = None -
- - -

The tolerated variance amount oracle results can have from the -accepted round result before being slashed. -slashBound = varianceToleranceMultiplier * stdDeviation -Default: 2

-
- - -
-
-
#   - - variance_tolerance_multiplier: decimal.Decimal = None -
- - -

Consecutive failure limit for a feed before feed permission is revoked.

-
- - -
-
-
#   - - consecutive_feed_failure_limit: int = None -
- - -

Consecutive failure limit for an oracle before oracle permission is revoked.

-
- - -
-
-
#   - - consecutive_oracle_failure_limit: int = None -
- - -

the minimum update delay time for Aggregators

-
- - -
-
-
#   - - minimum_delay_seconds: int = None -
- - -

Optionally set the size of the queue.

-
- - -
-
-
#   - - queue_size: int = None -
- - -

Enabling this setting means data feeds do not need explicit permission -to join the queue.

-
- - -
-
-
#   - - unpermissioned_feeds: bool = None -
- - -

Whether slashing is enabled on this queue

-
- - -
-
-
#   - - slashing_enabled: bool = None -
- - -

After a feed lease is funded or re-funded, it must consecutively succeed -N amount of times or its authorization to use the queue is auto-revoked.

-
- - -
-
-
#   - - feed_probation_period: int = None -
- - -

A name to assign to this OracleQueue.

-
- - -
-
-
#   - - name: bytes = None -
- - -

Buffer for queue metadata.

-
- - -
-
-
#   - - metadata: bytes = None -
- - -

Enabling this setting means data feeds do not need explicit permission -to request VRF proofs and verifications from this queue.

-
- - -
-
-
#   - - unpermissioned_vrf: bool = None -
- - - - -
-
-
-
- #   - - - class - OracleJob(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
#   - - DESCRIPTOR = <google.protobuf.pyext._message.MessageDescriptor object> -
- - - - -
-
-
#   - - tasks -
- - - - - -
-
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
-
-
-
-
- #   - - - class - OracleJob.HttpTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.HttpTask
-
DESCRIPTOR
-
Header
-
url
-
method
-
headers
-
body
-
Method
-
METHOD_UNKOWN
-
METHOD_GET
-
METHOD_POST
- -
-
-
-
-
-
- #   - - - class - OracleJob.JsonParseTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.JsonParseTask
-
DESCRIPTOR
-
path
-
aggregation_method
-
AggregationMethod
-
NONE
-
MIN
-
MAX
-
SUM
- -
-
-
-
-
-
- #   - - - class - OracleJob.MedianTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.MedianTask
-
DESCRIPTOR
-
tasks
-
jobs
-
min_successful_required
- -
-
-
-
-
-
- #   - - - class - OracleJob.MeanTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.MeanTask
-
DESCRIPTOR
-
tasks
-
jobs
- -
-
-
-
-
-
- #   - - - class - OracleJob.MaxTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.MaxTask
-
DESCRIPTOR
-
tasks
-
jobs
- -
-
-
-
-
-
- #   - - - class - OracleJob.ValueTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.ValueTask
-
DESCRIPTOR
-
value
-
aggregator_pubkey
- -
-
-
-
-
-
- #   - - - class - OracleJob.WebsocketTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.WebsocketTask
-
DESCRIPTOR
-
url
-
subscription
-
max_data_age_seconds
-
filter
- -
-
-
-
-
-
- #   - - - class - OracleJob.ConditionalTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.ConditionalTask
-
DESCRIPTOR
-
attempt
-
on_failure
- -
-
-
-
-
-
- #   - - - class - OracleJob.DivideTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.DivideTask
-
DESCRIPTOR
-
scalar
-
aggregator_pubkey
-
job
- -
-
-
-
-
-
- #   - - - class - OracleJob.MultiplyTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.MultiplyTask
-
DESCRIPTOR
-
scalar
-
aggregator_pubkey
-
job
- -
-
-
-
-
-
- #   - - - class - OracleJob.AddTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.AddTask
-
DESCRIPTOR
-
scalar
-
aggregator_pubkey
-
job
- -
-
-
-
-
-
- #   - - - class - OracleJob.SubtractTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.SubtractTask
-
DESCRIPTOR
-
scalar
-
aggregator_pubkey
-
job
- -
-
-
-
-
-
- #   - - - class - OracleJob.LpTokenPriceTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.LpTokenPriceTask
-
DESCRIPTOR
-
mercurial_pool_address
-
saber_pool_address
-
orca_pool_address
-
raydium_pool_address
-
price_feed_addresses
-
price_feed_jobs
-
use_fair_price
- -
-
-
-
-
-
- #   - - - class - OracleJob.LpExchangeRateTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.LpExchangeRateTask
-
DESCRIPTOR
-
in_token_address
-
out_token_address
-
mercurial_pool_address
-
saber_pool_address
-
orca_pool_token_mint_address
-
raydium_pool_address
- -
-
-
-
-
-
- #   - - - class - OracleJob.RegexExtractTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.RegexExtractTask
-
DESCRIPTOR
-
pattern
-
group_number
- -
-
-
-
-
-
- #   - - - class - OracleJob.XStepPriceTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.XStepPriceTask
-
DESCRIPTOR
-
step_job
-
step_aggregator_pubkey
- -
-
-
-
-
-
- #   - - - class - OracleJob.TwapTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.TwapTask
-
DESCRIPTOR
-
aggregator_pubkey
-
period
-
weight_by_propagation_time
-
min_samples
-
ending_unix_timestamp
- -
-
-
-
-
-
- #   - - - class - OracleJob.SerumSwapTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.SerumSwapTask
-
DESCRIPTOR
-
serum_pool_address
- -
-
-
-
-
-
- #   - - - class - OracleJob.PowTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.PowTask
-
DESCRIPTOR
-
scalar
-
aggregator_pubkey
- -
-
-
-
-
-
- #   - - - class - OracleJob.LendingRateTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.LendingRateTask
-
DESCRIPTOR
-
protocol
-
asset_mint
-
field
-
Field
-
FIELD_DEPOSIT_RATE
-
FIELD_BORROW_RATE
- -
-
-
-
-
-
- #   - - - class - OracleJob.MangoPerpMarketTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.MangoPerpMarketTask
-
DESCRIPTOR
-
perp_market_address
- -
-
-
-
-
-
- #   - - - class - OracleJob.JupiterSwapTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.JupiterSwapTask
-
DESCRIPTOR
-
in_token_address
-
out_token_address
-
base_amount
- -
-
-
-
-
-
- #   - - - class - OracleJob.PerpMarketTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.PerpMarketTask
-
DESCRIPTOR
-
mango_market_address
-
drift_market_address
-
zeta_market_address
-
zo_market_address
- -
-
-
-
-
-
- #   - - - class - OracleJob.OracleTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.OracleTask
-
DESCRIPTOR
-
switchboard_address
-
pyth_address
- -
pyth_allowed_confidence_interval
- -
-
-
-
-
-
- #   - - - class - OracleJob.AnchorFetchTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.AnchorFetchTask
-
DESCRIPTOR
-
program_id
-
account_address
- -
-
-
-
-
-
- #   - - - class - OracleJob.DefiKingdomsTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.DefiKingdomsTask
-
DESCRIPTOR
-
Token
-
provider
-
in_token
-
out_token
- -
-
-
-
-
-
- #   - - - class - OracleJob.TpsTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.TpsTask
-
DESCRIPTOR
- -
-
-
-
-
-
- #   - - - class - OracleJob.SplStakePoolTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.SplStakePoolTask
-
DESCRIPTOR
-
pubkey
- -
-
-
-
-
-
- #   - - - class - OracleJob.SplTokenParseTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.SplTokenParseTask
-
DESCRIPTOR
-
token_account_address
-
mint_address
- -
-
-
-
-
-
- #   - - - class - OracleJob.UniswapExchangeRateTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.UniswapExchangeRateTask
-
DESCRIPTOR
-
in_token_address
-
out_token_address
-
in_token_amount
-
slippage
-
provider
- -
-
-
-
-
-
- #   - - - class - OracleJob.SushiswapExchangeRateTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.SushiswapExchangeRateTask
-
DESCRIPTOR
-
in_token_address
-
out_token_address
-
in_token_amount
-
slippage
-
provider
- -
-
-
-
-
-
- #   - - - class - OracleJob.PancakeswapExchangeRateTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.PancakeswapExchangeRateTask
-
DESCRIPTOR
-
in_token_address
-
out_token_address
-
in_token_amount
-
slippage
-
provider
- -
-
-
-
-
-
- #   - - - class - OracleJob.CacheTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.CacheTask
-
DESCRIPTOR
-
name
-
method
-
Method
-
METHOD_GET
-
METHOD_SET
- -
-
-
-
-
-
- #   - - - class - OracleJob.SysclockOffsetTask(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.SysclockOffsetTask
-
DESCRIPTOR
- -
-
-
-
-
-
- #   - - - class - OracleJob.Task(google.protobuf.pyext._message.CMessage, google.protobuf.message.Message): -
- - -

A ProtocolMessage

-
- - -
-
Inherited Members
-
-
google.protobuf.pyext._message.CMessage
-
CMessage
-
MergeFrom
-
CopyFrom
-
Clear
-
SetInParent
-
IsInitialized
-
MergeFromString
-
ParseFromString
-
SerializeToString
-
SerializePartialToString
-
ListFields
-
HasField
-
ClearField
-
WhichOneof
-
HasExtension
-
ClearExtension
-
UnknownFields
-
DiscardUnknownFields
-
ByteSize
-
FromString
-
RegisterExtension
-
FindInitializationErrors
-
Extensions
- -
-
job_schemas_pb2.Task
-
DESCRIPTOR
-
http_task
-
json_parse_task
-
median_task
-
mean_task
-
websocket_task
-
divide_task
-
multiply_task
-
lp_token_price_task
-
lp_exchange_rate_task
-
conditional_task
-
value_task
-
max_task
-
regex_extract_task
-
xstep_price_task
-
add_task
-
subtract_task
-
twap_task
-
serum_swap_task
-
pow_task
-
lending_rate_task
-
mango_perp_market_task
-
jupiter_swap_task
-
perp_market_task
-
oracle_task
-
anchor_fetch_task
-
defi_kingdoms_task
-
tps_task
-
spl_stake_pool_task
-
spl_token_parse_task
-
uniswap_exchange_rate_task
-
sushiswap_exchange_rate_task
-
pancakeswap_exchange_rate_task
-
cache_task
-
sysclock_offset_task
- -
-
-
-
-
-
- #   - - - class - PermissionAccount: -
- -
- View Source -
class PermissionAccount:
-    """A Switchboard account representing a permission or privilege granted by one
-    account signer to another account.
-
-    Attributes:
-        program (anchor.Program): The anchor program ref
-        public_key (PublicKey | None): This permission's public key
-        keypair (Keypair | None): this permission's keypair
-    """
-
-    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-    
-
-    """
-    Check if a specific permission is enabled on this permission account
-
-    Args:
-        permission (SwitchboardPermissionValue)
-
-    Returns:
-        bool: whether or not the permission is enabled
-    """
-    async def is_permission_enabled(self, permission: SwitchboardPermissionValue):
-        perm_data = await self.load_data()
-        permissions = perm_data.permissions
-        return (permissions & permission) != 0
-
-    """
-    Load and parse PermissionAccount data based on the program IDL
-
-    Args:
-    
-    Returns:
-        PermissionAccount
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def load_data(self):
-        return await PermissionAccountData.fetch(self.program.provider.connection, self.public_key)
-
-
-    """
-    Get the size of a PermissionAccount on chain
-
-    Args:
-
-    Returns:
-        int: size of the PermissionAccount type on chain
-    """
-    def size(self):
-        return self.program.account["PermissionAccountData"].size
-
-    """
-    Create and initialize a PermissionAccount
-
-    Args:
-        program (anchor.Program)
-        prarams (PermissionInitParams)
-
-    Returns:
-        PermissionAccount
-    """
-    @staticmethod
-    async def create(program: anchorpy.Program, params: PermissionInitParams):
-        permission_account, permission_bump = PermissionAccount.from_seed(
-            program,
-            params.authority,
-            params.granter,
-            params.grantee
-        )
-
-        await program.rpc["permission_init"](
-            {
-                "permission_bump": permission_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "permission": permission_account.public_key,
-                    "authority": params.authority,
-                    "granter": params.granter,
-                    "grantee": params.grantee,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "payer": program.provider.wallet.public_key
-                },
-            )
-        )
-        return permission_account
-
-    """
-    Loads a PermissionAccount from the expected PDA seed format
-
-    Args:
-        program (anchorpy.Program)
-        authority (public_key): The authority pubkey to be incorporated into the account seed.
-        granter (public_key): The granter pubkey to be incorporated into the account seed.
-        grantee (public_key): The grantee pubkey to be incorporated into the account seed.
-
-    Returns:
-        Tuple[PermissionAccount, int]: PermissionAccount and PDA bump
-    """
-    @staticmethod
-    def from_seed(program: anchorpy.Program, authority: PublicKey, granter: PublicKey, grantee: PublicKey):
-        pubkey, bump = PublicKey.find_program_address(
-            [
-                bytes(b'PermissionAccountData'), 
-                bytes(authority),
-                bytes(granter),
-                bytes(grantee)
-            ],
-            program.program_id
-        )
-    
-        return PermissionAccount(AccountParams(program=program, public_key=pubkey)), bump
-
-    """
-    Sets the permission in the PermissionAccount
-
-    Args: 
-        params (PermissionSetParams)
-    
-    Returns:
-        TransactionSignature
-    """
-    async def set(self, params: PermissionSetParams):
-        self.program.rpc["permission_set"](
-            {
-                "permission": self.program.type["SwitchboardPermission"][params.permission](),
-                "authority": params.authority.public_key
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "permission": self.public_key,
-                    "authority": params.authority.public_key
-                },
-                signers=[params.authority]
-            )
-        )
-
- -
- -

A Switchboard account representing a permission or privilege granted by one -account signer to another account.

- -

Attributes: - program (anchor.Program): The anchor program ref - public_key (PublicKey | None): This permission's public key - keypair (Keypair | None): this permission's keypair

-
- - -
-
#   - - - PermissionAccount(params: switchboardpy.AccountParams) -
- -
- View Source -
    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-
- -
- - - -
-
-
#   - - keypair -
- - -

Check if a specific permission is enabled on this permission account

- -

Args: - permission (SwitchboardPermissionValue)

- -

Returns: - bool: whether or not the permission is enabled

-
- - -
-
-
#   - - - async def - is_permission_enabled( - self, - permission: switchboardpy.permission.SwitchboardPermissionValue -): -
- -
- View Source -
    async def is_permission_enabled(self, permission: SwitchboardPermissionValue):
-        perm_data = await self.load_data()
-        permissions = perm_data.permissions
-        return (permissions & permission) != 0
-
- -
- - - -
-
-
#   - - - async def - load_data(self): -
- -
- View Source -
    async def load_data(self):
-        return await PermissionAccountData.fetch(self.program.provider.connection, self.public_key)
-
- -
- - - -
-
-
#   - - - def - size(self): -
- -
- View Source -
    def size(self):
-        return self.program.account["PermissionAccountData"].size
-
- -
- - - -
-
-
#   - -
@staticmethod
- - async def - create( - program: anchorpy.program.core.Program, - params: switchboardpy.PermissionInitParams -): -
- -
- View Source -
    @staticmethod
-    async def create(program: anchorpy.Program, params: PermissionInitParams):
-        permission_account, permission_bump = PermissionAccount.from_seed(
-            program,
-            params.authority,
-            params.granter,
-            params.grantee
-        )
-
-        await program.rpc["permission_init"](
-            {
-                "permission_bump": permission_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "permission": permission_account.public_key,
-                    "authority": params.authority,
-                    "granter": params.granter,
-                    "grantee": params.grantee,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "payer": program.provider.wallet.public_key
-                },
-            )
-        )
-        return permission_account
-
- -
- - - -
-
-
#   - -
@staticmethod
- - def - from_seed( - program: anchorpy.program.core.Program, - authority: solana.publickey.PublicKey, - granter: solana.publickey.PublicKey, - grantee: solana.publickey.PublicKey -): -
- -
- View Source -
    @staticmethod
-    def from_seed(program: anchorpy.Program, authority: PublicKey, granter: PublicKey, grantee: PublicKey):
-        pubkey, bump = PublicKey.find_program_address(
-            [
-                bytes(b'PermissionAccountData'), 
-                bytes(authority),
-                bytes(granter),
-                bytes(grantee)
-            ],
-            program.program_id
-        )
-    
-        return PermissionAccount(AccountParams(program=program, public_key=pubkey)), bump
-
- -
- - - -
-
-
#   - - - async def - set(self, params: switchboardpy.PermissionSetParams): -
- -
- View Source -
    async def set(self, params: PermissionSetParams):
-        self.program.rpc["permission_set"](
-            {
-                "permission": self.program.type["SwitchboardPermission"][params.permission](),
-                "authority": params.authority.public_key
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "permission": self.public_key,
-                    "authority": params.authority.public_key
-                },
-                signers=[params.authority]
-            )
-        )
-
- -
- - - -
-
-
-
- #   - -
@dataclass
- - class - PermissionInitParams: -
- -
- View Source -
@dataclass
-class PermissionInitParams:
-
-    """Pubkey of the account granting the permission"""
-    granter: PublicKey
-
-    """The receiving amount of a permission"""
-    grantee: PublicKey
-
-    """The authority that is allowed to set permissions for this account"""
-    authority: PublicKey
-
- -
- -

Pubkey of the account granting the permission

-
- - -
-
#   - - - PermissionInitParams( - granter: solana.publickey.PublicKey, - grantee: solana.publickey.PublicKey, - authority: solana.publickey.PublicKey -) -
- - - - -
-
-
#   - - granter: solana.publickey.PublicKey -
- - -

The receiving amount of a permission

-
- - -
-
-
#   - - grantee: solana.publickey.PublicKey -
- - -

The authority that is allowed to set permissions for this account

-
- - -
-
-
-
- #   - -
@dataclass
- - class - PermissionSetParams: -
- -
- View Source -
@dataclass
-class PermissionSetParams:
-
-    """The permission to set"""
-    permission: SwitchboardPermission
-
-    """The authority controlling this permission"""
-    authority: Keypair
-
-    """Specifies whether to enable or disable the permission"""
-    enable: bool
-
- -
- -

The permission to set

-
- - -
-
#   - - - PermissionSetParams( - permission: switchboardpy.permission.SwitchboardPermission, - authority: solana.keypair.Keypair, - enable: bool -) -
- - - - -
-
-
#   - - permission: switchboardpy.permission.SwitchboardPermission -
- - -

The authority controlling this permission

-
- - -
-
-
#   - - authority: solana.keypair.Keypair -
- - -

Specifies whether to enable or disable the permission

-
- - -
-
-
-
- #   - - - class - ProgramStateAccount: -
- -
- View Source -
class ProgramStateAccount:
-    """Account type representing Switchboard global program state.
-
-    Attributes:
-        program (anchor.Program): The anchor program ref
-        public_key (PublicKey | None): This program's public key
-        keypair (Keypair | None): this program's keypair
-    """
-
-
-    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-    
-    """
-    Constructs ProgramStateAccount from the static seed from which it was generated.
-
-    Args:
-        program (anchorpy.Program): Anchor-loaded aggregator
-
-    Returns:
-        ProgramStateAccount and PDA bump tuple.
-    """
-    @staticmethod
-    def from_seed(program: anchorpy.Program):
-        state_pubkey, state_bump = publickey.PublicKey.find_program_address(['STATE'.encode()], program.program_id)
-        return ProgramStateAccount(AccountParams(program=program, public_key=state_pubkey)), state_bump
-
-    """
-    Load and parse ProgramStateAccount state based on the program IDL. 
-    
-    Args:
-
-    Returns:
-        name (Any): data parsed in accordance with the
-            Switchboard IDL.
-
-    Raises:
-        AccountDoesNotExistError: If the account doesn't exist.
-        AccountInvalidDiscriminator: If the discriminator doesn't match the IDL.
-    """
-    async def load_data(self):
-        return await SbState.fetch(self.program.provider.connection, self.public_key)
-
-
-    """
-    Fetch the Switchboard token mint specified in the program state account.
-    
-    Args:
-
-    Returns:
-        anchorpy.
-    """
-    async def get_token_mint(self) -> AsyncToken:
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        state = await self.load_data()
-        switch_token_mint = AsyncToken(self.program.provider.connection, state.token_mint, TOKEN_PROGRAM_ID, payer_keypair)
-        return switch_token_mint
-
-    """
-    Get the size of the global ProgramStateAccount on chain
-    
-    Returns:
-        int: size of the ProgramStateAccount on chain 
-    """
-    def size(self):
-        return self.program.account["SbState"].size
-
-    """
-    Create and initialize the ProgramStateAccount
-
-    Args:
-        program (anchorpy.Program): anchor program
-        params (ProgramInitParams): optionally pass in mint address
-
-    Returns:
-        ProgramStateAccount that was generated
-    """
-    @staticmethod
-    async def create(program: anchorpy.Program, params: ProgramInitParams):
-        payer_keypair = Keypair.from_secret_key(program.provider.wallet.payer.secret_key)
-        state_account, state_bump = ProgramStateAccount.from_seed(program)
-        psa = ProgramStateAccount(AccountParams(program=program, public_key=state_account.public_key))
-        try:
-            await psa.load_data()
-            return psa
-        except Exception:
-            pass
-        mint = None
-        vault = None
-        if params.mint == None:
-            decimals = 9
-            mint, vault = await anchorpy.utils.token.create_mint_and_vault(
-                program.provider,
-                100_000_000,
-                payer_keypair.public_key,
-                decimals
-            )
-        else:
-            mint = params.mint
-            token = AsyncToken(
-                program.provider.connection,
-                mint,
-                TOKEN_PROGRAM_ID,
-                payer_keypair
-            )
-            vault = await token.create_account(payer_keypair.public_key)
-        await program.rpc["program_init"](
-            {
-                "state_bump": state_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "state": state_account.public_key,
-                    "authority": payer_keypair.public_key,
-                    "token_mint": mint,
-                    "vault": vault,
-                    "payer": payer_keypair.public_key,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "token_program": TOKEN_PROGRAM_ID
-                },
-            )
-        )
-
-    """
-    Transfer N tokens from the program vault to a specified account.
-
-    Args:
-        to (PublicKey): The recipient of the vault tokens.
-        authority (Keypair): The vault authority required to sign the transfer tx
-        params (VaultTransferParams): Specifies the amount to transfer.
-  
-    Returns:
-        TransactionSignature
-    """
-    async def vault_transfer(self, to: PublicKey, authority: Keypair, params: VaultTransferParams):
-        state_pubkey, state_bump = ProgramStateAccount.from_seed(self.program)
-        state = await self.load_data()
-        vault = state.token_vault
-        await self.program.rpc["vault_transfer"](
-            {
-                "state_bump": state_bump,
-                "amount": params.amount # @FIXME - can't be a decimal, must have mantissa / scale
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "state": state_pubkey,
-                    "to": to,
-                    "vault": vault,
-                    "authority": authority.public_key,
-                    "token_program": TOKEN_PROGRAM_ID,
-                },
-                signers=[authority]
-            )
-        )
-
- -
- -

Account type representing Switchboard global program state.

- -

Attributes: - program (anchor.Program): The anchor program ref - public_key (PublicKey | None): This program's public key - keypair (Keypair | None): this program's keypair

-
- - -
-
#   - - - ProgramStateAccount(params: switchboardpy.AccountParams) -
- -
- View Source -
    def __init__(self, params: AccountParams):
-        if params.public_key is None and params.keypair is None:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        if params.keypair and params.public_key and params.keypair.public_key != params.public_key:
-            raise ValueError('User must provide either a publicKey or keypair for account use.')
-        self.program = params.program
-        self.public_key = params.keypair.public_key if params.keypair else params.public_key
-        self.keypair = params.keypair
-
- -
- - - -
-
-
#   - - keypair -
- - -

Constructs ProgramStateAccount from the static seed from which it was generated.

- -

Args: - program (anchorpy.Program): Anchor-loaded aggregator

- -

Returns: - ProgramStateAccount and PDA bump tuple.

-
- - -
-
-
#   - -
@staticmethod
- - def - from_seed(program: anchorpy.program.core.Program): -
- -
- View Source -
    @staticmethod
-    def from_seed(program: anchorpy.Program):
-        state_pubkey, state_bump = publickey.PublicKey.find_program_address(['STATE'.encode()], program.program_id)
-        return ProgramStateAccount(AccountParams(program=program, public_key=state_pubkey)), state_bump
-
- -
- - - -
-
-
#   - - - async def - load_data(self): -
- -
- View Source -
    async def load_data(self):
-        return await SbState.fetch(self.program.provider.connection, self.public_key)
-
- -
- - - -
-
-
#   - - - async def - get_token_mint(self) -> spl.token.async_client.AsyncToken: -
- -
- View Source -
    async def get_token_mint(self) -> AsyncToken:
-        payer_keypair = Keypair.from_secret_key(self.program.provider.wallet.payer.secret_key)
-        state = await self.load_data()
-        switch_token_mint = AsyncToken(self.program.provider.connection, state.token_mint, TOKEN_PROGRAM_ID, payer_keypair)
-        return switch_token_mint
-
- -
- - - -
-
-
#   - - - def - size(self): -
- -
- View Source -
    def size(self):
-        return self.program.account["SbState"].size
-
- -
- - - -
-
-
#   - -
@staticmethod
- - async def - create( - program: anchorpy.program.core.Program, - params: switchboardpy.ProgramInitParams -): -
- -
- View Source -
    @staticmethod
-    async def create(program: anchorpy.Program, params: ProgramInitParams):
-        payer_keypair = Keypair.from_secret_key(program.provider.wallet.payer.secret_key)
-        state_account, state_bump = ProgramStateAccount.from_seed(program)
-        psa = ProgramStateAccount(AccountParams(program=program, public_key=state_account.public_key))
-        try:
-            await psa.load_data()
-            return psa
-        except Exception:
-            pass
-        mint = None
-        vault = None
-        if params.mint == None:
-            decimals = 9
-            mint, vault = await anchorpy.utils.token.create_mint_and_vault(
-                program.provider,
-                100_000_000,
-                payer_keypair.public_key,
-                decimals
-            )
-        else:
-            mint = params.mint
-            token = AsyncToken(
-                program.provider.connection,
-                mint,
-                TOKEN_PROGRAM_ID,
-                payer_keypair
-            )
-            vault = await token.create_account(payer_keypair.public_key)
-        await program.rpc["program_init"](
-            {
-                "state_bump": state_bump
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "state": state_account.public_key,
-                    "authority": payer_keypair.public_key,
-                    "token_mint": mint,
-                    "vault": vault,
-                    "payer": payer_keypair.public_key,
-                    "system_program": system_program.SYS_PROGRAM_ID,
-                    "token_program": TOKEN_PROGRAM_ID
-                },
-            )
-        )
-
- -
- - - -
-
-
#   - - - async def - vault_transfer( - self, - to: solana.publickey.PublicKey, - authority: solana.keypair.Keypair, - params: switchboardpy.VaultTransferParams -): -
- -
- View Source -
    async def vault_transfer(self, to: PublicKey, authority: Keypair, params: VaultTransferParams):
-        state_pubkey, state_bump = ProgramStateAccount.from_seed(self.program)
-        state = await self.load_data()
-        vault = state.token_vault
-        await self.program.rpc["vault_transfer"](
-            {
-                "state_bump": state_bump,
-                "amount": params.amount # @FIXME - can't be a decimal, must have mantissa / scale
-            },
-            ctx=anchorpy.Context(
-                accounts={
-                    "state": state_pubkey,
-                    "to": to,
-                    "vault": vault,
-                    "authority": authority.public_key,
-                    "token_program": TOKEN_PROGRAM_ID,
-                },
-                signers=[authority]
-            )
-        )
-
- -
- - - -
-
-
-
- #   - -
@dataclass
- - class - ProgramInitParams: -
- -
- View Source -
@dataclass
-class ProgramInitParams:
-
-    """Optional token mint"""
-    mint: PublicKey = None
-
- -
- -

Optional token mint

-
- - -
-
#   - - - ProgramInitParams(mint: solana.publickey.PublicKey = None) -
- - - - -
-
-
#   - - mint: solana.publickey.PublicKey = None -
- - - - -
-
-
-
- #   - -
@dataclass
- - class - VaultTransferParams: -
- -
- View Source -
@dataclass
-class VaultTransferParams:
-
-    """Amount being transferred"""
-    amount: Decimal
-
- -
- -

Amount being transferred

-
- - -
-
#   - - - VaultTransferParams(amount: decimal.Decimal) -
- - - - -
-
-
-
- #   - -
@dataclass
- - class - SwitchboardDecimal: -
- -
- View Source -
@dataclass
-class SwitchboardDecimal:
-    mantissa: int
-    scale: int
-
-    """
-    Convert BN.js style num and return SwitchboardDecimal
-
-    Args:
-        obj (Any): Object with integer fields scale and mantissa (hex val)
-
-    Returns:
-        sbd (SwitchboardDecimal): SwitchboardDecimal
-    """
-    @staticmethod
-    def fromObj(obj: Any):
-        return SwitchboardDecimal(
-            mantissa=obj.mantissa,
-            scale=obj.scale
-        )
-    
-    def to_decimal(self, sbd: object):
-        mantissa = Decimal(sbd.mantissa)
-        scale = sbd.scale
-        return mantissa / Decimal(10 ** scale)
-
-    @staticmethod
-    def from_decimal(dec: Decimal):
-        _, digits, exponent = dec.as_tuple()
-        integer = reduce(lambda rst, x: rst * 10 + x, digits)
-        return SwitchboardDecimal(integer, exponent)
-
-    # convert any switchboard-decimal-like object to a decimal
-    @staticmethod
-    def sbd_to_decimal(sbd: object) -> Decimal:
-        mantissa = Decimal(sbd.mantissa)
-        scale = sbd.scale
-        return mantissa / Decimal(10 ** scale)
-
-    # for sending as argument in transaction
-    def as_proper_sbd(self, program: anchorpy.Program):
-        return program.type['SwitchboardDecimal'](self.mantissa, self.scale)
-
-    def __eq__(self, __o: object) -> bool:
-        if not (hasattr(__o, 'mantissa') and hasattr(__o, 'scale')):
-            return False
-        return self.mantissa == __o.mantissa and self.scale == __o.scale
-
- -
- -

SwitchboardDecimal(mantissa: int, scale: int)

-
- - -
-
#   - - - SwitchboardDecimal(mantissa: int, scale: int) -
- - - - -
-
-
#   - - scale: int -
- - -

Convert BN.js style num and return SwitchboardDecimal

- -

Args: - obj (Any): Object with integer fields scale and mantissa (hex val)

- -

Returns: - sbd (SwitchboardDecimal): SwitchboardDecimal

-
- - -
-
-
#   - -
@staticmethod
- - def - fromObj(obj: Any): -
- -
- View Source -
    @staticmethod
-    def fromObj(obj: Any):
-        return SwitchboardDecimal(
-            mantissa=obj.mantissa,
-            scale=obj.scale
-        )
-
- -
- - - -
-
-
#   - - - def - to_decimal(self, sbd: object): -
- -
- View Source -
    def to_decimal(self, sbd: object):
-        mantissa = Decimal(sbd.mantissa)
-        scale = sbd.scale
-        return mantissa / Decimal(10 ** scale)
-
- -
- - - -
-
-
#   - -
@staticmethod
- - def - from_decimal(dec: decimal.Decimal): -
- -
- View Source -
    @staticmethod
-    def from_decimal(dec: Decimal):
-        _, digits, exponent = dec.as_tuple()
-        integer = reduce(lambda rst, x: rst * 10 + x, digits)
-        return SwitchboardDecimal(integer, exponent)
-
- -
- - - -
-
-
#   - -
@staticmethod
- - def - sbd_to_decimal(sbd: object) -> decimal.Decimal: -
- -
- View Source -
    @staticmethod
-    def sbd_to_decimal(sbd: object) -> Decimal:
-        mantissa = Decimal(sbd.mantissa)
-        scale = sbd.scale
-        return mantissa / Decimal(10 ** scale)
-
- -
- - - -
-
-
#   - - - def - as_proper_sbd(self, program: anchorpy.program.core.Program): -
- -
- View Source -
    def as_proper_sbd(self, program: anchorpy.Program):
-        return program.type['SwitchboardDecimal'](self.mantissa, self.scale)
-
- -
- - - -
-
-
-
#   - - readRawVarint32 -
- - - - -
-
-
#   - - readDelimitedFrom -
- - - - -
-
- - \ No newline at end of file diff --git a/website/static/img/Activity_Aggregator_Create.png b/website/static/img/Activity_Aggregator_Create.png deleted file mode 100644 index 33051fc..0000000 Binary files a/website/static/img/Activity_Aggregator_Create.png and /dev/null differ diff --git a/website/static/img/Activity_Aggregator_History_Create.png b/website/static/img/Activity_Aggregator_History_Create.png deleted file mode 100644 index 9341804..0000000 Binary files a/website/static/img/Activity_Aggregator_History_Create.png and /dev/null differ diff --git a/website/static/img/Activity_Oracle_Create.png b/website/static/img/Activity_Oracle_Create.png deleted file mode 100644 index 842fef6..0000000 Binary files a/website/static/img/Activity_Oracle_Create.png and /dev/null differ diff --git a/website/static/img/Activity_Oracle_Heartbeat.png b/website/static/img/Activity_Oracle_Heartbeat.png deleted file mode 100644 index 2545c55..0000000 Binary files a/website/static/img/Activity_Oracle_Heartbeat.png and /dev/null differ diff --git a/website/static/img/Activity_VRF_Create.png b/website/static/img/Activity_VRF_Create.png deleted file mode 100644 index c4cafbb..0000000 Binary files a/website/static/img/Activity_VRF_Create.png and /dev/null differ diff --git a/website/static/img/Activity_VRF_Request.png b/website/static/img/Activity_VRF_Request.png deleted file mode 100644 index 97e9a6f..0000000 Binary files a/website/static/img/Activity_VRF_Request.png and /dev/null differ diff --git a/website/static/img/Data_Feed_Best_Practices.png b/website/static/img/Data_Feed_Best_Practices.png deleted file mode 100644 index ebeaca1..0000000 Binary files a/website/static/img/Data_Feed_Best_Practices.png and /dev/null differ diff --git a/website/static/img/L0_Architecture.png b/website/static/img/L0_Architecture.png deleted file mode 100644 index 516feef..0000000 Binary files a/website/static/img/L0_Architecture.png and /dev/null differ diff --git a/website/static/img/L1_L2_Queue_Functional.png b/website/static/img/L1_L2_Queue_Functional.png deleted file mode 100644 index 42fc0e8..0000000 Binary files a/website/static/img/L1_L2_Queue_Functional.png and /dev/null differ diff --git a/website/static/img/L1_L2_Queue_Functional_Updates.png b/website/static/img/L1_L2_Queue_Functional_Updates.png deleted file mode 100644 index 571b6f2..0000000 Binary files a/website/static/img/L1_L2_Queue_Functional_Updates.png and /dev/null differ diff --git a/website/static/img/L1_Queue_Functional.png b/website/static/img/L1_Queue_Functional.png deleted file mode 100644 index cab7597..0000000 Binary files a/website/static/img/L1_Queue_Functional.png and /dev/null differ diff --git a/website/static/img/L1_Queue_Logical.png b/website/static/img/L1_Queue_Logical.png deleted file mode 100644 index 5315df6..0000000 Binary files a/website/static/img/L1_Queue_Logical.png and /dev/null differ diff --git a/website/static/img/L2_Aggregator_Accounts.png b/website/static/img/L2_Aggregator_Accounts.png deleted file mode 100644 index 684f111..0000000 Binary files a/website/static/img/L2_Aggregator_Accounts.png and /dev/null differ diff --git a/website/static/img/SDK_Layout.jpg b/website/static/img/SDK_Layout.jpg deleted file mode 100644 index d407667..0000000 Binary files a/website/static/img/SDK_Layout.jpg and /dev/null differ diff --git a/website/static/img/Switchboard_Internet_Gateway.png b/website/static/img/Switchboard_Internet_Gateway.png deleted file mode 100644 index 6b780f6..0000000 Binary files a/website/static/img/Switchboard_Internet_Gateway.png and /dev/null differ diff --git a/website/static/img/Switchboard_v2_Live.png b/website/static/img/Switchboard_v2_Live.png deleted file mode 100644 index eed2363..0000000 Binary files a/website/static/img/Switchboard_v2_Live.png and /dev/null differ diff --git a/website/static/img/account_decomposition.png b/website/static/img/account_decomposition.png deleted file mode 100644 index 3f22ff5..0000000 Binary files a/website/static/img/account_decomposition.png and /dev/null differ diff --git a/website/static/img/adding_new_oracles.png b/website/static/img/adding_new_oracles.png deleted file mode 100644 index f08d566..0000000 Binary files a/website/static/img/adding_new_oracles.png and /dev/null differ diff --git a/website/static/img/data_feed_architecture.png b/website/static/img/data_feed_architecture.png deleted file mode 100644 index ea6590e..0000000 Binary files a/website/static/img/data_feed_architecture.png and /dev/null differ diff --git a/website/static/img/data_feed_creation.png b/website/static/img/data_feed_creation.png deleted file mode 100644 index 9c1f2e5..0000000 Binary files a/website/static/img/data_feed_creation.png and /dev/null differ diff --git a/website/static/img/favicon.ico b/website/static/img/favicon.ico deleted file mode 100644 index 16f131d..0000000 Binary files a/website/static/img/favicon.ico and /dev/null differ diff --git a/website/static/img/favicon.png b/website/static/img/favicon.png deleted file mode 100644 index c152287..0000000 Binary files a/website/static/img/favicon.png and /dev/null differ diff --git a/website/static/img/favicon.svg b/website/static/img/favicon.svg deleted file mode 100644 index f477e88..0000000 --- a/website/static/img/favicon.svg +++ /dev/null @@ -1,17 +0,0 @@ - - logo-icon - - - - - - - - - - - - - \ No newline at end of file diff --git a/website/static/img/feeds/Aggregator_Accounts.png b/website/static/img/feeds/Aggregator_Accounts.png deleted file mode 100644 index 684f111..0000000 Binary files a/website/static/img/feeds/Aggregator_Accounts.png and /dev/null differ diff --git a/website/static/img/gcp/Create_OAuth.png b/website/static/img/gcp/Create_OAuth.png deleted file mode 100644 index 981741f..0000000 Binary files a/website/static/img/gcp/Create_OAuth.png and /dev/null differ diff --git a/website/static/img/gcp/Credentials_Dashboard.png b/website/static/img/gcp/Credentials_Dashboard.png deleted file mode 100644 index 707ba84..0000000 Binary files a/website/static/img/gcp/Credentials_Dashboard.png and /dev/null differ diff --git a/website/static/img/gcp/K8s_Setup_Flow.png b/website/static/img/gcp/K8s_Setup_Flow.png deleted file mode 100644 index 49ff863..0000000 Binary files a/website/static/img/gcp/K8s_Setup_Flow.png and /dev/null differ diff --git a/website/static/img/gcp/OAuth_Client_Credentials.png b/website/static/img/gcp/OAuth_Client_Credentials.png deleted file mode 100644 index d0c7bba..0000000 Binary files a/website/static/img/gcp/OAuth_Client_Credentials.png and /dev/null differ diff --git a/website/static/img/gcp/arc.png b/website/static/img/gcp/arc.png deleted file mode 100644 index 038dff8..0000000 Binary files a/website/static/img/gcp/arc.png and /dev/null differ diff --git a/website/static/img/icons/arc.png b/website/static/img/icons/arc.png deleted file mode 100644 index 038dff8..0000000 Binary files a/website/static/img/icons/arc.png and /dev/null differ diff --git a/website/static/img/icons/developers.png b/website/static/img/icons/developers.png deleted file mode 100644 index 5540f30..0000000 Binary files a/website/static/img/icons/developers.png and /dev/null differ diff --git a/website/static/img/icons/docusaurus.png b/website/static/img/icons/docusaurus.png deleted file mode 100644 index f458149..0000000 Binary files a/website/static/img/icons/docusaurus.png and /dev/null differ diff --git a/website/static/img/icons/explore.png b/website/static/img/icons/explore.png deleted file mode 100644 index b44b327..0000000 Binary files a/website/static/img/icons/explore.png and /dev/null differ diff --git a/website/static/img/icons/info.png b/website/static/img/icons/info.png deleted file mode 100644 index db57569..0000000 Binary files a/website/static/img/icons/info.png and /dev/null differ diff --git a/website/static/img/icons/javascript.png b/website/static/img/icons/javascript.png deleted file mode 100644 index 4db1d15..0000000 Binary files a/website/static/img/icons/javascript.png and /dev/null differ diff --git a/website/static/img/icons/oracle.png b/website/static/img/icons/oracle.png deleted file mode 100644 index b76a078..0000000 Binary files a/website/static/img/icons/oracle.png and /dev/null differ diff --git a/website/static/img/icons/publish.svg b/website/static/img/icons/publish.svg deleted file mode 100644 index 9670923..0000000 --- a/website/static/img/icons/publish.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/website/static/img/icons/python.png b/website/static/img/icons/python.png deleted file mode 100644 index 6c12fb4..0000000 Binary files a/website/static/img/icons/python.png and /dev/null differ diff --git a/website/static/img/icons/sol.png b/website/static/img/icons/sol.png deleted file mode 100644 index f9f2db7..0000000 Binary files a/website/static/img/icons/sol.png and /dev/null differ diff --git a/website/static/img/logo-coin.svg b/website/static/img/logo-coin.svg deleted file mode 100644 index 5251be9..0000000 --- a/website/static/img/logo-coin.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - Group 4 - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/website/static/img/logo.svg b/website/static/img/logo.svg deleted file mode 100644 index 4f53b5b..0000000 --- a/website/static/img/logo.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - logo-icon - - - - - - - - - - - - - \ No newline at end of file diff --git a/website/static/img/logo_old.svg b/website/static/img/logo_old.svg deleted file mode 100644 index c0b699c..0000000 --- a/website/static/img/logo_old.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - diff --git a/website/static/img/logo_white.svg b/website/static/img/logo_white.svg deleted file mode 100644 index eec1d8a..0000000 --- a/website/static/img/logo_white.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - logo-icon - - - - - - - - - - - - - \ No newline at end of file diff --git a/website/static/img/navbar_icon.svg b/website/static/img/navbar_icon.svg deleted file mode 100644 index d477a33..0000000 --- a/website/static/img/navbar_icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/website/static/img/program/Program_State_Architecture.jpg b/website/static/img/program/Program_State_Architecture.jpg deleted file mode 100644 index 473dacc..0000000 Binary files a/website/static/img/program/Program_State_Architecture.jpg and /dev/null differ diff --git a/website/static/img/publisher/Account_Creation.png b/website/static/img/publisher/Account_Creation.png deleted file mode 100644 index 95c8913..0000000 Binary files a/website/static/img/publisher/Account_Creation.png and /dev/null differ diff --git a/website/static/img/publisher/Connect_Wallet.png b/website/static/img/publisher/Connect_Wallet.png deleted file mode 100644 index 9155d56..0000000 Binary files a/website/static/img/publisher/Connect_Wallet.png and /dev/null differ diff --git a/website/static/img/publisher/Custom_Feed_Button.png b/website/static/img/publisher/Custom_Feed_Button.png deleted file mode 100644 index 3f397f0..0000000 Binary files a/website/static/img/publisher/Custom_Feed_Button.png and /dev/null differ diff --git a/website/static/img/publisher/Custom_Feed_Modal.png b/website/static/img/publisher/Custom_Feed_Modal.png deleted file mode 100644 index 28d9984..0000000 Binary files a/website/static/img/publisher/Custom_Feed_Modal.png and /dev/null differ diff --git a/website/static/img/publisher/Custom_Job_Modal.png b/website/static/img/publisher/Custom_Job_Modal.png deleted file mode 100644 index bdeaa3a..0000000 Binary files a/website/static/img/publisher/Custom_Job_Modal.png and /dev/null differ diff --git a/website/static/img/publisher/Directory.png b/website/static/img/publisher/Directory.png deleted file mode 100644 index a202dcf..0000000 Binary files a/website/static/img/publisher/Directory.png and /dev/null differ diff --git a/website/static/img/publisher/Landing_Page.png b/website/static/img/publisher/Landing_Page.png deleted file mode 100644 index a62fa91..0000000 Binary files a/website/static/img/publisher/Landing_Page.png and /dev/null differ diff --git a/website/static/img/publisher/Lease_Contract_Modal.png b/website/static/img/publisher/Lease_Contract_Modal.png deleted file mode 100644 index 565be65..0000000 Binary files a/website/static/img/publisher/Lease_Contract_Modal.png and /dev/null differ diff --git a/website/static/img/publisher/My_Feeds.png b/website/static/img/publisher/My_Feeds.png deleted file mode 100644 index 6a43644..0000000 Binary files a/website/static/img/publisher/My_Feeds.png and /dev/null differ diff --git a/website/static/img/publisher/My_Feeds_Actions.png b/website/static/img/publisher/My_Feeds_Actions.png deleted file mode 100644 index de21a08..0000000 Binary files a/website/static/img/publisher/My_Feeds_Actions.png and /dev/null differ diff --git a/website/static/img/queue/Oracle_Queue_Accounts.jpg b/website/static/img/queue/Oracle_Queue_Accounts.jpg deleted file mode 100644 index 833f849..0000000 Binary files a/website/static/img/queue/Oracle_Queue_Accounts.jpg and /dev/null differ diff --git a/website/static/img/solana-gradient-80.svg b/website/static/img/solana-gradient-80.svg deleted file mode 100644 index 7cbfc59..0000000 --- a/website/static/img/solana-gradient-80.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/website/static/img/tutorial/docsVersionDropdown.png b/website/static/img/tutorial/docsVersionDropdown.png deleted file mode 100644 index ff1cbe6..0000000 Binary files a/website/static/img/tutorial/docsVersionDropdown.png and /dev/null differ diff --git a/website/static/img/tutorial/localeDropdown.png b/website/static/img/tutorial/localeDropdown.png deleted file mode 100644 index d7163f9..0000000 Binary files a/website/static/img/tutorial/localeDropdown.png and /dev/null differ diff --git a/website/static/img/update_request_activity.png b/website/static/img/update_request_activity.png deleted file mode 100644 index 8a0b03e..0000000 Binary files a/website/static/img/update_request_activity.png and /dev/null differ diff --git a/website/tsconfig.json b/website/tsconfig.json deleted file mode 100644 index 65bf250..0000000 --- a/website/tsconfig.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - // This file is not used in compilation. It is here just for a nice editor experience. - "extends": "@tsconfig/docusaurus/tsconfig.json", - "compilerOptions": { - "baseUrl": ".", - "esModuleInterop": true, - "sourceMap": true, - "paths": { - "@switchboard-xyz/switchboard-v2": ["../libraries/ts"] - } - }, - "include": ["src/**/*", "src/**/*.json"], - "exclude": ["static", "public", "node_modules"], - "references": [{ "path": "../libraries/ts" }], - "files": ["src/pages/index.tsx"] -} diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index 6be4253..0000000 --- a/yarn.lock +++ /dev/null @@ -1,16006 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@algolia/autocomplete-core@1.7.1": - version "1.7.1" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.7.1.tgz#025538b8a9564a9f3dd5bcf8a236d6951c76c7d1" - integrity sha512-eiZw+fxMzNQn01S8dA/hcCpoWCOCwcIIEUtHHdzN5TGB3IpzLbuhqFeTfh2OUhhgkE8Uo17+wH+QJ/wYyQmmzg== - dependencies: - "@algolia/autocomplete-shared" "1.7.1" - -"@algolia/autocomplete-preset-algolia@1.7.1": - version "1.7.1" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.7.1.tgz#7dadc5607097766478014ae2e9e1c9c4b3f957c8" - integrity sha512-pJwmIxeJCymU1M6cGujnaIYcY3QPOVYZOXhFkWVM7IxKzy272BwCvMFMyc5NpG/QmiObBxjo7myd060OeTNJXg== - dependencies: - "@algolia/autocomplete-shared" "1.7.1" - -"@algolia/autocomplete-shared@1.7.1": - version "1.7.1" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.7.1.tgz#95c3a0b4b78858fed730cf9c755b7d1cd0c82c74" - integrity sha512-eTmGVqY3GeyBTT8IWiB2K5EuURAqhnumfktAEoHxfDY2o7vg2rSnO16ZtIG0fMgt3py28Vwgq42/bVEuaQV7pg== - -"@algolia/cache-browser-local-storage@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.14.2.tgz#d5b1b90130ca87c6321de876e167df9ec6524936" - integrity sha512-FRweBkK/ywO+GKYfAWbrepewQsPTIEirhi1BdykX9mxvBPtGNKccYAxvGdDCumU1jL4r3cayio4psfzKMejBlA== - dependencies: - "@algolia/cache-common" "4.14.2" - -"@algolia/cache-common@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.14.2.tgz#b946b6103c922f0c06006fb6929163ed2c67d598" - integrity sha512-SbvAlG9VqNanCErr44q6lEKD2qoK4XtFNx9Qn8FK26ePCI8I9yU7pYB+eM/cZdS9SzQCRJBbHUumVr4bsQ4uxg== - -"@algolia/cache-in-memory@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.14.2.tgz#88e4a21474f9ac05331c2fa3ceb929684a395a24" - integrity sha512-HrOukWoop9XB/VFojPv1R5SVXowgI56T9pmezd/djh2JnVN/vXswhXV51RKy4nCpqxyHt/aGFSq2qkDvj6KiuQ== - dependencies: - "@algolia/cache-common" "4.14.2" - -"@algolia/client-account@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.14.2.tgz#b76ac1ba9ea71e8c3f77a1805b48350dc0728a16" - integrity sha512-WHtriQqGyibbb/Rx71YY43T0cXqyelEU0lB2QMBRXvD2X0iyeGl4qMxocgEIcbHyK7uqE7hKgjT8aBrHqhgc1w== - dependencies: - "@algolia/client-common" "4.14.2" - "@algolia/client-search" "4.14.2" - "@algolia/transporter" "4.14.2" - -"@algolia/client-analytics@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.14.2.tgz#ca04dcaf9a78ee5c92c5cb5e9c74cf031eb2f1fb" - integrity sha512-yBvBv2mw+HX5a+aeR0dkvUbFZsiC4FKSnfqk9rrfX+QrlNOKEhCG0tJzjiOggRW4EcNqRmaTULIYvIzQVL2KYQ== - dependencies: - "@algolia/client-common" "4.14.2" - "@algolia/client-search" "4.14.2" - "@algolia/requester-common" "4.14.2" - "@algolia/transporter" "4.14.2" - -"@algolia/client-common@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.14.2.tgz#e1324e167ffa8af60f3e8bcd122110fd0bfd1300" - integrity sha512-43o4fslNLcktgtDMVaT5XwlzsDPzlqvqesRi4MjQz2x4/Sxm7zYg5LRYFol1BIhG6EwxKvSUq8HcC/KxJu3J0Q== - dependencies: - "@algolia/requester-common" "4.14.2" - "@algolia/transporter" "4.14.2" - -"@algolia/client-personalization@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-4.14.2.tgz#656bbb6157a3dd1a4be7de65e457fda136c404ec" - integrity sha512-ACCoLi0cL8CBZ1W/2juehSltrw2iqsQBnfiu/Rbl9W2yE6o2ZUb97+sqN/jBqYNQBS+o0ekTMKNkQjHHAcEXNw== - dependencies: - "@algolia/client-common" "4.14.2" - "@algolia/requester-common" "4.14.2" - "@algolia/transporter" "4.14.2" - -"@algolia/client-search@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.14.2.tgz#357bdb7e640163f0e33bad231dfcc21f67dc2e92" - integrity sha512-L5zScdOmcZ6NGiVbLKTvP02UbxZ0njd5Vq9nJAmPFtjffUSOGEp11BmD2oMJ5QvARgx2XbX4KzTTNS5ECYIMWw== - dependencies: - "@algolia/client-common" "4.14.2" - "@algolia/requester-common" "4.14.2" - "@algolia/transporter" "4.14.2" - -"@algolia/events@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@algolia/events/-/events-4.0.1.tgz#fd39e7477e7bc703d7f893b556f676c032af3950" - integrity sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ== - -"@algolia/logger-common@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.14.2.tgz#b74b3a92431f92665519d95942c246793ec390ee" - integrity sha512-/JGlYvdV++IcMHBnVFsqEisTiOeEr6cUJtpjz8zc0A9c31JrtLm318Njc72p14Pnkw3A/5lHHh+QxpJ6WFTmsA== - -"@algolia/logger-console@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.14.2.tgz#ec49cb47408f5811d4792598683923a800abce7b" - integrity sha512-8S2PlpdshbkwlLCSAB5f8c91xyc84VM9Ar9EdfE9UmX+NrKNYnWR1maXXVDQQoto07G1Ol/tYFnFVhUZq0xV/g== - dependencies: - "@algolia/logger-common" "4.14.2" - -"@algolia/requester-browser-xhr@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.14.2.tgz#a2cd4d9d8d90d53109cc7f3682dc6ebf20f798f2" - integrity sha512-CEh//xYz/WfxHFh7pcMjQNWgpl4wFB85lUMRyVwaDPibNzQRVcV33YS+63fShFWc2+42YEipFGH2iPzlpszmDw== - dependencies: - "@algolia/requester-common" "4.14.2" - -"@algolia/requester-common@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.14.2.tgz#bc4e9e5ee16c953c0ecacbfb334a33c30c28b1a1" - integrity sha512-73YQsBOKa5fvVV3My7iZHu1sUqmjjfs9TteFWwPwDmnad7T0VTCopttcsM3OjLxZFtBnX61Xxl2T2gmG2O4ehg== - -"@algolia/requester-node-http@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.14.2.tgz#7c1223a1785decaab1def64c83dade6bea45e115" - integrity sha512-oDbb02kd1o5GTEld4pETlPZLY0e+gOSWjWMJHWTgDXbv9rm/o2cF7japO6Vj1ENnrqWvLBmW1OzV9g6FUFhFXg== - dependencies: - "@algolia/requester-common" "4.14.2" - -"@algolia/transporter@4.14.2": - version "4.14.2" - resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.14.2.tgz#77c069047fb1a4359ee6a51f51829508e44a1e3d" - integrity sha512-t89dfQb2T9MFQHidjHcfhh6iGMNwvuKUvojAj+JsrHAGbuSy7yE4BylhLX6R0Q1xYRoC4Vvv+O5qIw/LdnQfsQ== - dependencies: - "@algolia/cache-common" "4.14.2" - "@algolia/logger-common" "4.14.2" - "@algolia/requester-common" "4.14.2" - -"@ampproject/remapping@^2.1.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" - integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== - dependencies: - "@jridgewell/gen-mapping" "^0.1.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@babel/code-frame@7.12.11": - version "7.12.11" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" - integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== - dependencies: - "@babel/highlight" "^7.10.4" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.8.3": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" - integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== - dependencies: - "@babel/highlight" "^7.18.6" - -"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.18.8": - version "7.18.8" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.8.tgz#2483f565faca607b8535590e84e7de323f27764d" - integrity sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ== - -"@babel/core@7.12.9": - version "7.12.9" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8" - integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.5" - "@babel/helper-module-transforms" "^7.12.1" - "@babel/helpers" "^7.12.5" - "@babel/parser" "^7.12.7" - "@babel/template" "^7.12.7" - "@babel/traverse" "^7.12.9" - "@babel/types" "^7.12.7" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.1" - json5 "^2.1.2" - lodash "^4.17.19" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - -"@babel/core@^7.12.16", "@babel/core@^7.12.3", "@babel/core@^7.17.8", "@babel/core@^7.18.5": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.9.tgz#805461f967c77ff46c74ca0460ccf4fe933ddd59" - integrity sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g== - dependencies: - "@ampproject/remapping" "^2.1.0" - "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.18.9" - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-module-transforms" "^7.18.9" - "@babel/helpers" "^7.18.9" - "@babel/parser" "^7.18.9" - "@babel/template" "^7.18.6" - "@babel/traverse" "^7.18.9" - "@babel/types" "^7.18.9" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.1" - semver "^6.3.0" - -"@babel/eslint-parser@^7.12.16": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz#255a63796819a97b7578751bb08ab9f2a375a031" - integrity sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ== - dependencies: - eslint-scope "^5.1.1" - eslint-visitor-keys "^2.1.0" - semver "^6.3.0" - -"@babel/generator@^7.12.5", "@babel/generator@^7.17.7", "@babel/generator@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.9.tgz#68337e9ea8044d6ddc690fb29acae39359cca0a5" - integrity sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug== - dependencies: - "@babel/types" "^7.18.9" - "@jridgewell/gen-mapping" "^0.3.2" - jsesc "^2.5.1" - -"@babel/helper-annotate-as-pure@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" - integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb" - integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw== - dependencies: - "@babel/helper-explode-assignable-expression" "^7.18.6" - "@babel/types" "^7.18.9" - -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz#69e64f57b524cde3e5ff6cc5a9f4a387ee5563bf" - integrity sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg== - dependencies: - "@babel/compat-data" "^7.18.8" - "@babel/helper-validator-option" "^7.18.6" - browserslist "^4.20.2" - semver "^6.3.0" - -"@babel/helper-create-class-features-plugin@^7.18.6": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz#d802ee16a64a9e824fcbf0a2ffc92f19d58550ce" - integrity sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-member-expression-to-functions" "^7.18.9" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-replace-supers" "^7.18.9" - "@babel/helper-split-export-declaration" "^7.18.6" - -"@babel/helper-create-regexp-features-plugin@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz#3e35f4e04acbbf25f1b3534a657610a000543d3c" - integrity sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - regexpu-core "^5.1.0" - -"@babel/helper-define-polyfill-provider@^0.3.1", "@babel/helper-define-polyfill-provider@^0.3.2": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.2.tgz#bd10d0aca18e8ce012755395b05a79f45eca5073" - integrity sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg== - dependencies: - "@babel/helper-compilation-targets" "^7.17.7" - "@babel/helper-plugin-utils" "^7.16.7" - debug "^4.1.1" - lodash.debounce "^4.0.8" - resolve "^1.14.2" - semver "^6.1.2" - -"@babel/helper-environment-visitor@^7.18.6", "@babel/helper-environment-visitor@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" - integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== - -"@babel/helper-explode-assignable-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096" - integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-function-name@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz#940e6084a55dee867d33b4e487da2676365e86b0" - integrity sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A== - dependencies: - "@babel/template" "^7.18.6" - "@babel/types" "^7.18.9" - -"@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-member-expression-to-functions@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815" - integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg== - dependencies: - "@babel/types" "^7.18.9" - -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" - integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz#5a1079c005135ed627442df31a42887e80fcb712" - integrity sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-simple-access" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.18.6" - "@babel/template" "^7.18.6" - "@babel/traverse" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helper-optimise-call-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" - integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-plugin-utils@7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" - integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz#4b8aea3b069d8cb8a72cdfe28ddf5ceca695ef2f" - integrity sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w== - -"@babel/helper-remap-async-to-generator@^7.18.6": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" - integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-wrap-function" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz#1092e002feca980fbbb0bd4d51b74a65c6a500e6" - integrity sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-member-expression-to-functions" "^7.18.9" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/traverse" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helper-simple-access@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea" - integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-skip-transparent-expression-wrappers@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz#778d87b3a758d90b471e7b9918f34a9a02eb5818" - integrity sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw== - dependencies: - "@babel/types" "^7.18.9" - -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076" - integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g== - -"@babel/helper-validator-option@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" - integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== - -"@babel/helper-wrap-function@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.18.9.tgz#ae1feddc6ebbaa2fd79346b77821c3bd73a39646" - integrity sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ== - dependencies: - "@babel/helper-function-name" "^7.18.9" - "@babel/template" "^7.18.6" - "@babel/traverse" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helpers@^7.12.5", "@babel/helpers@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.9.tgz#4bef3b893f253a1eced04516824ede94dcfe7ff9" - integrity sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ== - dependencies: - "@babel/template" "^7.18.6" - "@babel/traverse" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.12.7", "@babel/parser@^7.17.8", "@babel/parser@^7.18.6", "@babel/parser@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.9.tgz#f2dde0c682ccc264a9a8595efd030a5cc8fd2539" - integrity sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg== - -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" - integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz#a11af19aa373d68d561f08e0a57242350ed0ec50" - integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" - "@babel/plugin-proposal-optional-chaining" "^7.18.9" - -"@babel/plugin-proposal-async-generator-functions@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.6.tgz#aedac81e6fc12bb643374656dd5f2605bf743d17" - integrity sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w== - dependencies: - "@babel/helper-environment-visitor" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-remap-async-to-generator" "^7.18.6" - "@babel/plugin-syntax-async-generators" "^7.8.4" - -"@babel/plugin-proposal-class-properties@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" - integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-proposal-class-static-block@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz#8aa81d403ab72d3962fc06c26e222dacfc9b9020" - integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-proposal-dynamic-import@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94" - integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - -"@babel/plugin-proposal-export-namespace-from@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203" - integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-proposal-json-strings@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b" - integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-proposal-logical-assignment-operators@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23" - integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" - integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - -"@babel/plugin-proposal-numeric-separator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" - integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-proposal-object-rest-spread@7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069" - integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" - "@babel/plugin-transform-parameters" "^7.12.1" - -"@babel/plugin-proposal-object-rest-spread@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz#f9434f6beb2c8cae9dfcf97d2a5941bbbf9ad4e7" - integrity sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q== - dependencies: - "@babel/compat-data" "^7.18.8" - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.18.8" - -"@babel/plugin-proposal-optional-catch-binding@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" - integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - -"@babel/plugin-proposal-optional-chaining@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993" - integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-proposal-private-methods@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" - integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-proposal-private-property-in-object@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz#a64137b232f0aca3733a67eb1a144c192389c503" - integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - -"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" - integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.12.13": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-class-static-block@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" - integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-dynamic-import@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" - integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-export-namespace-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" - integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-import-assertions@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz#cd6190500a4fa2fe31990a963ffab4b63e4505e4" - integrity sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-jsx@7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926" - integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-jsx@^7.17.12", "@babel/plugin-syntax-jsx@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0" - integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@7.8.3", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-private-property-in-object@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" - integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-top-level-await@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-typescript@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz#1c09cd25795c7c2b8a4ba9ae49394576d4133285" - integrity sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-arrow-functions@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz#19063fcf8771ec7b31d742339dac62433d0611fe" - integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-async-to-generator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615" - integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag== - dependencies: - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-remap-async-to-generator" "^7.18.6" - -"@babel/plugin-transform-block-scoped-functions@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8" - integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-block-scoping@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz#f9b7e018ac3f373c81452d6ada8bd5a18928926d" - integrity sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-classes@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz#90818efc5b9746879b869d5ce83eb2aa48bbc3da" - integrity sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-replace-supers" "^7.18.9" - "@babel/helper-split-export-declaration" "^7.18.6" - globals "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz#2357a8224d402dad623caf6259b611e56aec746e" - integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-destructuring@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.9.tgz#68906549c021cb231bee1db21d3b5b095f8ee292" - integrity sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8" - integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-duplicate-keys@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e" - integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-exponentiation-operator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd" - integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-for-of@^7.18.8": - version "7.18.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1" - integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-function-name@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0" - integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== - dependencies: - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-literals@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc" - integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-member-expression-literals@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e" - integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-modules-amd@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz#8c91f8c5115d2202f277549848874027d7172d21" - integrity sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg== - dependencies: - "@babel/helper-module-transforms" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-commonjs@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz#afd243afba166cca69892e24a8fd8c9f2ca87883" - integrity sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q== - dependencies: - "@babel/helper-module-transforms" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-simple-access" "^7.18.6" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-systemjs@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz#545df284a7ac6a05125e3e405e536c5853099a06" - integrity sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A== - dependencies: - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-module-transforms" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-validator-identifier" "^7.18.6" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-umd@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9" - integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== - dependencies: - "@babel/helper-module-transforms" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.18.6.tgz#c89bfbc7cc6805d692f3a49bc5fc1b630007246d" - integrity sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-new-target@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8" - integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-object-super@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c" - integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-replace-supers" "^7.18.6" - -"@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.18.8": - version "7.18.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz#ee9f1a0ce6d78af58d0956a9378ea3427cccb48a" - integrity sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-property-literals@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3" - integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-react-constant-elements@^7.12.1", "@babel/plugin-transform-react-constant-elements@^7.17.12": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.18.9.tgz#ff6aeedd38f57ba6b41dcf824fcc8bcedb3e783f" - integrity sha512-IrTYh1I3YCEL1trjknnlLKTp5JggjzhKl/d3ibzPc97JhpFcDTr38Jdek/oX4cFbS6By0bXJcOkpRvJ5ZHK2wQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-react-display-name@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz#8b1125f919ef36ebdfff061d664e266c666b9415" - integrity sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-react-jsx-development@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz#dbe5c972811e49c7405b630e4d0d2e1380c0ddc5" - integrity sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA== - dependencies: - "@babel/plugin-transform-react-jsx" "^7.18.6" - -"@babel/plugin-transform-react-jsx@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.6.tgz#2721e96d31df96e3b7ad48ff446995d26bc028ff" - integrity sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-jsx" "^7.18.6" - "@babel/types" "^7.18.6" - -"@babel/plugin-transform-react-pure-annotations@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz#561af267f19f3e5d59291f9950fd7b9663d0d844" - integrity sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-regenerator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz#585c66cb84d4b4bf72519a34cfce761b8676ca73" - integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - regenerator-transform "^0.15.0" - -"@babel/plugin-transform-reserved-words@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a" - integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-runtime@^7.17.0": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz#d9e4b1b25719307bfafbf43065ed7fb3a83adb8f" - integrity sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg== - dependencies: - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.9" - babel-plugin-polyfill-corejs2 "^0.3.1" - babel-plugin-polyfill-corejs3 "^0.5.2" - babel-plugin-polyfill-regenerator "^0.3.1" - semver "^6.3.0" - -"@babel/plugin-transform-shorthand-properties@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9" - integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-spread@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz#6ea7a6297740f381c540ac56caf75b05b74fb664" - integrity sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" - -"@babel/plugin-transform-sticky-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc" - integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-template-literals@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e" - integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-typeof-symbol@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0" - integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-typescript@^7.18.6": - version "7.18.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.8.tgz#303feb7a920e650f2213ef37b36bbf327e6fa5a0" - integrity sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-typescript" "^7.18.6" - -"@babel/plugin-transform-unicode-escapes@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.6.tgz#0d01fb7fb2243ae1c033f65f6e3b4be78db75f27" - integrity sha512-XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-unicode-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca" - integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/preset-env@^7.12.1", "@babel/preset-env@^7.16.11", "@babel/preset-env@^7.18.2": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.18.9.tgz#9b3425140d724fbe590322017466580844c7eaff" - integrity sha512-75pt/q95cMIHWssYtyfjVlvI+QEZQThQbKvR9xH+F/Agtw/s4Wfc2V9Bwd/P39VtixB7oWxGdH4GteTTwYJWMg== - dependencies: - "@babel/compat-data" "^7.18.8" - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-validator-option" "^7.18.6" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9" - "@babel/plugin-proposal-async-generator-functions" "^7.18.6" - "@babel/plugin-proposal-class-properties" "^7.18.6" - "@babel/plugin-proposal-class-static-block" "^7.18.6" - "@babel/plugin-proposal-dynamic-import" "^7.18.6" - "@babel/plugin-proposal-export-namespace-from" "^7.18.9" - "@babel/plugin-proposal-json-strings" "^7.18.6" - "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" - "@babel/plugin-proposal-numeric-separator" "^7.18.6" - "@babel/plugin-proposal-object-rest-spread" "^7.18.9" - "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" - "@babel/plugin-proposal-optional-chaining" "^7.18.9" - "@babel/plugin-proposal-private-methods" "^7.18.6" - "@babel/plugin-proposal-private-property-in-object" "^7.18.6" - "@babel/plugin-proposal-unicode-property-regex" "^7.18.6" - "@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.18.6" - "@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-transform-arrow-functions" "^7.18.6" - "@babel/plugin-transform-async-to-generator" "^7.18.6" - "@babel/plugin-transform-block-scoped-functions" "^7.18.6" - "@babel/plugin-transform-block-scoping" "^7.18.9" - "@babel/plugin-transform-classes" "^7.18.9" - "@babel/plugin-transform-computed-properties" "^7.18.9" - "@babel/plugin-transform-destructuring" "^7.18.9" - "@babel/plugin-transform-dotall-regex" "^7.18.6" - "@babel/plugin-transform-duplicate-keys" "^7.18.9" - "@babel/plugin-transform-exponentiation-operator" "^7.18.6" - "@babel/plugin-transform-for-of" "^7.18.8" - "@babel/plugin-transform-function-name" "^7.18.9" - "@babel/plugin-transform-literals" "^7.18.9" - "@babel/plugin-transform-member-expression-literals" "^7.18.6" - "@babel/plugin-transform-modules-amd" "^7.18.6" - "@babel/plugin-transform-modules-commonjs" "^7.18.6" - "@babel/plugin-transform-modules-systemjs" "^7.18.9" - "@babel/plugin-transform-modules-umd" "^7.18.6" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.18.6" - "@babel/plugin-transform-new-target" "^7.18.6" - "@babel/plugin-transform-object-super" "^7.18.6" - "@babel/plugin-transform-parameters" "^7.18.8" - "@babel/plugin-transform-property-literals" "^7.18.6" - "@babel/plugin-transform-regenerator" "^7.18.6" - "@babel/plugin-transform-reserved-words" "^7.18.6" - "@babel/plugin-transform-shorthand-properties" "^7.18.6" - "@babel/plugin-transform-spread" "^7.18.9" - "@babel/plugin-transform-sticky-regex" "^7.18.6" - "@babel/plugin-transform-template-literals" "^7.18.9" - "@babel/plugin-transform-typeof-symbol" "^7.18.9" - "@babel/plugin-transform-unicode-escapes" "^7.18.6" - "@babel/plugin-transform-unicode-regex" "^7.18.6" - "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.18.9" - babel-plugin-polyfill-corejs2 "^0.3.1" - babel-plugin-polyfill-corejs3 "^0.5.2" - babel-plugin-polyfill-regenerator "^0.3.1" - core-js-compat "^3.22.1" - semver "^6.3.0" - -"@babel/preset-modules@^0.1.5": - version "0.1.5" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" - integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" - "@babel/types" "^7.4.4" - esutils "^2.0.2" - -"@babel/preset-react@^7.12.5", "@babel/preset-react@^7.16.7", "@babel/preset-react@^7.17.12": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.18.6.tgz#979f76d6277048dc19094c217b507f3ad517dd2d" - integrity sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-validator-option" "^7.18.6" - "@babel/plugin-transform-react-display-name" "^7.18.6" - "@babel/plugin-transform-react-jsx" "^7.18.6" - "@babel/plugin-transform-react-jsx-development" "^7.18.6" - "@babel/plugin-transform-react-pure-annotations" "^7.18.6" - -"@babel/preset-typescript@^7.16.7", "@babel/preset-typescript@^7.17.12": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz#ce64be3e63eddc44240c6358daefac17b3186399" - integrity sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-validator-option" "^7.18.6" - "@babel/plugin-transform-typescript" "^7.18.6" - -"@babel/runtime-corejs3@^7.17.8": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz#7bacecd1cb2dd694eacd32a91fcf7021c20770ae" - integrity sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A== - dependencies: - core-js-pure "^3.20.2" - regenerator-runtime "^0.13.4" - -"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.10.5", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.17.2", "@babel/runtime@^7.17.8", "@babel/runtime@^7.18.3", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.9.tgz#b4fcfce55db3d2e5e080d2490f608a3b9f407f4a" - integrity sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/template@^7.12.7", "@babel/template@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.6.tgz#1283f4993e00b929d6e2d3c72fdc9168a2977a31" - integrity sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.18.6" - "@babel/types" "^7.18.6" - -"@babel/traverse@^7.12.9", "@babel/traverse@^7.17.3", "@babel/traverse@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.9.tgz#deeff3e8f1bad9786874cb2feda7a2d77a904f98" - integrity sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.18.9" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.18.9" - "@babel/types" "^7.18.9" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.12.6", "@babel/types@^7.12.7", "@babel/types@^7.18.4", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.4.4": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.9.tgz#7148d64ba133d8d73a41b3172ac4b83a1452205f" - integrity sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg== - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - to-fast-properties "^2.0.0" - -"@colors/colors@1.5.0": - version "1.5.0" - resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" - integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== - -"@cspell/cspell-bundled-dicts@^5.21.2": - version "5.21.2" - resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.2.tgz#2254c392e2a617b5ffe591a438840028fe8dc4b8" - integrity sha512-Y5TU6wV/H+RV1VOB32MowiKofBsEZId4x4ReWCyw4KUtJegeljajCfhHwiQaZuvA69E13cJnOMDwi9qozj4kjw== - dependencies: - "@cspell/dict-ada" "^2.0.0" - "@cspell/dict-aws" "^2.0.0" - "@cspell/dict-bash" "^2.0.2" - "@cspell/dict-companies" "^2.0.4" - "@cspell/dict-cpp" "^3.1.0" - "@cspell/dict-cryptocurrencies" "^2.0.0" - "@cspell/dict-csharp" "^3.0.1" - "@cspell/dict-css" "^2.0.0" - "@cspell/dict-dart" "^1.1.0" - "@cspell/dict-django" "^2.0.0" - "@cspell/dict-dotnet" "^2.0.1" - "@cspell/dict-elixir" "^2.0.1" - "@cspell/dict-en-gb" "^1.1.33" - "@cspell/dict-en_us" "^2.2.5" - "@cspell/dict-filetypes" "^2.0.1" - "@cspell/dict-fonts" "^2.0.0" - "@cspell/dict-fullstack" "^2.0.5" - "@cspell/dict-git" "^1.0.1" - "@cspell/dict-golang" "^3.0.1" - "@cspell/dict-haskell" "^2.0.0" - "@cspell/dict-html" "^3.0.1" - "@cspell/dict-html-symbol-entities" "^3.0.0" - "@cspell/dict-java" "^2.0.0" - "@cspell/dict-latex" "^2.0.3" - "@cspell/dict-lorem-ipsum" "^2.0.0" - "@cspell/dict-lua" "^2.0.0" - "@cspell/dict-node" "^2.0.1" - "@cspell/dict-npm" "^2.0.3" - "@cspell/dict-php" "^2.0.0" - "@cspell/dict-powershell" "^2.0.0" - "@cspell/dict-public-licenses" "^1.0.4" - "@cspell/dict-python" "^3.0.5" - "@cspell/dict-r" "^1.0.2" - "@cspell/dict-ruby" "^2.0.1" - "@cspell/dict-rust" "^2.0.0" - "@cspell/dict-scala" "^2.0.0" - "@cspell/dict-software-terms" "^2.1.7" - "@cspell/dict-swift" "^1.0.2" - "@cspell/dict-typescript" "^2.0.0" - "@cspell/dict-vue" "^2.0.2" - -"@cspell/cspell-pipe@^5.21.2": - version "5.21.2" - resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-5.21.2.tgz#7adfbc66426ee28549fd72a39deec7b98a76b320" - integrity sha512-MN1SXeqqurWYNknbUMPHRFyTvURbO53/1Aw3zEoCeVUSiGbD5rrb1N+t0YDbOphWrkkrJAZk82/2ZBJ2USE/vg== - -"@cspell/cspell-types@^5.21.2": - version "5.21.2" - resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-5.21.2.tgz#899b4c41b59ca6e0b81c12f1973fda63535e6f3e" - integrity sha512-g2h4qNR6C53IcSM3KR0DZ9gsqp+2FyKD371htJOmSJGmWb4s45QY0hsPr12A2J8/bT+E3uMtHn9KxJeQ7t0SzA== - -"@cspell/dict-ada@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-ada/-/dict-ada-2.0.1.tgz#662e1f459531298e7c3f1ff7e63fd36c2b311d5b" - integrity sha512-vopTJ1oHrrFYV5GU55Sr+AzItR78Uj5YbCaspYABmYKlq4NRrcUAUsr4bWgymDcspMIHO7e7IFcj48OKs1fndA== - -"@cspell/dict-aws@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-aws/-/dict-aws-2.0.0.tgz#9af72af4e59e96029dd4335271d87784843cb7dd" - integrity sha512-NKz7pDZ7pwj/b33i3f4WLpC1rOOUMmENwYgftxU+giU2YBeKM2wZbMTSEIzsrel56r0UlQYmdIVlP/B4nnVaoQ== - -"@cspell/dict-bash@^2.0.2": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@cspell/dict-bash/-/dict-bash-2.0.4.tgz#93f0ff159d96b8823fed9282f803e4f3447af33d" - integrity sha512-uK/ehmp5LYrmRH2Gv3nbvdPswpkybJUn34WYKLpeuYHQktmi+pOI1A9uPdBPnSbMDffSvwQlQohIyKawz+X8Ag== - -"@cspell/dict-companies@^2.0.4": - version "2.0.9" - resolved "https://registry.yarnpkg.com/@cspell/dict-companies/-/dict-companies-2.0.9.tgz#bec117997a8a7a82a18f87b3a63ca4e1c7ae2bd5" - integrity sha512-4YHVjHnTsYv+el/H35AXzS8+YDAX4BNiIC9ZqK9c927e8HhxX8p9RtkerT2sFFJH2xDzqMArWC4LP5wkbl3ROw== - -"@cspell/dict-cpp@^3.1.0": - version "3.2.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-cpp/-/dict-cpp-3.2.1.tgz#2c8c232c53c22c69b73802a26480203e1d9b6fbf" - integrity sha512-XcmzrKIghqFfrYLLaHtWKOp9rupiuGdc5ODONk+emsq0W5CIc3Abn27IQHwUzxzF+Cm5IfKAIJ5Kpe6hkzm0HQ== - -"@cspell/dict-cryptocurrencies@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-2.0.0.tgz#a74eecb42a46a96d08b6613fdb5c554529d3afff" - integrity sha512-nREysmmfOp7L2YCRAUufQahwD5/Punzb5AZ6eyg4zUamdRWHgBFphb5/9h2flt1vgdUfhc6hZcML21Ci7iXjaA== - -"@cspell/dict-csharp@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-csharp/-/dict-csharp-3.0.1.tgz#94a673e02bb7cc03c25bc699bc1b5bd786c2c5fd" - integrity sha512-xkfQu03F388w4sdVQSSjrVMkxAxpTYB2yW7nw0XYtTjl3L/jBgvTr/j1BTjdFbQhdNf10Lg0Ak1kXOjmHodVqA== - -"@cspell/dict-css@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-css/-/dict-css-2.0.0.tgz#91dca013f16b51144eaea160e144b830f2dad027" - integrity sha512-MrFyswFHnPh4H0u6IlV4eHy+ZCUrrHzeL161LyTOqCvaKpbZavMgNYXzZqTF9xafO0iLgwKrl+Gkclu1KVBg0Q== - -"@cspell/dict-dart@^1.1.0": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-dart/-/dict-dart-1.1.1.tgz#d4da9cf72e5df369b6d9ebe588f9c1474adf3556" - integrity sha512-XBOCpezXrgFN18kGEwqMpTUGZdw4BjCoJrNOo6qBdcdZySCrEHLwELraLOkcSba2kM4stmTp0t59FkwtP8TKOA== - -"@cspell/dict-django@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-django/-/dict-django-2.0.0.tgz#a5f5f693a686e5873f9dfb547ee3b3142ef760b1" - integrity sha512-GkJdJv6cmzrKcmq2/oxTXjKF5uv71r4eTqnFmgPbNBW1t+G4VYpzOf0QrVQrhx2RC4DdW5XfcTf+iS0FxHOTmw== - -"@cspell/dict-dotnet@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-dotnet/-/dict-dotnet-2.0.1.tgz#8ef56df758b63f0a2ba4d8681a427a6861ed34d5" - integrity sha512-b1n4crJRW0WZVf9Gp/52j/tDtjYiZ3N81fIyfqPlBrjsh/5AivfA697DYwQ2mr8ngNX7RsqRtYNQjealA1rEnQ== - -"@cspell/dict-elixir@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-elixir/-/dict-elixir-2.0.1.tgz#1a9b422215b5edabb84568cfa5c0c70bc164a2ce" - integrity sha512-eTTTxZt1FqGkM780yFDxsGHvTbWqvlK8YISSccK8FyrB6ULW+uflQlNS5AnWg3uWKC48b7pQott+odYCsPJ+Ow== - -"@cspell/dict-en-gb@^1.1.33": - version "1.1.33" - resolved "https://registry.yarnpkg.com/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz#7f1fd90fc364a5cb77111b5438fc9fcf9cc6da0e" - integrity sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g== - -"@cspell/dict-en_us@^2.2.5": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-en_us/-/dict-en_us-2.3.0.tgz#d2c186676ab3a43f38d759324434127ee63f25da" - integrity sha512-wEGqVZ4uXxq9/mTemgN9B2MIqlcaLGPnvCBdqT5vPWxqxJjkGJmCkRCx9DYHHp2Cfd+VHc9zW6Xad59kORBS9g== - -"@cspell/dict-filetypes@^2.0.1": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-filetypes/-/dict-filetypes-2.1.1.tgz#f778ad814ff6d7050f81bbd7c856b6f555ba6bae" - integrity sha512-Oo0/mUbFHzsaATqRLdkV1RMoYns3aGzeKFIpVJg415GYtJ8EABXtEArYTXeMwlboyGTPvEk+PR2hBSTSfQTqmg== - -"@cspell/dict-fonts@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-fonts/-/dict-fonts-2.0.1.tgz#16a99591fef8ba616d09db8973494e9d9ecdd3c9" - integrity sha512-UX9evXp7IPZ55G1NxVLADoRgGa+6MPSFx4zWveT6vHIVI9k50yZZY2QkIgQIOEPgk8RNrNe1Tf6HLfndgFL2kQ== - -"@cspell/dict-fullstack@^2.0.5": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@cspell/dict-fullstack/-/dict-fullstack-2.0.6.tgz#0bec93306cba070ed6aa0b619d8080c86310ab5d" - integrity sha512-R2E2xvbHvvRwwurxfpBJDRIJjXBMfEPF5WNV3LTOEMRqkZtoYCeJK9aqc8LHlmJMtAbnN1cx//BCDIyTJ0rO0A== - -"@cspell/dict-git@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-git/-/dict-git-1.0.1.tgz#9de5ab2532abcdc8b10bd83ccb1f5e5dae0b6067" - integrity sha512-Rk+eTof/9inF11lvxmkCRK+gODatA3qai8kSASv6OG/JfPvpj7fTHErx/rdgPw/LOTDUafnoTjTYmj7B2MOQXg== - -"@cspell/dict-golang@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-golang/-/dict-golang-3.0.1.tgz#acde95eb340c4512d132586a8326b1b3d971c0f7" - integrity sha512-0KNfXTbxHW2l8iVjxeOf+KFv9Qrw3z5cyKnkuYJWlBTSB5KcUBfeKCb4fsds26VdANqiy6U91b4gDx5kNEmBjQ== - -"@cspell/dict-haskell@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-haskell/-/dict-haskell-2.0.1.tgz#941aa5eed0eb5e327e1a2b04dcad4f0e60f663c0" - integrity sha512-ooA23qIG7InOOxlLm67CNH5O2J85QsPHEAzEU9KEqVfYG5ovFs5tx6n9pHekDVk3MpQULpqfNUYDR0KigPLg5g== - -"@cspell/dict-html-symbol-entities@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-3.0.0.tgz#55d5d96c37ecbde00492c4238e229908eea9cedb" - integrity sha512-04K7cPTcbYXmHICfiob4gZA1yaj4hpfM+Nl5WIJ1EAZsSGHdqmGEF28GuCjyQ8ZeKiJAsPt/vXuLBbjxkHqZyQ== - -"@cspell/dict-html@^3.0.1": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@cspell/dict-html/-/dict-html-3.0.2.tgz#acd0a06a9adcbff85d1ed6044c0636fb5294b078" - integrity sha512-ugMVQHZTvpYA/w8/E2dbSx2hdfFU9y91Omx40VUC6cNyF7jx00VKueK6gcRF3QZoB1PUhjla2YzxqRxuXI908A== - -"@cspell/dict-java@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-java/-/dict-java-2.0.0.tgz#76252cee8f04e099ac6dae0f45f22257088060a7" - integrity sha512-9f5LDATlAiXRGqxLxgqbOLlQxuMW2zcN7tBgxwtN+4u90vM03ZUOR/gKIuDV/y0ZuAiWBIjA73cjk8DJ13Q1eA== - -"@cspell/dict-latex@^2.0.3": - version "2.0.9" - resolved "https://registry.yarnpkg.com/@cspell/dict-latex/-/dict-latex-2.0.9.tgz#ba376b2ae8c4b9fad14e8ed293df027a8b08348f" - integrity sha512-d1kTK6dJb5z6UcfASQWjqQlsjZvnoVOvMWxYtLpGksYf6gM4IgqoPVNMLYYK6xBS4T/uAnLIj975A6YuAeyZpg== - -"@cspell/dict-lorem-ipsum@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-2.0.0.tgz#47f2a9ec24808cdf8417457ae8f5a588f33c338c" - integrity sha512-jKogAKtqvgPMleL6usyj3rZ0m8sVUR6drrD+wMnWSfdx1BmUyTsYiuh/mPEfLAebaYHELWSLQG3rDZRvV9Riqg== - -"@cspell/dict-lua@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-lua/-/dict-lua-2.0.0.tgz#b96d0363a28ac7e0483ad03edb21705c4f951459" - integrity sha512-7WUEBEspSKtsq104WdIys1+DLqAxpJPzw74Py1TuE3fI5GvlzeSZkRFP2ya54GB2lCO4C3mq4M8EnitpibVDfw== - -"@cspell/dict-node@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-node/-/dict-node-2.0.1.tgz#eda891ebdbce83f20829cb6c85cd209da8cf5cdd" - integrity sha512-ztBWzhvI+YaMehICSJ65cohhjQqoztxf9vrS3YckOiVGBFvUMaFVNdX9klQkvrLcS/O4+2PzoGeIEkmf99amLA== - -"@cspell/dict-npm@^2.0.3": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@cspell/dict-npm/-/dict-npm-2.0.5.tgz#d5b77025fcb46db843091e002409faffcfccade0" - integrity sha512-KuPL5fKaqyG9ACrrinNt84FhVdh23VRtxDLO8MtGUdStca9tjfjPdmP2YF/5VkEKmpKYkfFKVcBUk9RgVkx5bw== - -"@cspell/dict-php@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-php/-/dict-php-2.0.0.tgz#5d42f7df7c1da89fe19c2ccfe1bf61231d183990" - integrity sha512-29WgU77eTO985LvMHwPi1pcpfopfCWfTdffDyqya0JIfOSaFUrlYKzGPkE4mRxcz2G3hXsaM0SRvBNdIRwEdUg== - -"@cspell/dict-powershell@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-powershell/-/dict-powershell-2.0.0.tgz#6e8ae7381b1928dfaf8f5a625f8fae6e8d93f224" - integrity sha512-6uvEhLiGmG3u9TFkM1TYcky6aL9Yk7Sk3KJwoTYBaQJY2KqrprgyQtW6yxIw9oU52VRHlq3KKvSAA9Q26+SIkQ== - -"@cspell/dict-public-licenses@^1.0.4": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@cspell/dict-public-licenses/-/dict-public-licenses-1.0.5.tgz#b4eeb08107b83966913689fcb09f495da249233d" - integrity sha512-N9bttzzhmCq/BN/TeP43075kj9TeaR8l9v0SPre05BRWsChVrWuMM1UvsT4ADXnsYJNl1xcn+q191S/fIzQhBg== - -"@cspell/dict-python@^3.0.5": - version "3.0.6" - resolved "https://registry.yarnpkg.com/@cspell/dict-python/-/dict-python-3.0.6.tgz#884f398e053a5d500adc9de47d1f1049a7afcc9c" - integrity sha512-tzxJ4sd9ZGhAUKg/WJJpQGDNtoHvM8Wn+iS2+PnQj2/LTHBW4mnaCogsGsBtYu8C4b2+BEQs+tc5808AeEfLug== - -"@cspell/dict-r@^1.0.2": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@cspell/dict-r/-/dict-r-1.0.3.tgz#1480016695ee119cf63fa8c71b161d033bbb9029" - integrity sha512-u2qeXd4cx/TvTVcmkvA+sK6f4K1uMAMO6QPMSr1pSvqGElPRP1mIBXmuiSuBzLO3LbsJuUEHw5Cp3/bxIB6rNA== - -"@cspell/dict-ruby@^2.0.1": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@cspell/dict-ruby/-/dict-ruby-2.0.2.tgz#a0e9737832047e146e113f72268e198defda4e71" - integrity sha512-vVnUpSmGDbPjs7MHq741DsLHhQcoA4CnUCM9wsTorQ9AQRDAkDTbK/LcY8nM19MoXCb3eF8PFku5Jq+gqH0u7w== - -"@cspell/dict-rust@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-rust/-/dict-rust-2.0.1.tgz#2923392a41784e76ee00b9456d581f86a83097fb" - integrity sha512-ATDpIh0VWpQdUIZa8zqqJY4wQz3q00BTXlQCodeOmObYSb23+L6KWWzJ8mKLgpbc1lqTkogWrqxiCxlrCmqNmg== - -"@cspell/dict-scala@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-scala/-/dict-scala-2.0.0.tgz#b8098103bb03a13406c1c79f1769052353aafac4" - integrity sha512-MUwA2YKpqaQOSR4V1/CVGRNk8Ii5kf6I8Ch+4/BhRZRQXuwWbi21rDRYWPqdQWps7VNzAbbMA+PQDWsD5YY38g== - -"@cspell/dict-software-terms@^2.1.7": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-software-terms/-/dict-software-terms-2.2.1.tgz#7bcee23f50b9d1df3d69396c436e3af29619ccce" - integrity sha512-r5nmNOxfBc4kmQ2fxUpAbkFKJFfI/gfN0bi7P3TbQ7S+yDzkhMJ+thdWr9YDkVVv8YUoxaSH/K6NsVcnVQg/uA== - -"@cspell/dict-swift@^1.0.2": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@cspell/dict-swift/-/dict-swift-1.0.3.tgz#b819da0ca2c5dfecdd61bec55181636a06d23677" - integrity sha512-yOBLSaRD0AnkkkndJ8PuB82Evp6lA2xItf2AWsnPfCCgxp5Ojk6uUBC/WQBSkzkCAOGbXyHsu9D97tsOx2c6cw== - -"@cspell/dict-typescript@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-typescript/-/dict-typescript-2.0.1.tgz#f0bfae7c427a7cbdd6b56d103aca0a0a2f6ebb6b" - integrity sha512-YXH6nEH4thcD7lNffdNsKgDDZA5JVX4aKCuNIGE7qWSS9kBVgIvSU9/WH64R59rEzAPe1VwXwXyoZ7y4fAufww== - -"@cspell/dict-vue@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@cspell/dict-vue/-/dict-vue-2.0.2.tgz#8618b9f4825b3d80e1788082c19ac9c15832463e" - integrity sha512-/MB0RS0Gn01s4pgmjy0FvsLfr3RRMrRphEuvTRserNcM8XVtoIVAtrjig/Gg0DPwDrN8Clm0L1j7iQay6S8D0g== - -"@cspotcode/source-map-support@^0.8.0": - version "0.8.1" - resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" - integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== - dependencies: - "@jridgewell/trace-mapping" "0.3.9" - -"@dabh/diagnostics@^2.0.2": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@dabh/diagnostics/-/diagnostics-2.0.3.tgz#7f7e97ee9a725dffc7808d93668cc984e1dc477a" - integrity sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA== - dependencies: - colorspace "1.1.x" - enabled "2.0.x" - kuler "^2.0.0" - -"@docsearch/css@3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.1.1.tgz#e0976bf995e383f8ee8657306311b9cb95016330" - integrity sha512-utLgg7E1agqQeqCJn05DWC7XXMk4tMUUnL7MZupcknRu2OzGN13qwey2qA/0NAKkVBGugiWtON0+rlU0QIPojg== - -"@docsearch/react@^3.0.0": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@docsearch/react/-/react-3.1.1.tgz#3dffb5db8cf9eb95d6e732cf038264bfc10191ed" - integrity sha512-cfoql4qvtsVRqBMYxhlGNpvyy/KlCoPqjIsJSZYqYf9AplZncKjLBTcwBu6RXFMVCe30cIFljniI4OjqAU67pQ== - dependencies: - "@algolia/autocomplete-core" "1.7.1" - "@algolia/autocomplete-preset-algolia" "1.7.1" - "@docsearch/css" "3.1.1" - algoliasearch "^4.0.0" - -"@docusaurus/core@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/core/-/core-2.0.0-beta.18.tgz#44c6eefe29257462df630640a35f0c86bd80639a" - integrity sha512-puV7l+0/BPSi07Xmr8tVktfs1BzhC8P5pm6Bs2CfvysCJ4nefNCD1CosPc1PGBWy901KqeeEJ1aoGwj9tU3AUA== - dependencies: - "@babel/core" "^7.17.8" - "@babel/generator" "^7.17.7" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-transform-runtime" "^7.17.0" - "@babel/preset-env" "^7.16.11" - "@babel/preset-react" "^7.16.7" - "@babel/preset-typescript" "^7.16.7" - "@babel/runtime" "^7.17.8" - "@babel/runtime-corejs3" "^7.17.8" - "@babel/traverse" "^7.17.3" - "@docusaurus/cssnano-preset" "2.0.0-beta.18" - "@docusaurus/logger" "2.0.0-beta.18" - "@docusaurus/mdx-loader" "2.0.0-beta.18" - "@docusaurus/react-loadable" "5.5.2" - "@docusaurus/utils" "2.0.0-beta.18" - "@docusaurus/utils-common" "2.0.0-beta.18" - "@docusaurus/utils-validation" "2.0.0-beta.18" - "@slorber/static-site-generator-webpack-plugin" "^4.0.4" - "@svgr/webpack" "^6.2.1" - autoprefixer "^10.4.4" - babel-loader "^8.2.4" - babel-plugin-dynamic-import-node "2.3.0" - boxen "^6.2.1" - chokidar "^3.5.3" - clean-css "^5.2.4" - cli-table3 "^0.6.1" - combine-promises "^1.1.0" - commander "^5.1.0" - copy-webpack-plugin "^10.2.4" - core-js "^3.21.1" - css-loader "^6.7.1" - css-minimizer-webpack-plugin "^3.4.1" - cssnano "^5.1.5" - del "^6.0.0" - detect-port "^1.3.0" - escape-html "^1.0.3" - eta "^1.12.3" - file-loader "^6.2.0" - fs-extra "^10.0.1" - html-minifier-terser "^6.1.0" - html-tags "^3.1.0" - html-webpack-plugin "^5.5.0" - import-fresh "^3.3.0" - is-root "^2.1.0" - leven "^3.1.0" - lodash "^4.17.21" - mini-css-extract-plugin "^2.6.0" - nprogress "^0.2.0" - postcss "^8.4.12" - postcss-loader "^6.2.1" - prompts "^2.4.2" - react-dev-utils "^12.0.0" - react-helmet-async "^1.2.3" - react-loadable "npm:@docusaurus/react-loadable@5.5.2" - react-loadable-ssr-addon-v5-slorber "^1.0.1" - react-router "^5.2.0" - react-router-config "^5.1.1" - react-router-dom "^5.2.0" - remark-admonitions "^1.2.1" - rtl-detect "^1.0.4" - semver "^7.3.5" - serve-handler "^6.1.3" - shelljs "^0.8.5" - terser-webpack-plugin "^5.3.1" - tslib "^2.3.1" - update-notifier "^5.1.0" - url-loader "^4.1.1" - wait-on "^6.0.1" - webpack "^5.70.0" - webpack-bundle-analyzer "^4.5.0" - webpack-dev-server "^4.7.4" - webpack-merge "^5.8.0" - webpackbar "^5.0.2" - -"@docusaurus/cssnano-preset@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/cssnano-preset/-/cssnano-preset-2.0.0-beta.18.tgz#235ac9064fe8f8da618349ce5305be3ed3a44e29" - integrity sha512-VxhYmpyx16Wv00W9TUfLVv0NgEK/BwP7pOdWoaiELEIAMV7SO1+6iB8gsFUhtfKZ31I4uPVLMKrCyWWakoFeFA== - dependencies: - cssnano-preset-advanced "^5.3.1" - postcss "^8.4.12" - postcss-sort-media-queries "^4.2.1" - -"@docusaurus/logger@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/logger/-/logger-2.0.0-beta.18.tgz#12302f312a083eb018caa28505b63f5dd4ab6a91" - integrity sha512-frNe5vhH3mbPmH980Lvzaz45+n1PQl3TkslzWYXQeJOkFX17zUd3e3U7F9kR1+DocmAqHkgAoWuXVcvEoN29fg== - dependencies: - chalk "^4.1.2" - tslib "^2.3.1" - -"@docusaurus/mdx-loader@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/mdx-loader/-/mdx-loader-2.0.0-beta.18.tgz#4a9fc0607e0a210a7d7db3108415208dd36e33d3" - integrity sha512-pOmAQM4Y1jhuZTbEhjh4ilQa74Mh6Q0pMZn1xgIuyYDdqvIOrOlM/H0i34YBn3+WYuwsGim4/X0qynJMLDUA4A== - dependencies: - "@babel/parser" "^7.17.8" - "@babel/traverse" "^7.17.3" - "@docusaurus/logger" "2.0.0-beta.18" - "@docusaurus/utils" "2.0.0-beta.18" - "@mdx-js/mdx" "^1.6.22" - escape-html "^1.0.3" - file-loader "^6.2.0" - fs-extra "^10.0.1" - image-size "^1.0.1" - mdast-util-to-string "^2.0.0" - remark-emoji "^2.1.0" - stringify-object "^3.3.0" - tslib "^2.3.1" - unist-util-visit "^2.0.2" - url-loader "^4.1.1" - webpack "^5.70.0" - -"@docusaurus/module-type-aliases@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/module-type-aliases/-/module-type-aliases-2.0.0-beta.18.tgz#001379229c58cbc3ed565e19437cbda86d5e8742" - integrity sha512-e6mples8FZRyT7QyqidGS6BgkROjM+gljJsdOqoctbtBp+SZ5YDjwRHOmoY7eqEfsQNOaFZvT2hK38ui87hCRA== - dependencies: - "@docusaurus/types" "2.0.0-beta.18" - "@types/react" "*" - "@types/react-router-config" "*" - "@types/react-router-dom" "*" - react-helmet-async "*" - -"@docusaurus/plugin-content-blog@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.0.0-beta.18.tgz#95fe3dfc8bae9bf153c65a3a441234c450cbac0a" - integrity sha512-qzK83DgB+mxklk3PQC2nuTGPQD/8ogw1nXSmaQpyXAyhzcz4CXAZ9Swl/Ee9A/bvPwQGnSHSP3xqIYl8OkFtfw== - dependencies: - "@docusaurus/core" "2.0.0-beta.18" - "@docusaurus/logger" "2.0.0-beta.18" - "@docusaurus/mdx-loader" "2.0.0-beta.18" - "@docusaurus/utils" "2.0.0-beta.18" - "@docusaurus/utils-common" "2.0.0-beta.18" - "@docusaurus/utils-validation" "2.0.0-beta.18" - cheerio "^1.0.0-rc.10" - feed "^4.2.2" - fs-extra "^10.0.1" - lodash "^4.17.21" - reading-time "^1.5.0" - remark-admonitions "^1.2.1" - tslib "^2.3.1" - utility-types "^3.10.0" - webpack "^5.70.0" - -"@docusaurus/plugin-content-docs@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.0.0-beta.18.tgz#fef52d945da2928e0f4f3f9a9384d9ee7f2d4288" - integrity sha512-z4LFGBJuzn4XQiUA7OEA2SZTqlp+IYVjd3NrCk/ZUfNi1tsTJS36ATkk9Y6d0Nsp7K2kRXqaXPsz4adDgeIU+Q== - dependencies: - "@docusaurus/core" "2.0.0-beta.18" - "@docusaurus/logger" "2.0.0-beta.18" - "@docusaurus/mdx-loader" "2.0.0-beta.18" - "@docusaurus/utils" "2.0.0-beta.18" - "@docusaurus/utils-validation" "2.0.0-beta.18" - combine-promises "^1.1.0" - fs-extra "^10.0.1" - import-fresh "^3.3.0" - js-yaml "^4.1.0" - lodash "^4.17.21" - remark-admonitions "^1.2.1" - tslib "^2.3.1" - utility-types "^3.10.0" - webpack "^5.70.0" - -"@docusaurus/plugin-content-pages@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.0.0-beta.18.tgz#0fef392be3fea3d85c212caf4eb744ead920c30b" - integrity sha512-CJ2Xeb9hQrMeF4DGywSDVX2TFKsQpc8ZA7czyeBAAbSFsoRyxXPYeSh8aWljqR4F1u/EKGSKy0Shk/D4wumaHw== - dependencies: - "@docusaurus/core" "2.0.0-beta.18" - "@docusaurus/mdx-loader" "2.0.0-beta.18" - "@docusaurus/utils" "2.0.0-beta.18" - "@docusaurus/utils-validation" "2.0.0-beta.18" - fs-extra "^10.0.1" - remark-admonitions "^1.2.1" - tslib "^2.3.1" - webpack "^5.70.0" - -"@docusaurus/plugin-debug@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-debug/-/plugin-debug-2.0.0-beta.18.tgz#d4582532e59b538a23398f7c444b005367efa922" - integrity sha512-inLnLERgG7q0WlVmK6nYGHwVqREz13ivkynmNygEibJZToFRdgnIPW+OwD8QzgC5MpQTJw7+uYjcitpBumy1Gw== - dependencies: - "@docusaurus/core" "2.0.0-beta.18" - "@docusaurus/utils" "2.0.0-beta.18" - fs-extra "^10.0.1" - react-json-view "^1.21.3" - tslib "^2.3.1" - -"@docusaurus/plugin-google-analytics@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.0.0-beta.18.tgz#a9b1659abb3f588e866aaa742ec4c82fe943eda3" - integrity sha512-s9dRBWDrZ1uu3wFXPCF7yVLo/+5LUFAeoxpXxzory8gn9GYDt8ZDj80h5DUyCLxiy72OG6bXWNOYS/Vc6cOPXQ== - dependencies: - "@docusaurus/core" "2.0.0-beta.18" - "@docusaurus/utils-validation" "2.0.0-beta.18" - tslib "^2.3.1" - -"@docusaurus/plugin-google-gtag@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.0.0-beta.18.tgz#b51611ac01915523ddcfc9732f7862cf4996a0e1" - integrity sha512-h7vPuLVo/9pHmbFcvb4tCpjg4SxxX4k+nfVDyippR254FM++Z/nA5pRB0WvvIJ3ZTe0ioOb5Wlx2xdzJIBHUNg== - dependencies: - "@docusaurus/core" "2.0.0-beta.18" - "@docusaurus/utils-validation" "2.0.0-beta.18" - tslib "^2.3.1" - -"@docusaurus/plugin-sitemap@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.0.0-beta.18.tgz#7e8217e95bede5719bd02265dcf7eb2fea76b675" - integrity sha512-Klonht0Ye3FivdBpS80hkVYNOH+8lL/1rbCPEV92rKhwYdwnIejqhdKct4tUTCl8TYwWiyeUFQqobC/5FNVZPQ== - dependencies: - "@docusaurus/core" "2.0.0-beta.18" - "@docusaurus/utils" "2.0.0-beta.18" - "@docusaurus/utils-common" "2.0.0-beta.18" - "@docusaurus/utils-validation" "2.0.0-beta.18" - fs-extra "^10.0.1" - sitemap "^7.1.1" - tslib "^2.3.1" - -"@docusaurus/preset-classic@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/preset-classic/-/preset-classic-2.0.0-beta.18.tgz#82f6905d34a13e46289ac4d2f1125e47033bd9d8" - integrity sha512-TfDulvFt/vLWr/Yy7O0yXgwHtJhdkZ739bTlFNwEkRMAy8ggi650e52I1I0T79s67llecb4JihgHPW+mwiVkCQ== - dependencies: - "@docusaurus/core" "2.0.0-beta.18" - "@docusaurus/plugin-content-blog" "2.0.0-beta.18" - "@docusaurus/plugin-content-docs" "2.0.0-beta.18" - "@docusaurus/plugin-content-pages" "2.0.0-beta.18" - "@docusaurus/plugin-debug" "2.0.0-beta.18" - "@docusaurus/plugin-google-analytics" "2.0.0-beta.18" - "@docusaurus/plugin-google-gtag" "2.0.0-beta.18" - "@docusaurus/plugin-sitemap" "2.0.0-beta.18" - "@docusaurus/theme-classic" "2.0.0-beta.18" - "@docusaurus/theme-common" "2.0.0-beta.18" - "@docusaurus/theme-search-algolia" "2.0.0-beta.18" - -"@docusaurus/react-loadable@5.5.2", "react-loadable@npm:@docusaurus/react-loadable@5.5.2": - version "5.5.2" - resolved "https://registry.yarnpkg.com/@docusaurus/react-loadable/-/react-loadable-5.5.2.tgz#81aae0db81ecafbdaee3651f12804580868fa6ce" - integrity sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ== - dependencies: - "@types/react" "*" - prop-types "^15.6.2" - -"@docusaurus/remark-plugin-npm2yarn@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/remark-plugin-npm2yarn/-/remark-plugin-npm2yarn-2.0.0-beta.18.tgz#f898f186ffb4d5e7938be050c71be222c55f4d03" - integrity sha512-GmlbPzB8ImH6ey0LhOTe5NOIY30TwVNXarpm63zG1HYEUOT/H8X8w2NQPlT6RyhH9FtDi4bKMzfEP4ImpJGgCQ== - dependencies: - npm-to-yarn "^1.0.1" - tslib "^2.3.1" - unist-util-visit "^2.0.2" - -"@docusaurus/theme-classic@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-classic/-/theme-classic-2.0.0-beta.18.tgz#a3632e83923ed4372f80999128375cd0b378d3f8" - integrity sha512-WJWofvSGKC4Luidk0lyUwkLnO3DDynBBHwmt4QrV+aAVWWSOHUjA2mPOF6GLGuzkZd3KfL9EvAfsU0aGE1Hh5g== - dependencies: - "@docusaurus/core" "2.0.0-beta.18" - "@docusaurus/plugin-content-blog" "2.0.0-beta.18" - "@docusaurus/plugin-content-docs" "2.0.0-beta.18" - "@docusaurus/plugin-content-pages" "2.0.0-beta.18" - "@docusaurus/theme-common" "2.0.0-beta.18" - "@docusaurus/theme-translations" "2.0.0-beta.18" - "@docusaurus/utils" "2.0.0-beta.18" - "@docusaurus/utils-common" "2.0.0-beta.18" - "@docusaurus/utils-validation" "2.0.0-beta.18" - "@mdx-js/react" "^1.6.22" - clsx "^1.1.1" - copy-text-to-clipboard "^3.0.1" - infima "0.2.0-alpha.38" - lodash "^4.17.21" - postcss "^8.4.12" - prism-react-renderer "^1.3.1" - prismjs "^1.27.0" - react-router-dom "^5.2.0" - rtlcss "^3.5.0" - -"@docusaurus/theme-common@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-common/-/theme-common-2.0.0-beta.18.tgz#abf74f82c37d2ce813f92447cb020831290059fb" - integrity sha512-3pI2Q6ttScDVTDbuUKAx+TdC8wmwZ2hfWk8cyXxksvC9bBHcyzXhSgcK8LTsszn2aANyZ3e3QY2eNSOikTFyng== - dependencies: - "@docusaurus/module-type-aliases" "2.0.0-beta.18" - "@docusaurus/plugin-content-blog" "2.0.0-beta.18" - "@docusaurus/plugin-content-docs" "2.0.0-beta.18" - "@docusaurus/plugin-content-pages" "2.0.0-beta.18" - clsx "^1.1.1" - parse-numeric-range "^1.3.0" - prism-react-renderer "^1.3.1" - tslib "^2.3.1" - utility-types "^3.10.0" - -"@docusaurus/theme-search-algolia@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.0.0-beta.18.tgz#cbdda8982deac4556848e04853b7f32d93886c02" - integrity sha512-2w97KO/gnjI49WVtYQqENpQ8iO1Sem0yaTxw7/qv/ndlmIAQD0syU4yx6GsA7bTQCOGwKOWWzZSetCgUmTnWgA== - dependencies: - "@docsearch/react" "^3.0.0" - "@docusaurus/core" "2.0.0-beta.18" - "@docusaurus/logger" "2.0.0-beta.18" - "@docusaurus/plugin-content-docs" "2.0.0-beta.18" - "@docusaurus/theme-common" "2.0.0-beta.18" - "@docusaurus/theme-translations" "2.0.0-beta.18" - "@docusaurus/utils" "2.0.0-beta.18" - "@docusaurus/utils-validation" "2.0.0-beta.18" - algoliasearch "^4.13.0" - algoliasearch-helper "^3.7.4" - clsx "^1.1.1" - eta "^1.12.3" - fs-extra "^10.0.1" - lodash "^4.17.21" - tslib "^2.3.1" - utility-types "^3.10.0" - -"@docusaurus/theme-translations@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-translations/-/theme-translations-2.0.0-beta.18.tgz#292699ce89b013262683faf7f4ee7b75a8745a79" - integrity sha512-1uTEUXlKC9nco1Lx9H5eOwzB+LP4yXJG5wfv1PMLE++kJEdZ40IVorlUi3nJnaa9/lJNq5vFvvUDrmeNWsxy/Q== - dependencies: - fs-extra "^10.0.1" - tslib "^2.3.1" - -"@docusaurus/types@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/types/-/types-2.0.0-beta.18.tgz#9446928a6b751eefde390420b39eac32ba26abb2" - integrity sha512-zkuSmPQYP3+z4IjGHlW0nGzSSpY7Sit0Nciu/66zSb5m07TK72t6T1MlpCAn/XijcB9Cq6nenC3kJh66nGsKYg== - dependencies: - commander "^5.1.0" - joi "^17.6.0" - utility-types "^3.10.0" - webpack "^5.70.0" - webpack-merge "^5.8.0" - -"@docusaurus/utils-common@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/utils-common/-/utils-common-2.0.0-beta.18.tgz#46cf0bed2a7c532b2b85eab5bb914ff118b2c4e9" - integrity sha512-pK83EcOIiKCLGhrTwukZMo5jqd1sqqqhQwOVyxyvg+x9SY/lsnNzScA96OEfm+qQLBwK1OABA7Xc1wfkgkUxvw== - dependencies: - tslib "^2.3.1" - -"@docusaurus/utils-validation@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/utils-validation/-/utils-validation-2.0.0-beta.18.tgz#0dabf113d2c53ee685a715cd4caae6e219e9e41e" - integrity sha512-3aDrXjJJ8Cw2MAYEk5JMNnr8UHPxmVNbPU/PIHFWmWK09nJvs3IQ8nc9+8I30aIjRdIyc/BIOCxgvAcJ4hsxTA== - dependencies: - "@docusaurus/logger" "2.0.0-beta.18" - "@docusaurus/utils" "2.0.0-beta.18" - joi "^17.6.0" - js-yaml "^4.1.0" - tslib "^2.3.1" - -"@docusaurus/utils@2.0.0-beta.18": - version "2.0.0-beta.18" - resolved "https://registry.yarnpkg.com/@docusaurus/utils/-/utils-2.0.0-beta.18.tgz#c3fe0e9fac30db4510962263993fd0ee2679eebb" - integrity sha512-v2vBmH7xSbPwx3+GB90HgLSQdj+Rh5ELtZWy7M20w907k0ROzDmPQ/8Ke2DK3o5r4pZPGnCrsB3SaYI83AEmAA== - dependencies: - "@docusaurus/logger" "2.0.0-beta.18" - "@svgr/webpack" "^6.2.1" - file-loader "^6.2.0" - fs-extra "^10.0.1" - github-slugger "^1.4.0" - globby "^11.1.0" - gray-matter "^4.0.3" - js-yaml "^4.1.0" - lodash "^4.17.21" - micromatch "^4.0.5" - resolve-pathname "^3.0.0" - shelljs "^0.8.5" - tslib "^2.3.1" - url-loader "^4.1.1" - webpack "^5.70.0" - -"@emotion/babel-plugin@^11.7.1": - version "11.9.5" - resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.9.5.tgz#99cdba190b40b782c276bfbd144df17cc42f765a" - integrity sha512-n+9y6TSsvAsOc0hXmdVtqgU6B+ils+zrzTZGg1aV2BkZtBbL7DiasLSpu3fUFwXOkYm63j7+649yb+HhyZxYSA== - dependencies: - "@babel/helper-module-imports" "^7.16.7" - "@babel/plugin-syntax-jsx" "^7.17.12" - "@babel/runtime" "^7.18.3" - "@emotion/hash" "^0.8.0" - "@emotion/memoize" "^0.7.5" - "@emotion/serialize" "^1.0.2" - babel-plugin-macros "^3.1.0" - convert-source-map "^1.5.0" - escape-string-regexp "^4.0.0" - find-root "^1.1.0" - source-map "^0.5.7" - stylis "4.0.13" - -"@emotion/cache@^11.9.3": - version "11.9.3" - resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.9.3.tgz#96638449f6929fd18062cfe04d79b29b44c0d6cb" - integrity sha512-0dgkI/JKlCXa+lEXviaMtGBL0ynpx4osh7rjOXE71q9bIF8G+XhJgvi+wDu0B0IdCVx37BffiwXlN9I3UuzFvg== - dependencies: - "@emotion/memoize" "^0.7.4" - "@emotion/sheet" "^1.1.1" - "@emotion/utils" "^1.0.0" - "@emotion/weak-memoize" "^0.2.5" - stylis "4.0.13" - -"@emotion/hash@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" - integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== - -"@emotion/is-prop-valid@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.1.3.tgz#f0907a416368cf8df9e410117068e20fe87c0a3a" - integrity sha512-RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA== - dependencies: - "@emotion/memoize" "^0.7.4" - -"@emotion/memoize@^0.7.4", "@emotion/memoize@^0.7.5": - version "0.7.5" - resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.5.tgz#2c40f81449a4e554e9fc6396910ed4843ec2be50" - integrity sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ== - -"@emotion/react@^11.4.1": - version "11.9.3" - resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.9.3.tgz#f4f4f34444f6654a2e550f5dab4f2d360c101df9" - integrity sha512-g9Q1GcTOlzOEjqwuLF/Zd9LC+4FljjPjDfxSM7KmEakm+hsHXk+bYZ2q+/hTJzr0OUNkujo72pXLQvXj6H+GJQ== - dependencies: - "@babel/runtime" "^7.13.10" - "@emotion/babel-plugin" "^11.7.1" - "@emotion/cache" "^11.9.3" - "@emotion/serialize" "^1.0.4" - "@emotion/utils" "^1.1.0" - "@emotion/weak-memoize" "^0.2.5" - hoist-non-react-statics "^3.3.1" - -"@emotion/serialize@^1.0.2", "@emotion/serialize@^1.0.4": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.0.4.tgz#ff31fd11bb07999611199c2229e152faadc21a3c" - integrity sha512-1JHamSpH8PIfFwAMryO2bNka+y8+KA5yga5Ocf2d7ZEiJjb7xlLW7aknBGZqJLajuLOvJ+72vN+IBSwPlXD1Pg== - dependencies: - "@emotion/hash" "^0.8.0" - "@emotion/memoize" "^0.7.4" - "@emotion/unitless" "^0.7.5" - "@emotion/utils" "^1.0.0" - csstype "^3.0.2" - -"@emotion/sheet@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.1.1.tgz#015756e2a9a3c7c5f11d8ec22966a8dbfbfac787" - integrity sha512-J3YPccVRMiTZxYAY0IOq3kd+hUP8idY8Kz6B/Cyo+JuXq52Ek+zbPbSQUrVQp95aJ+lsAW7DPL1P2Z+U1jGkKA== - -"@emotion/styled@^11.3.0": - version "11.9.3" - resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.9.3.tgz#47f0c71137fec7c57035bf3659b52fb536792340" - integrity sha512-o3sBNwbtoVz9v7WB1/Y/AmXl69YHmei2mrVnK7JgyBJ//Rst5yqPZCecEJlMlJrFeWHp+ki/54uN265V2pEcXA== - dependencies: - "@babel/runtime" "^7.13.10" - "@emotion/babel-plugin" "^11.7.1" - "@emotion/is-prop-valid" "^1.1.3" - "@emotion/serialize" "^1.0.4" - "@emotion/utils" "^1.1.0" - -"@emotion/unitless@^0.7.5": - version "0.7.5" - resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" - integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== - -"@emotion/utils@^1.0.0", "@emotion/utils@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.1.0.tgz#86b0b297f3f1a0f2bdb08eeac9a2f49afd40d0cf" - integrity sha512-iRLa/Y4Rs5H/f2nimczYmS5kFJEbpiVvgN3XVfZ022IYhuNA1IRSHEizcof88LtCTXtl9S2Cxt32KgaXEu72JQ== - -"@emotion/weak-memoize@^0.2.5": - version "0.2.5" - resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" - integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== - -"@eslint/eslintrc@^0.4.3": - version "0.4.3" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" - 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" - -"@eslint/eslintrc@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.0.tgz#29f92c30bb3e771e4a2048c95fa6855392dfac4f" - integrity sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw== - dependencies: - ajv "^6.12.4" - debug "^4.3.2" - espree "^9.3.2" - globals "^13.15.0" - ignore "^5.2.0" - import-fresh "^3.2.1" - js-yaml "^4.1.0" - minimatch "^3.1.2" - strip-json-comments "^3.1.1" - -"@ethersproject/bytes@^5.6.1": - version "5.6.1" - resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.6.1.tgz#24f916e411f82a8a60412344bf4a813b917eefe7" - integrity sha512-NwQt7cKn5+ZE4uDn+X5RAXLp46E1chXoaMmrxAyA0rblpxz8t58lVkrHXoRIn0lz1joQElQ8410GqhTqMOwc6g== - dependencies: - "@ethersproject/logger" "^5.6.0" - -"@ethersproject/logger@^5.6.0": - version "5.6.0" - resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.6.0.tgz#d7db1bfcc22fd2e4ab574cba0bb6ad779a9a3e7a" - integrity sha512-BiBWllUROH9w+P21RzoxJKzqoqpkyM1pRnEKG69bulE9TSQD8SAIvTQqIMZmmCO8pUNkgLP1wndX1gKghSpBmg== - -"@ethersproject/sha2@^5.5.0": - version "5.6.1" - resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.6.1.tgz#211f14d3f5da5301c8972a8827770b6fd3e51656" - integrity sha512-5K2GyqcW7G4Yo3uenHegbXRPDgARpWUiXc6RiF7b6i/HXUoWlb7uCARh7BAHg7/qT/Q5ydofNwiZcim9qpjB6g== - dependencies: - "@ethersproject/bytes" "^5.6.1" - "@ethersproject/logger" "^5.6.0" - hash.js "1.1.7" - -"@fontsource/roboto@^4.5.1": - version "4.5.7" - resolved "https://registry.yarnpkg.com/@fontsource/roboto/-/roboto-4.5.7.tgz#292740a52fa2bac61b89f92e1c588037defe65cb" - integrity sha512-m57UMER23Mk6Drg9OjtHW1Y+0KPGyZfE5XJoPTOsLARLar6013kJj4X2HICt+iFLJqIgTahA/QAvSn9lwF1EEw== - -"@gallynaut/rawrtools@^0.0.1": - version "0.0.1" - resolved "https://registry.yarnpkg.com/@gallynaut/rawrtools/-/rawrtools-0.0.1.tgz#7d55f3f37a14874ad7ef659c96d56dcf581da0ab" - integrity sha512-KyPEsZ2Qz30b0ppn3fAWTyHQKpTmQjJBPttqWybDJc5nn9vez3epEVa9Lq/4kVnymD7KYcmx2zBl/VWhFIDHvg== - dependencies: - "@oclif/core" "^1" - "@oclif/plugin-help" "^5" - "@oclif/plugin-plugins" "^2.0.1" - "@project-serum/anchor" "^0.18.2" - "@solana/web3.js" "^1.32.0" - jsonpath-plus "^6.0.1" - lodash "^4.17.21" - -"@gar/promisify@^1.0.1": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" - integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== - -"@google-cloud/secret-manager@^3.10.1": - version "3.12.0" - resolved "https://registry.yarnpkg.com/@google-cloud/secret-manager/-/secret-manager-3.12.0.tgz#ff975190e45da3aaa762905f2b7c679c06a0f4a3" - integrity sha512-nFNm5lYgH2RRAn1x8vPKt1c+MBMJtBXqkYB5Jpi68PjN7Emjcu7/kl+0/+FamFLp3qJUU7RKRCwETFNNZAOkuw== - dependencies: - google-gax "^2.30.0" - -"@grpc/grpc-js@~1.6.0": - version "1.6.8" - resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.6.8.tgz#77cc8b2d841c34dea8b105d45ff1732caefae4f2" - integrity sha512-Nt5tufF/O5Q310kP0cDzxznWMZW58GCTZhUUiAQ9B0K0ANKNQ4Lj/K9XK0vZg+UBKq5/7z7+8mXHHfrcwoeFJQ== - dependencies: - "@grpc/proto-loader" "^0.7.0" - "@types/node" ">=12.12.47" - -"@grpc/proto-loader@^0.6.12": - version "0.6.13" - resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.6.13.tgz#008f989b72a40c60c96cd4088522f09b05ac66bc" - integrity sha512-FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g== - dependencies: - "@types/long" "^4.0.1" - lodash.camelcase "^4.3.0" - long "^4.0.0" - protobufjs "^6.11.3" - yargs "^16.2.0" - -"@grpc/proto-loader@^0.7.0": - version "0.7.0" - resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.7.0.tgz#743cc8a941cc251620c66ebe0d330e1411a33535" - integrity sha512-SGPZtVmqOvNfPFOA/nNPn+0Weqa5wubBgQ56+JgTbeLY2VezwtMjwPPFzh0kvQccwWT3a2TXT0ZGK/pJoOTk1A== - dependencies: - "@types/long" "^4.0.1" - lodash.camelcase "^4.3.0" - long "^4.0.0" - protobufjs "^7.0.0" - yargs "^16.2.0" - -"@hapi/hoek@^9.0.0": - version "9.3.0" - resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" - integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== - -"@hapi/topo@^5.0.0": - version "5.1.0" - resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" - integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== - dependencies: - "@hapi/hoek" "^9.0.0" - -"@humanwhocodes/config-array@^0.5.0": - version "0.5.0" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" - integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== - dependencies: - "@humanwhocodes/object-schema" "^1.2.0" - debug "^4.1.1" - minimatch "^3.0.4" - -"@humanwhocodes/config-array@^0.9.2": - version "0.9.5" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7" - integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw== - dependencies: - "@humanwhocodes/object-schema" "^1.2.1" - debug "^4.1.1" - minimatch "^3.0.4" - -"@humanwhocodes/object-schema@^1.2.0", "@humanwhocodes/object-schema@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" - integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== - -"@hutson/parse-repository-url@^3.0.0": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz#98c23c950a3d9b6c8f0daed06da6c3af06981340" - integrity sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q== - -"@isaacs/string-locale-compare@^1.0.1", "@isaacs/string-locale-compare@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz#291c227e93fd407a96ecd59879a35809120e432b" - integrity sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ== - -"@jridgewell/gen-mapping@^0.1.0": - version "0.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" - integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== - dependencies: - "@jridgewell/set-array" "^1.0.0" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" - integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@^3.0.3": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== - -"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== - -"@jridgewell/source-map@^0.3.2": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb" - integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.14" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== - -"@jridgewell/trace-mapping@0.3.9": - version "0.3.9" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" - integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@jridgewell/trace-mapping@^0.3.7", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.14" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz#b231a081d8f66796e475ad588a1ef473112701ed" - integrity sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ== - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@leichtgewicht/ip-codec@^2.0.1": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b" - integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== - -"@lerna/add@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/add/-/add-4.0.0.tgz#c36f57d132502a57b9e7058d1548b7a565ef183f" - integrity sha512-cpmAH1iS3k8JBxNvnMqrGTTjbY/ZAiKa1ChJzFevMYY3eeqbvhsBKnBcxjRXtdrJ6bd3dCQM+ZtK+0i682Fhng== - dependencies: - "@lerna/bootstrap" "4.0.0" - "@lerna/command" "4.0.0" - "@lerna/filter-options" "4.0.0" - "@lerna/npm-conf" "4.0.0" - "@lerna/validation-error" "4.0.0" - dedent "^0.7.0" - npm-package-arg "^8.1.0" - p-map "^4.0.0" - pacote "^11.2.6" - semver "^7.3.4" - -"@lerna/bootstrap@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/bootstrap/-/bootstrap-4.0.0.tgz#5f5c5e2c6cfc8fcec50cb2fbe569a8c607101891" - integrity sha512-RkS7UbeM2vu+kJnHzxNRCLvoOP9yGNgkzRdy4UV2hNalD7EP41bLvRVOwRYQ7fhc2QcbhnKNdOBihYRL0LcKtw== - dependencies: - "@lerna/command" "4.0.0" - "@lerna/filter-options" "4.0.0" - "@lerna/has-npm-version" "4.0.0" - "@lerna/npm-install" "4.0.0" - "@lerna/package-graph" "4.0.0" - "@lerna/pulse-till-done" "4.0.0" - "@lerna/rimraf-dir" "4.0.0" - "@lerna/run-lifecycle" "4.0.0" - "@lerna/run-topologically" "4.0.0" - "@lerna/symlink-binary" "4.0.0" - "@lerna/symlink-dependencies" "4.0.0" - "@lerna/validation-error" "4.0.0" - dedent "^0.7.0" - get-port "^5.1.1" - multimatch "^5.0.0" - npm-package-arg "^8.1.0" - npmlog "^4.1.2" - p-map "^4.0.0" - p-map-series "^2.1.0" - p-waterfall "^2.1.1" - read-package-tree "^5.3.1" - semver "^7.3.4" - -"@lerna/changed@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/changed/-/changed-4.0.0.tgz#b9fc76cea39b9292a6cd263f03eb57af85c9270b" - integrity sha512-cD+KuPRp6qiPOD+BO6S6SN5cARspIaWSOqGBpGnYzLb4uWT8Vk4JzKyYtc8ym1DIwyoFXHosXt8+GDAgR8QrgQ== - dependencies: - "@lerna/collect-updates" "4.0.0" - "@lerna/command" "4.0.0" - "@lerna/listable" "4.0.0" - "@lerna/output" "4.0.0" - -"@lerna/check-working-tree@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/check-working-tree/-/check-working-tree-4.0.0.tgz#257e36a602c00142e76082a19358e3e1ae8dbd58" - integrity sha512-/++bxM43jYJCshBiKP5cRlCTwSJdRSxVmcDAXM+1oUewlZJVSVlnks5eO0uLxokVFvLhHlC5kHMc7gbVFPHv6Q== - dependencies: - "@lerna/collect-uncommitted" "4.0.0" - "@lerna/describe-ref" "4.0.0" - "@lerna/validation-error" "4.0.0" - -"@lerna/child-process@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-4.0.0.tgz#341b96a57dffbd9705646d316e231df6fa4df6e1" - integrity sha512-XtCnmCT9eyVsUUHx6y/CTBYdV9g2Cr/VxyseTWBgfIur92/YKClfEtJTbOh94jRT62hlKLqSvux/UhxXVh613Q== - dependencies: - chalk "^4.1.0" - execa "^5.0.0" - strong-log-transformer "^2.1.0" - -"@lerna/clean@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/clean/-/clean-4.0.0.tgz#8f778b6f2617aa2a936a6b5e085ae62498e57dc5" - integrity sha512-uugG2iN9k45ITx2jtd8nEOoAtca8hNlDCUM0N3lFgU/b1mEQYAPRkqr1qs4FLRl/Y50ZJ41wUz1eazS+d/0osA== - dependencies: - "@lerna/command" "4.0.0" - "@lerna/filter-options" "4.0.0" - "@lerna/prompt" "4.0.0" - "@lerna/pulse-till-done" "4.0.0" - "@lerna/rimraf-dir" "4.0.0" - p-map "^4.0.0" - p-map-series "^2.1.0" - p-waterfall "^2.1.1" - -"@lerna/cli@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/cli/-/cli-4.0.0.tgz#8eabd334558836c1664df23f19acb95e98b5bbf3" - integrity sha512-Neaw3GzFrwZiRZv2g7g6NwFjs3er1vhraIniEs0jjVLPMNC4eata0na3GfE5yibkM/9d3gZdmihhZdZ3EBdvYA== - dependencies: - "@lerna/global-options" "4.0.0" - dedent "^0.7.0" - npmlog "^4.1.2" - yargs "^16.2.0" - -"@lerna/collect-uncommitted@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/collect-uncommitted/-/collect-uncommitted-4.0.0.tgz#855cd64612969371cfc2453b90593053ff1ba779" - integrity sha512-ufSTfHZzbx69YNj7KXQ3o66V4RC76ffOjwLX0q/ab//61bObJ41n03SiQEhSlmpP+gmFbTJ3/7pTe04AHX9m/g== - dependencies: - "@lerna/child-process" "4.0.0" - chalk "^4.1.0" - npmlog "^4.1.2" - -"@lerna/collect-updates@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-4.0.0.tgz#8e208b1bafd98a372ff1177f7a5e288f6bea8041" - integrity sha512-bnNGpaj4zuxsEkyaCZLka9s7nMs58uZoxrRIPJ+nrmrZYp1V5rrd+7/NYTuunOhY2ug1sTBvTAxj3NZQ+JKnOw== - dependencies: - "@lerna/child-process" "4.0.0" - "@lerna/describe-ref" "4.0.0" - minimatch "^3.0.4" - npmlog "^4.1.2" - slash "^3.0.0" - -"@lerna/command@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/command/-/command-4.0.0.tgz#991c7971df8f5bf6ae6e42c808869a55361c1b98" - integrity sha512-LM9g3rt5FsPNFqIHUeRwWXLNHJ5NKzOwmVKZ8anSp4e1SPrv2HNc1V02/9QyDDZK/w+5POXH5lxZUI1CHaOK/A== - dependencies: - "@lerna/child-process" "4.0.0" - "@lerna/package-graph" "4.0.0" - "@lerna/project" "4.0.0" - "@lerna/validation-error" "4.0.0" - "@lerna/write-log-file" "4.0.0" - clone-deep "^4.0.1" - dedent "^0.7.0" - execa "^5.0.0" - is-ci "^2.0.0" - npmlog "^4.1.2" - -"@lerna/conventional-commits@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/conventional-commits/-/conventional-commits-4.0.0.tgz#660fb2c7b718cb942ead70110df61f18c6f99750" - integrity sha512-CSUQRjJHFrH8eBn7+wegZLV3OrNc0Y1FehYfYGhjLE2SIfpCL4bmfu/ViYuHh9YjwHaA+4SX6d3hR+xkeseKmw== - dependencies: - "@lerna/validation-error" "4.0.0" - conventional-changelog-angular "^5.0.12" - conventional-changelog-core "^4.2.2" - conventional-recommended-bump "^6.1.0" - fs-extra "^9.1.0" - get-stream "^6.0.0" - lodash.template "^4.5.0" - npm-package-arg "^8.1.0" - npmlog "^4.1.2" - pify "^5.0.0" - semver "^7.3.4" - -"@lerna/create-symlink@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/create-symlink/-/create-symlink-4.0.0.tgz#8c5317ce5ae89f67825443bd7651bf4121786228" - integrity sha512-I0phtKJJdafUiDwm7BBlEUOtogmu8+taxq6PtIrxZbllV9hWg59qkpuIsiFp+no7nfRVuaasNYHwNUhDAVQBig== - dependencies: - cmd-shim "^4.1.0" - fs-extra "^9.1.0" - npmlog "^4.1.2" - -"@lerna/create@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/create/-/create-4.0.0.tgz#b6947e9b5dfb6530321952998948c3e63d64d730" - integrity sha512-mVOB1niKByEUfxlbKTM1UNECWAjwUdiioIbRQZEeEabtjCL69r9rscIsjlGyhGWCfsdAG5wfq4t47nlDXdLLag== - dependencies: - "@lerna/child-process" "4.0.0" - "@lerna/command" "4.0.0" - "@lerna/npm-conf" "4.0.0" - "@lerna/validation-error" "4.0.0" - dedent "^0.7.0" - fs-extra "^9.1.0" - globby "^11.0.2" - init-package-json "^2.0.2" - npm-package-arg "^8.1.0" - p-reduce "^2.1.0" - pacote "^11.2.6" - pify "^5.0.0" - semver "^7.3.4" - slash "^3.0.0" - validate-npm-package-license "^3.0.4" - validate-npm-package-name "^3.0.0" - whatwg-url "^8.4.0" - yargs-parser "20.2.4" - -"@lerna/describe-ref@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-4.0.0.tgz#53c53b4ea65fdceffa072a62bfebe6772c45d9ec" - integrity sha512-eTU5+xC4C5Gcgz+Ey4Qiw9nV2B4JJbMulsYJMW8QjGcGh8zudib7Sduj6urgZXUYNyhYpRs+teci9M2J8u+UvQ== - dependencies: - "@lerna/child-process" "4.0.0" - npmlog "^4.1.2" - -"@lerna/diff@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/diff/-/diff-4.0.0.tgz#6d3071817aaa4205a07bf77cfc6e932796d48b92" - integrity sha512-jYPKprQVg41+MUMxx6cwtqsNm0Yxx9GDEwdiPLwcUTFx+/qKCEwifKNJ1oGIPBxyEHX2PFCOjkK39lHoj2qiag== - dependencies: - "@lerna/child-process" "4.0.0" - "@lerna/command" "4.0.0" - "@lerna/validation-error" "4.0.0" - npmlog "^4.1.2" - -"@lerna/exec@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/exec/-/exec-4.0.0.tgz#eb6cb95cb92d42590e9e2d628fcaf4719d4a8be6" - integrity sha512-VGXtL/b/JfY84NB98VWZpIExfhLOzy0ozm/0XaS4a2SmkAJc5CeUfrhvHxxkxiTBLkU+iVQUyYEoAT0ulQ8PCw== - dependencies: - "@lerna/child-process" "4.0.0" - "@lerna/command" "4.0.0" - "@lerna/filter-options" "4.0.0" - "@lerna/profiler" "4.0.0" - "@lerna/run-topologically" "4.0.0" - "@lerna/validation-error" "4.0.0" - p-map "^4.0.0" - -"@lerna/filter-options@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/filter-options/-/filter-options-4.0.0.tgz#ac94cc515d7fa3b47e2f7d74deddeabb1de5e9e6" - integrity sha512-vV2ANOeZhOqM0rzXnYcFFCJ/kBWy/3OA58irXih9AMTAlQLymWAK0akWybl++sUJ4HB9Hx12TOqaXbYS2NM5uw== - dependencies: - "@lerna/collect-updates" "4.0.0" - "@lerna/filter-packages" "4.0.0" - dedent "^0.7.0" - npmlog "^4.1.2" - -"@lerna/filter-packages@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/filter-packages/-/filter-packages-4.0.0.tgz#b1f70d70e1de9cdd36a4e50caa0ac501f8d012f2" - integrity sha512-+4AJIkK7iIiOaqCiVTYJxh/I9qikk4XjNQLhE3kixaqgMuHl1NQ99qXRR0OZqAWB9mh8Z1HA9bM5K1HZLBTOqA== - dependencies: - "@lerna/validation-error" "4.0.0" - multimatch "^5.0.0" - npmlog "^4.1.2" - -"@lerna/get-npm-exec-opts@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-4.0.0.tgz#dc955be94a4ae75c374ef9bce91320887d34608f" - integrity sha512-yvmkerU31CTWS2c7DvmAWmZVeclPBqI7gPVr5VATUKNWJ/zmVcU4PqbYoLu92I9Qc4gY1TuUplMNdNuZTSL7IQ== - dependencies: - npmlog "^4.1.2" - -"@lerna/get-packed@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/get-packed/-/get-packed-4.0.0.tgz#0989d61624ac1f97e393bdad2137c49cd7a37823" - integrity sha512-rfWONRsEIGyPJTxFzC8ECb3ZbsDXJbfqWYyeeQQDrJRPnEJErlltRLPLgC2QWbxFgFPsoDLeQmFHJnf0iDfd8w== - dependencies: - fs-extra "^9.1.0" - ssri "^8.0.1" - tar "^6.1.0" - -"@lerna/github-client@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/github-client/-/github-client-4.0.0.tgz#2ced67721363ef70f8e12ffafce4410918f4a8a4" - integrity sha512-2jhsldZtTKXYUBnOm23Lb0Fx8G4qfSXF9y7UpyUgWUj+YZYd+cFxSuorwQIgk5P4XXrtVhsUesIsli+BYSThiw== - dependencies: - "@lerna/child-process" "4.0.0" - "@octokit/plugin-enterprise-rest" "^6.0.1" - "@octokit/rest" "^18.1.0" - git-url-parse "^11.4.4" - npmlog "^4.1.2" - -"@lerna/gitlab-client@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/gitlab-client/-/gitlab-client-4.0.0.tgz#00dad73379c7b38951d4b4ded043504c14e2b67d" - integrity sha512-OMUpGSkeDWFf7BxGHlkbb35T7YHqVFCwBPSIR6wRsszY8PAzCYahtH3IaJzEJyUg6vmZsNl0FSr3pdA2skhxqA== - dependencies: - node-fetch "^2.6.1" - npmlog "^4.1.2" - whatwg-url "^8.4.0" - -"@lerna/global-options@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/global-options/-/global-options-4.0.0.tgz#c7d8b0de6a01d8a845e2621ea89e7f60f18c6a5f" - integrity sha512-TRMR8afAHxuYBHK7F++Ogop2a82xQjoGna1dvPOY6ltj/pEx59pdgcJfYcynYqMkFIk8bhLJJN9/ndIfX29FTQ== - -"@lerna/has-npm-version@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/has-npm-version/-/has-npm-version-4.0.0.tgz#d3fc3292c545eb28bd493b36e6237cf0279f631c" - integrity sha512-LQ3U6XFH8ZmLCsvsgq1zNDqka0Xzjq5ibVN+igAI5ccRWNaUsE/OcmsyMr50xAtNQMYMzmpw5GVLAivT2/YzCg== - dependencies: - "@lerna/child-process" "4.0.0" - semver "^7.3.4" - -"@lerna/import@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/import/-/import-4.0.0.tgz#bde656c4a451fa87ae41733ff8a8da60547c5465" - integrity sha512-FaIhd+4aiBousKNqC7TX1Uhe97eNKf5/SC7c5WZANVWtC7aBWdmswwDt3usrzCNpj6/Wwr9EtEbYROzxKH8ffg== - dependencies: - "@lerna/child-process" "4.0.0" - "@lerna/command" "4.0.0" - "@lerna/prompt" "4.0.0" - "@lerna/pulse-till-done" "4.0.0" - "@lerna/validation-error" "4.0.0" - dedent "^0.7.0" - fs-extra "^9.1.0" - p-map-series "^2.1.0" - -"@lerna/info@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/info/-/info-4.0.0.tgz#b9fb0e479d60efe1623603958a831a88b1d7f1fc" - integrity sha512-8Uboa12kaCSZEn4XRfPz5KU9XXoexSPS4oeYGj76s2UQb1O1GdnEyfjyNWoUl1KlJ2i/8nxUskpXIftoFYH0/Q== - dependencies: - "@lerna/command" "4.0.0" - "@lerna/output" "4.0.0" - envinfo "^7.7.4" - -"@lerna/init@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/init/-/init-4.0.0.tgz#dadff67e6dfb981e8ccbe0e6a310e837962f6c7a" - integrity sha512-wY6kygop0BCXupzWj5eLvTUqdR7vIAm0OgyV9WHpMYQGfs1V22jhztt8mtjCloD/O0nEe4tJhdG62XU5aYmPNQ== - dependencies: - "@lerna/child-process" "4.0.0" - "@lerna/command" "4.0.0" - fs-extra "^9.1.0" - p-map "^4.0.0" - write-json-file "^4.3.0" - -"@lerna/link@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/link/-/link-4.0.0.tgz#c3a38aabd44279d714e90f2451e31b63f0fb65ba" - integrity sha512-KlvPi7XTAcVOByfaLlOeYOfkkDcd+bejpHMCd1KcArcFTwijOwXOVi24DYomIeHvy6HsX/IUquJ4PPUJIeB4+w== - dependencies: - "@lerna/command" "4.0.0" - "@lerna/package-graph" "4.0.0" - "@lerna/symlink-dependencies" "4.0.0" - p-map "^4.0.0" - slash "^3.0.0" - -"@lerna/list@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/list/-/list-4.0.0.tgz#24b4e6995bd73f81c556793fe502b847efd9d1d7" - integrity sha512-L2B5m3P+U4Bif5PultR4TI+KtW+SArwq1i75QZ78mRYxPc0U/piau1DbLOmwrdqr99wzM49t0Dlvl6twd7GHFg== - dependencies: - "@lerna/command" "4.0.0" - "@lerna/filter-options" "4.0.0" - "@lerna/listable" "4.0.0" - "@lerna/output" "4.0.0" - -"@lerna/listable@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/listable/-/listable-4.0.0.tgz#d00d6cb4809b403f2b0374fc521a78e318b01214" - integrity sha512-/rPOSDKsOHs5/PBLINZOkRIX1joOXUXEtyUs5DHLM8q6/RP668x/1lFhw6Dx7/U+L0+tbkpGtZ1Yt0LewCLgeQ== - dependencies: - "@lerna/query-graph" "4.0.0" - chalk "^4.1.0" - columnify "^1.5.4" - -"@lerna/log-packed@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/log-packed/-/log-packed-4.0.0.tgz#95168fe2e26ac6a71e42f4be857519b77e57a09f" - integrity sha512-+dpCiWbdzgMAtpajLToy9PO713IHoE6GV/aizXycAyA07QlqnkpaBNZ8DW84gHdM1j79TWockGJo9PybVhrrZQ== - dependencies: - byte-size "^7.0.0" - columnify "^1.5.4" - has-unicode "^2.0.1" - npmlog "^4.1.2" - -"@lerna/npm-conf@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-conf/-/npm-conf-4.0.0.tgz#b259fd1e1cee2bf5402b236e770140ff9ade7fd2" - integrity sha512-uS7H02yQNq3oejgjxAxqq/jhwGEE0W0ntr8vM3EfpCW1F/wZruwQw+7bleJQ9vUBjmdXST//tk8mXzr5+JXCfw== - dependencies: - config-chain "^1.1.12" - pify "^5.0.0" - -"@lerna/npm-dist-tag@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-dist-tag/-/npm-dist-tag-4.0.0.tgz#d1e99b4eccd3414142f0548ad331bf2d53f3257a" - integrity sha512-F20sg28FMYTgXqEQihgoqSfwmq+Id3zT23CnOwD+XQMPSy9IzyLf1fFVH319vXIw6NF6Pgs4JZN2Qty6/CQXGw== - dependencies: - "@lerna/otplease" "4.0.0" - npm-package-arg "^8.1.0" - npm-registry-fetch "^9.0.0" - npmlog "^4.1.2" - -"@lerna/npm-install@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-install/-/npm-install-4.0.0.tgz#31180be3ab3b7d1818a1a0c206aec156b7094c78" - integrity sha512-aKNxq2j3bCH3eXl3Fmu4D54s/YLL9WSwV8W7X2O25r98wzrO38AUN6AB9EtmAx+LV/SP15et7Yueg9vSaanRWg== - dependencies: - "@lerna/child-process" "4.0.0" - "@lerna/get-npm-exec-opts" "4.0.0" - fs-extra "^9.1.0" - npm-package-arg "^8.1.0" - npmlog "^4.1.2" - signal-exit "^3.0.3" - write-pkg "^4.0.0" - -"@lerna/npm-publish@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-publish/-/npm-publish-4.0.0.tgz#84eb62e876fe949ae1fd62c60804423dbc2c4472" - integrity sha512-vQb7yAPRo5G5r77DRjHITc9piR9gvEKWrmfCH7wkfBnGWEqu7n8/4bFQ7lhnkujvc8RXOsYpvbMQkNfkYibD/w== - dependencies: - "@lerna/otplease" "4.0.0" - "@lerna/run-lifecycle" "4.0.0" - fs-extra "^9.1.0" - libnpmpublish "^4.0.0" - npm-package-arg "^8.1.0" - npmlog "^4.1.2" - pify "^5.0.0" - read-package-json "^3.0.0" - -"@lerna/npm-run-script@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-run-script/-/npm-run-script-4.0.0.tgz#dfebf4f4601442e7c0b5214f9fb0d96c9350743b" - integrity sha512-Jmyh9/IwXJjOXqKfIgtxi0bxi1pUeKe5bD3S81tkcy+kyng/GNj9WSqD5ZggoNP2NP//s4CLDAtUYLdP7CU9rA== - dependencies: - "@lerna/child-process" "4.0.0" - "@lerna/get-npm-exec-opts" "4.0.0" - npmlog "^4.1.2" - -"@lerna/otplease@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/otplease/-/otplease-4.0.0.tgz#84972eb43448f8a1077435ba1c5e59233b725850" - integrity sha512-Sgzbqdk1GH4psNiT6hk+BhjOfIr/5KhGBk86CEfHNJTk9BK4aZYyJD4lpDbDdMjIV4g03G7pYoqHzH765T4fxw== - dependencies: - "@lerna/prompt" "4.0.0" - -"@lerna/output@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/output/-/output-4.0.0.tgz#b1d72215c0e35483e4f3e9994debc82c621851f2" - integrity sha512-Un1sHtO1AD7buDQrpnaYTi2EG6sLF+KOPEAMxeUYG5qG3khTs2Zgzq5WE3dt2N/bKh7naESt20JjIW6tBELP0w== - dependencies: - npmlog "^4.1.2" - -"@lerna/pack-directory@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/pack-directory/-/pack-directory-4.0.0.tgz#8b617db95d20792f043aaaa13a9ccc0e04cb4c74" - integrity sha512-NJrmZNmBHS+5aM+T8N6FVbaKFScVqKlQFJNY2k7nsJ/uklNKsLLl6VhTQBPwMTbf6Tf7l6bcKzpy7aePuq9UiQ== - dependencies: - "@lerna/get-packed" "4.0.0" - "@lerna/package" "4.0.0" - "@lerna/run-lifecycle" "4.0.0" - npm-packlist "^2.1.4" - npmlog "^4.1.2" - tar "^6.1.0" - temp-write "^4.0.0" - -"@lerna/package-graph@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-4.0.0.tgz#16a00253a8ac810f72041481cb46bcee8d8123dd" - integrity sha512-QED2ZCTkfXMKFoTGoccwUzjHtZMSf3UKX14A4/kYyBms9xfFsesCZ6SLI5YeySEgcul8iuIWfQFZqRw+Qrjraw== - dependencies: - "@lerna/prerelease-id-from-version" "4.0.0" - "@lerna/validation-error" "4.0.0" - npm-package-arg "^8.1.0" - npmlog "^4.1.2" - semver "^7.3.4" - -"@lerna/package@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/package/-/package-4.0.0.tgz#1b4c259c4bcff45c876ee1d591a043aacbc0d6b7" - integrity sha512-l0M/izok6FlyyitxiQKr+gZLVFnvxRQdNhzmQ6nRnN9dvBJWn+IxxpM+cLqGACatTnyo9LDzNTOj2Db3+s0s8Q== - dependencies: - load-json-file "^6.2.0" - npm-package-arg "^8.1.0" - write-pkg "^4.0.0" - -"@lerna/prerelease-id-from-version@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-4.0.0.tgz#c7e0676fcee1950d85630e108eddecdd5b48c916" - integrity sha512-GQqguzETdsYRxOSmdFZ6zDBXDErIETWOqomLERRY54f4p+tk4aJjoVdd9xKwehC9TBfIFvlRbL1V9uQGHh1opg== - dependencies: - semver "^7.3.4" - -"@lerna/profiler@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/profiler/-/profiler-4.0.0.tgz#8a53ab874522eae15d178402bff90a14071908e9" - integrity sha512-/BaEbqnVh1LgW/+qz8wCuI+obzi5/vRE8nlhjPzdEzdmWmZXuCKyWSEzAyHOJWw1ntwMiww5dZHhFQABuoFz9Q== - dependencies: - fs-extra "^9.1.0" - npmlog "^4.1.2" - upath "^2.0.1" - -"@lerna/project@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/project/-/project-4.0.0.tgz#ff84893935833533a74deff30c0e64ddb7f0ba6b" - integrity sha512-o0MlVbDkD5qRPkFKlBZsXZjoNTWPyuL58564nSfZJ6JYNmgAptnWPB2dQlAc7HWRZkmnC2fCkEdoU+jioPavbg== - dependencies: - "@lerna/package" "4.0.0" - "@lerna/validation-error" "4.0.0" - cosmiconfig "^7.0.0" - dedent "^0.7.0" - dot-prop "^6.0.1" - glob-parent "^5.1.1" - globby "^11.0.2" - load-json-file "^6.2.0" - npmlog "^4.1.2" - p-map "^4.0.0" - resolve-from "^5.0.0" - write-json-file "^4.3.0" - -"@lerna/prompt@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/prompt/-/prompt-4.0.0.tgz#5ec69a803f3f0db0ad9f221dad64664d3daca41b" - integrity sha512-4Ig46oCH1TH5M7YyTt53fT6TuaKMgqUUaqdgxvp6HP6jtdak6+amcsqB8YGz2eQnw/sdxunx84DfI9XpoLj4bQ== - dependencies: - inquirer "^7.3.3" - npmlog "^4.1.2" - -"@lerna/publish@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/publish/-/publish-4.0.0.tgz#f67011305adeba120066a3b6d984a5bb5fceef65" - integrity sha512-K8jpqjHrChH22qtkytA5GRKIVFEtqBF6JWj1I8dWZtHs4Jywn8yB1jQ3BAMLhqmDJjWJtRck0KXhQQKzDK2UPg== - dependencies: - "@lerna/check-working-tree" "4.0.0" - "@lerna/child-process" "4.0.0" - "@lerna/collect-updates" "4.0.0" - "@lerna/command" "4.0.0" - "@lerna/describe-ref" "4.0.0" - "@lerna/log-packed" "4.0.0" - "@lerna/npm-conf" "4.0.0" - "@lerna/npm-dist-tag" "4.0.0" - "@lerna/npm-publish" "4.0.0" - "@lerna/otplease" "4.0.0" - "@lerna/output" "4.0.0" - "@lerna/pack-directory" "4.0.0" - "@lerna/prerelease-id-from-version" "4.0.0" - "@lerna/prompt" "4.0.0" - "@lerna/pulse-till-done" "4.0.0" - "@lerna/run-lifecycle" "4.0.0" - "@lerna/run-topologically" "4.0.0" - "@lerna/validation-error" "4.0.0" - "@lerna/version" "4.0.0" - fs-extra "^9.1.0" - libnpmaccess "^4.0.1" - npm-package-arg "^8.1.0" - npm-registry-fetch "^9.0.0" - npmlog "^4.1.2" - p-map "^4.0.0" - p-pipe "^3.1.0" - pacote "^11.2.6" - semver "^7.3.4" - -"@lerna/pulse-till-done@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/pulse-till-done/-/pulse-till-done-4.0.0.tgz#04bace7d483a8205c187b806bcd8be23d7bb80a3" - integrity sha512-Frb4F7QGckaybRhbF7aosLsJ5e9WuH7h0KUkjlzSByVycxY91UZgaEIVjS2oN9wQLrheLMHl6SiFY0/Pvo0Cxg== - dependencies: - npmlog "^4.1.2" - -"@lerna/query-graph@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/query-graph/-/query-graph-4.0.0.tgz#09dd1c819ac5ee3f38db23931143701f8a6eef63" - integrity sha512-YlP6yI3tM4WbBmL9GCmNDoeQyzcyg1e4W96y/PKMZa5GbyUvkS2+Jc2kwPD+5KcXou3wQZxSPzR3Te5OenaDdg== - dependencies: - "@lerna/package-graph" "4.0.0" - -"@lerna/resolve-symlink@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/resolve-symlink/-/resolve-symlink-4.0.0.tgz#6d006628a210c9b821964657a9e20a8c9a115e14" - integrity sha512-RtX8VEUzqT+uLSCohx8zgmjc6zjyRlh6i/helxtZTMmc4+6O4FS9q5LJas2uGO2wKvBlhcD6siibGt7dIC3xZA== - dependencies: - fs-extra "^9.1.0" - npmlog "^4.1.2" - read-cmd-shim "^2.0.0" - -"@lerna/rimraf-dir@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/rimraf-dir/-/rimraf-dir-4.0.0.tgz#2edf3b62d4eb0ef4e44e430f5844667d551ec25a" - integrity sha512-QNH9ABWk9mcMJh2/muD9iYWBk1oQd40y6oH+f3wwmVGKYU5YJD//+zMiBI13jxZRtwBx0vmBZzkBkK1dR11cBg== - dependencies: - "@lerna/child-process" "4.0.0" - npmlog "^4.1.2" - path-exists "^4.0.0" - rimraf "^3.0.2" - -"@lerna/run-lifecycle@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/run-lifecycle/-/run-lifecycle-4.0.0.tgz#e648a46f9210a9bcd7c391df6844498cb5079334" - integrity sha512-IwxxsajjCQQEJAeAaxF8QdEixfI7eLKNm4GHhXHrgBu185JcwScFZrj9Bs+PFKxwb+gNLR4iI5rpUdY8Y0UdGQ== - dependencies: - "@lerna/npm-conf" "4.0.0" - npm-lifecycle "^3.1.5" - npmlog "^4.1.2" - -"@lerna/run-topologically@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/run-topologically/-/run-topologically-4.0.0.tgz#af846eeee1a09b0c2be0d1bfb5ef0f7b04bb1827" - integrity sha512-EVZw9hGwo+5yp+VL94+NXRYisqgAlj0jWKWtAIynDCpghRxCE5GMO3xrQLmQgqkpUl9ZxQFpICgYv5DW4DksQA== - dependencies: - "@lerna/query-graph" "4.0.0" - p-queue "^6.6.2" - -"@lerna/run@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/run/-/run-4.0.0.tgz#4bc7fda055a729487897c23579694f6183c91262" - integrity sha512-9giulCOzlMPzcZS/6Eov6pxE9gNTyaXk0Man+iCIdGJNMrCnW7Dme0Z229WWP/UoxDKg71F2tMsVVGDiRd8fFQ== - dependencies: - "@lerna/command" "4.0.0" - "@lerna/filter-options" "4.0.0" - "@lerna/npm-run-script" "4.0.0" - "@lerna/output" "4.0.0" - "@lerna/profiler" "4.0.0" - "@lerna/run-topologically" "4.0.0" - "@lerna/timer" "4.0.0" - "@lerna/validation-error" "4.0.0" - p-map "^4.0.0" - -"@lerna/symlink-binary@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/symlink-binary/-/symlink-binary-4.0.0.tgz#21009f62d53a425f136cb4c1a32c6b2a0cc02d47" - integrity sha512-zualodWC4q1QQc1pkz969hcFeWXOsVYZC5AWVtAPTDfLl+TwM7eG/O6oP+Rr3fFowspxo6b1TQ6sYfDV6HXNWA== - dependencies: - "@lerna/create-symlink" "4.0.0" - "@lerna/package" "4.0.0" - fs-extra "^9.1.0" - p-map "^4.0.0" - -"@lerna/symlink-dependencies@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/symlink-dependencies/-/symlink-dependencies-4.0.0.tgz#8910eca084ae062642d0490d8972cf2d98e9ebbd" - integrity sha512-BABo0MjeUHNAe2FNGty1eantWp8u83BHSeIMPDxNq0MuW2K3CiQRaeWT3EGPAzXpGt0+hVzBrA6+OT0GPn7Yuw== - dependencies: - "@lerna/create-symlink" "4.0.0" - "@lerna/resolve-symlink" "4.0.0" - "@lerna/symlink-binary" "4.0.0" - fs-extra "^9.1.0" - p-map "^4.0.0" - p-map-series "^2.1.0" - -"@lerna/timer@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/timer/-/timer-4.0.0.tgz#a52e51bfcd39bfd768988049ace7b15c1fd7a6da" - integrity sha512-WFsnlaE7SdOvjuyd05oKt8Leg3ENHICnvX3uYKKdByA+S3g+TCz38JsNs7OUZVt+ba63nC2nbXDlUnuT2Xbsfg== - -"@lerna/validation-error@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/validation-error/-/validation-error-4.0.0.tgz#af9d62fe8304eaa2eb9a6ba1394f9aa807026d35" - integrity sha512-1rBOM5/koiVWlRi3V6dB863E1YzJS8v41UtsHgMr6gB2ncJ2LsQtMKlJpi3voqcgh41H8UsPXR58RrrpPpufyw== - dependencies: - npmlog "^4.1.2" - -"@lerna/version@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/version/-/version-4.0.0.tgz#532659ec6154d8a8789c5ab53878663e244e3228" - integrity sha512-otUgiqs5W9zGWJZSCCMRV/2Zm2A9q9JwSDS7s/tlKq4mWCYriWo7+wsHEA/nPTMDyYyBO5oyZDj+3X50KDUzeA== - dependencies: - "@lerna/check-working-tree" "4.0.0" - "@lerna/child-process" "4.0.0" - "@lerna/collect-updates" "4.0.0" - "@lerna/command" "4.0.0" - "@lerna/conventional-commits" "4.0.0" - "@lerna/github-client" "4.0.0" - "@lerna/gitlab-client" "4.0.0" - "@lerna/output" "4.0.0" - "@lerna/prerelease-id-from-version" "4.0.0" - "@lerna/prompt" "4.0.0" - "@lerna/run-lifecycle" "4.0.0" - "@lerna/run-topologically" "4.0.0" - "@lerna/validation-error" "4.0.0" - chalk "^4.1.0" - dedent "^0.7.0" - load-json-file "^6.2.0" - minimatch "^3.0.4" - npmlog "^4.1.2" - p-map "^4.0.0" - p-pipe "^3.1.0" - p-reduce "^2.1.0" - p-waterfall "^2.1.1" - semver "^7.3.4" - slash "^3.0.0" - temp-write "^4.0.0" - write-json-file "^4.3.0" - -"@lerna/write-log-file@4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@lerna/write-log-file/-/write-log-file-4.0.0.tgz#18221a38a6a307d6b0a5844dd592ad53fa27091e" - integrity sha512-XRG5BloiArpXRakcnPHmEHJp+4AtnhRtpDIHSghmXD5EichI1uD73J7FgPp30mm2pDRq3FdqB0NbwSEsJ9xFQg== - dependencies: - npmlog "^4.1.2" - write-file-atomic "^3.0.3" - -"@mdx-js/mdx@^1.6.22": - version "1.6.22" - resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-1.6.22.tgz#8a723157bf90e78f17dc0f27995398e6c731f1ba" - integrity sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA== - dependencies: - "@babel/core" "7.12.9" - "@babel/plugin-syntax-jsx" "7.12.1" - "@babel/plugin-syntax-object-rest-spread" "7.8.3" - "@mdx-js/util" "1.6.22" - babel-plugin-apply-mdx-type-prop "1.6.22" - babel-plugin-extract-import-names "1.6.22" - camelcase-css "2.0.1" - detab "2.0.4" - hast-util-raw "6.0.1" - lodash.uniq "4.5.0" - mdast-util-to-hast "10.0.1" - remark-footnotes "2.0.0" - remark-mdx "1.6.22" - remark-parse "8.0.3" - remark-squeeze-paragraphs "4.0.0" - style-to-object "0.3.0" - unified "9.2.0" - unist-builder "2.0.3" - unist-util-visit "2.0.3" - -"@mdx-js/react@^1.6.21", "@mdx-js/react@^1.6.22": - version "1.6.22" - resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.22.tgz#ae09b4744fddc74714ee9f9d6f17a66e77c43573" - integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg== - -"@mdx-js/util@1.6.22": - version "1.6.22" - resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.22.tgz#219dfd89ae5b97a8801f015323ffa4b62f45718b" - integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA== - -"@mui/base@5.0.0-alpha.91": - version "5.0.0-alpha.91" - resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-alpha.91.tgz#124d88829c9d5ee7a61ab2b0b2aee2ca35ee64f2" - integrity sha512-/W5amPDz+Lout4FtX5HOyx2Q+YL/EtZciFrx2DDRuUm4M/pWnjfDZAtM+0aqimEvuk3FU+/PuFc7IAyhCSX4Cg== - dependencies: - "@babel/runtime" "^7.17.2" - "@emotion/is-prop-valid" "^1.1.3" - "@mui/types" "^7.1.5" - "@mui/utils" "^5.9.1" - "@popperjs/core" "^2.11.5" - clsx "^1.2.1" - prop-types "^15.8.1" - react-is "^18.2.0" - -"@mui/icons-material@^5.1.1": - version "5.8.4" - resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.8.4.tgz#3f2907c9f8f5ce4d754cb8fb4b68b5a1abf4d095" - integrity sha512-9Z/vyj2szvEhGWDvb+gG875bOGm8b8rlHBKOD1+nA3PcgC3fV6W1AU6pfOorPeBfH2X4mb9Boe97vHvaSndQvA== - dependencies: - "@babel/runtime" "^7.17.2" - -"@mui/material@^5.8.3": - version "5.9.2" - resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.9.2.tgz#2526c33568b4c785b0784b0714a8f613cd9dcd46" - integrity sha512-FItBuj9bPdVier2g5OBG2HHlQLou4JuH3gdnY43tpJOrCpmWrbDVJZqrSufKJFO00qjvTYaGlJedIu+vXn79qw== - dependencies: - "@babel/runtime" "^7.17.2" - "@mui/base" "5.0.0-alpha.91" - "@mui/system" "^5.9.2" - "@mui/types" "^7.1.5" - "@mui/utils" "^5.9.1" - "@types/react-transition-group" "^4.4.5" - clsx "^1.2.1" - csstype "^3.1.0" - prop-types "^15.8.1" - react-is "^18.2.0" - react-transition-group "^4.4.2" - -"@mui/private-theming@^5.9.1": - version "5.9.1" - resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.9.1.tgz#4f714ed9ebd587373dc77b3fc69e9f3e720f0190" - integrity sha512-eIh2IZJInNTdgPLMo9cruzm8UDX5amBBxxsSoNre7lRj3wcsu3TG5OKjIbzkf4VxHHEhdPeNNQyt92k7L78u2A== - dependencies: - "@babel/runtime" "^7.17.2" - "@mui/utils" "^5.9.1" - prop-types "^15.8.1" - -"@mui/styled-engine@^5.8.7": - version "5.8.7" - resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.8.7.tgz#63d0779c07677fe76d4705a02c7ae99f89b50780" - integrity sha512-tVqtowjbYmiRq+qcqXK731L9eWoL9H8xTRhuTgaDGKdch1zlt4I2UwInUe1w2N9N/u3/jHsFbLcl1Un3uOwpQg== - dependencies: - "@babel/runtime" "^7.17.2" - "@emotion/cache" "^11.9.3" - csstype "^3.1.0" - prop-types "^15.8.1" - -"@mui/system@^5.6.2", "@mui/system@^5.9.2": - version "5.9.2" - resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.9.2.tgz#391b07db7f8fc924db55e7a23b7713b3a90b6a52" - integrity sha512-iOvt9tVeFapHL7f7M6BSIiKGMx6RTRvAmc8ipMnQ/MR5Qsxwnyv7qKtNC/K11Rk13Xx0VPaPAhyvBcsr3KdpHA== - dependencies: - "@babel/runtime" "^7.17.2" - "@mui/private-theming" "^5.9.1" - "@mui/styled-engine" "^5.8.7" - "@mui/types" "^7.1.5" - "@mui/utils" "^5.9.1" - clsx "^1.2.1" - csstype "^3.1.0" - prop-types "^15.8.1" - -"@mui/types@^7.1.5": - version "7.1.5" - resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.1.5.tgz#5e5cc49d719bc86522983359bc1f90eddcff0624" - integrity sha512-HnRXrxgHJYJcT8ZDdDCQIlqk0s0skOKD7eWs9mJgBUu70hyW4iA6Kiv3yspJR474RFH8hysKR65VVSzUSzkuwA== - -"@mui/utils@^5.9.1": - version "5.9.1" - resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.9.1.tgz#2b2c9dadbf8ba6561e145b5688fb7df5ef15a934" - integrity sha512-8+4adOR3xusyJwvbnZxcjqcmbWvl7Og+260ZKIrSvwnFs0aLubL+8MhiceeDDGcmb0bTKxfUgRJ96j32Jb7P+A== - dependencies: - "@babel/runtime" "^7.17.2" - "@types/prop-types" "^15.7.5" - "@types/react-is" "^16.7.1 || ^17.0.0" - prop-types "^15.8.1" - react-is "^18.2.0" - -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3": - version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== - dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" - -"@npmcli/arborist@^2.3.0", "@npmcli/arborist@^2.5.0", "@npmcli/arborist@^2.9.0": - version "2.10.0" - resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-2.10.0.tgz#424c2d73a7ae59c960b0cc7f74fed043e4316c2c" - integrity sha512-CLnD+zXG9oijEEzViimz8fbOoFVb7hoypiaf7p6giJhvYtrxLAyY3cZAMPIFQvsG731+02eMDp3LqVBNo7BaZA== - dependencies: - "@isaacs/string-locale-compare" "^1.0.1" - "@npmcli/installed-package-contents" "^1.0.7" - "@npmcli/map-workspaces" "^1.0.2" - "@npmcli/metavuln-calculator" "^1.1.0" - "@npmcli/move-file" "^1.1.0" - "@npmcli/name-from-folder" "^1.0.1" - "@npmcli/node-gyp" "^1.0.1" - "@npmcli/package-json" "^1.0.1" - "@npmcli/run-script" "^1.8.2" - bin-links "^2.2.1" - cacache "^15.0.3" - common-ancestor-path "^1.0.1" - json-parse-even-better-errors "^2.3.1" - json-stringify-nice "^1.1.4" - mkdirp "^1.0.4" - mkdirp-infer-owner "^2.0.0" - npm-install-checks "^4.0.0" - npm-package-arg "^8.1.5" - npm-pick-manifest "^6.1.0" - npm-registry-fetch "^11.0.0" - pacote "^11.3.5" - parse-conflict-json "^1.1.1" - proc-log "^1.0.0" - promise-all-reject-late "^1.0.0" - promise-call-limit "^1.0.1" - read-package-json-fast "^2.0.2" - readdir-scoped-modules "^1.1.0" - rimraf "^3.0.2" - semver "^7.3.5" - ssri "^8.0.1" - treeverse "^1.0.4" - walk-up-path "^1.0.0" - -"@npmcli/ci-detect@^1.0.0", "@npmcli/ci-detect@^1.2.0", "@npmcli/ci-detect@^1.3.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@npmcli/ci-detect/-/ci-detect-1.4.0.tgz#18478bbaa900c37bfbd8a2006a6262c62e8b0fe1" - integrity sha512-3BGrt6FLjqM6br5AhWRKTr3u5GIVkjRYeAFrMp3HjnfICrg4xOrVRwFavKT6tsp++bq5dluL5t8ME/Nha/6c1Q== - -"@npmcli/config@^2.3.0": - version "2.4.0" - resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-2.4.0.tgz#1447b0274f9502871dabd3ab1d8302472d515b1f" - integrity sha512-fwxu/zaZnvBJohXM3igzqa3P1IVYWi5N343XcKvKkJbAx+rTqegS5tAul4NLiMPQh6WoS5a4er6oo/ieUx1f4g== - dependencies: - ini "^2.0.0" - mkdirp-infer-owner "^2.0.0" - nopt "^5.0.0" - semver "^7.3.4" - walk-up-path "^1.0.0" - -"@npmcli/disparity-colors@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@npmcli/disparity-colors/-/disparity-colors-1.0.1.tgz#b23c864c9658f9f0318d5aa6d17986619989535c" - integrity sha512-kQ1aCTTU45mPXN+pdAaRxlxr3OunkyztjbbxDY/aIcPS5CnCUrx+1+NvA6pTcYR7wmLZe37+Mi5v3nfbwPxq3A== - dependencies: - ansi-styles "^4.3.0" - -"@npmcli/fs@^1.0.0": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257" - integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ== - dependencies: - "@gar/promisify" "^1.0.1" - semver "^7.3.5" - -"@npmcli/git@^2.0.7", "@npmcli/git@^2.1.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-2.1.0.tgz#2fbd77e147530247d37f325930d457b3ebe894f6" - integrity sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw== - dependencies: - "@npmcli/promise-spawn" "^1.3.2" - lru-cache "^6.0.0" - mkdirp "^1.0.4" - npm-pick-manifest "^6.1.1" - promise-inflight "^1.0.1" - promise-retry "^2.0.1" - semver "^7.3.5" - which "^2.0.2" - -"@npmcli/installed-package-contents@^1.0.6", "@npmcli/installed-package-contents@^1.0.7": - version "1.0.7" - resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz#ab7408c6147911b970a8abe261ce512232a3f4fa" - integrity sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw== - dependencies: - npm-bundled "^1.1.1" - npm-normalize-package-bin "^1.0.1" - -"@npmcli/map-workspaces@^1.0.2", "@npmcli/map-workspaces@^1.0.4": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@npmcli/map-workspaces/-/map-workspaces-1.0.4.tgz#915708b55afa25e20bc2c14a766c124c2c5d4cab" - integrity sha512-wVR8QxhyXsFcD/cORtJwGQodeeaDf0OxcHie8ema4VgFeqwYkFsDPnSrIRSytX8xR6nKPAH89WnwTcaU608b/Q== - dependencies: - "@npmcli/name-from-folder" "^1.0.1" - glob "^7.1.6" - minimatch "^3.0.4" - read-package-json-fast "^2.0.1" - -"@npmcli/metavuln-calculator@^1.1.0": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@npmcli/metavuln-calculator/-/metavuln-calculator-1.1.1.tgz#2f95ff3c6d88b366dd70de1c3f304267c631b458" - integrity sha512-9xe+ZZ1iGVaUovBVFI9h3qW+UuECUzhvZPxK9RaEA2mjU26o5D0JloGYWwLYvQELJNmBdQB6rrpuN8jni6LwzQ== - dependencies: - cacache "^15.0.5" - pacote "^11.1.11" - semver "^7.3.2" - -"@npmcli/move-file@^1.0.1", "@npmcli/move-file@^1.1.0": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674" - integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg== - dependencies: - mkdirp "^1.0.4" - rimraf "^3.0.2" - -"@npmcli/name-from-folder@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@npmcli/name-from-folder/-/name-from-folder-1.0.1.tgz#77ecd0a4fcb772ba6fe927e2e2e155fbec2e6b1a" - integrity sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA== - -"@npmcli/node-gyp@^1.0.1", "@npmcli/node-gyp@^1.0.2": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-1.0.3.tgz#a912e637418ffc5f2db375e93b85837691a43a33" - integrity sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA== - -"@npmcli/package-json@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-1.0.1.tgz#1ed42f00febe5293c3502fd0ef785647355f6e89" - integrity sha512-y6jnu76E9C23osz8gEMBayZmaZ69vFOIk8vR1FJL/wbEJ54+9aVG9rLTjQKSXfgYZEr50nw1txBBFfBZZe+bYg== - dependencies: - json-parse-even-better-errors "^2.3.1" - -"@npmcli/promise-spawn@^1.2.0", "@npmcli/promise-spawn@^1.3.2": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz#42d4e56a8e9274fba180dabc0aea6e38f29274f5" - integrity sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg== - dependencies: - infer-owner "^1.0.4" - -"@npmcli/run-script@^1.8.2", "@npmcli/run-script@^1.8.3", "@npmcli/run-script@^1.8.4", "@npmcli/run-script@^1.8.6": - version "1.8.6" - resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-1.8.6.tgz#18314802a6660b0d4baa4c3afe7f1ad39d8c28b7" - integrity sha512-e42bVZnC6VluBZBAFEr3YrdqSspG3bgilyg4nSLBJ7TRGNCzxHa92XAHxQBLYg0BmgwO4b2mf3h/l5EkEWRn3g== - dependencies: - "@npmcli/node-gyp" "^1.0.2" - "@npmcli/promise-spawn" "^1.3.2" - node-gyp "^7.1.0" - read-package-json-fast "^2.0.1" - -"@oclif/color@^1.0.0", "@oclif/color@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@oclif/color/-/color-1.0.1.tgz#20ab9205e0924c6388918a88874e1f4b32df9970" - integrity sha512-qjYr+izgWdIVOroiBKqTzQgc1r5Wd9QB1J7yGM2EeelqhBARiiVLRZL45vhV4zdyTRdDkZS0EBzFwQap+nliLA== - dependencies: - ansi-styles "^4.2.1" - chalk "^4.1.0" - strip-ansi "^6.0.1" - supports-color "^8.1.1" - tslib "^2" - -"@oclif/core@^1", "@oclif/core@^1.0.8", "@oclif/core@^1.1.1", "@oclif/core@^1.2.0", "@oclif/core@^1.3.0", "@oclif/core@^1.3.6": - version "1.13.0" - resolved "https://registry.yarnpkg.com/@oclif/core/-/core-1.13.0.tgz#65a0f6e2b4d939f654d484607b45e821146c40b5" - integrity sha512-/cn36jfnjUxodiJZEGHtGKkUAD15qeHHBC/+FiPkKQYAvGtcht3XRL3wDidOkp3awotN6DzxhHOu5ZrDKowmTQ== - dependencies: - "@oclif/linewrap" "^1.0.0" - "@oclif/screen" "^3.0.2" - ansi-escapes "^4.3.2" - ansi-styles "^4.3.0" - cardinal "^2.1.1" - chalk "^4.1.2" - clean-stack "^3.0.1" - cli-progress "^3.10.0" - debug "^4.3.4" - ejs "^3.1.6" - fs-extra "^9.1.0" - get-package-type "^0.1.0" - globby "^11.1.0" - hyperlinker "^1.0.0" - indent-string "^4.0.0" - is-wsl "^2.2.0" - js-yaml "^3.14.1" - natural-orderby "^2.0.3" - object-treeify "^1.1.33" - password-prompt "^1.1.2" - semver "^7.3.7" - string-width "^4.2.3" - strip-ansi "^6.0.1" - supports-color "^8.1.1" - supports-hyperlinks "^2.2.0" - tslib "^2.3.1" - widest-line "^3.1.0" - wrap-ansi "^7.0.0" - -"@oclif/errors@^1.3.5": - version "1.3.5" - resolved "https://registry.yarnpkg.com/@oclif/errors/-/errors-1.3.5.tgz#a1e9694dbeccab10fe2fe15acb7113991bed636c" - integrity sha512-OivucXPH/eLLlOT7FkCMoZXiaVYf8I/w1eTAM1+gKzfhALwWTusxEx7wBmW0uzvkSg/9ovWLycPaBgJbM3LOCQ== - dependencies: - clean-stack "^3.0.0" - fs-extra "^8.1" - indent-string "^4.0.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - -"@oclif/linewrap@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@oclif/linewrap/-/linewrap-1.0.0.tgz#aedcb64b479d4db7be24196384897b5000901d91" - integrity sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw== - -"@oclif/parser@^3.8.7": - version "3.8.7" - resolved "https://registry.yarnpkg.com/@oclif/parser/-/parser-3.8.7.tgz#236d48db05d0b00157d3b42d31f9dac7550d2a7c" - integrity sha512-b11xBmIUK+LuuwVGJpFs4LwQN2xj2cBWj2c4z1FtiXGrJ85h9xV6q+k136Hw0tGg1jQoRXuvuBnqQ7es7vO9/Q== - dependencies: - "@oclif/errors" "^1.3.5" - "@oclif/linewrap" "^1.0.0" - chalk "^4.1.0" - tslib "^2.3.1" - -"@oclif/plugin-help@^5", "@oclif/plugin-help@^5.1.12": - version "5.1.12" - resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-5.1.12.tgz#24a18631eb9b22cb55e1a3b8e4f6039fd42727e6" - integrity sha512-HvH/RubJxqCinP0vUWQLTOboT+SfjfL8h40s+PymkWaldIcXlpoRaJX50vz+SjZIs7uewZwEk8fzLqpF/BWXlg== - dependencies: - "@oclif/core" "^1.3.6" - -"@oclif/plugin-plugins@^2.0.1": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@oclif/plugin-plugins/-/plugin-plugins-2.1.0.tgz#af2def7992332e46137eac31c40947d9b077bff1" - integrity sha512-Bgt+QpTlX7+Q0HkVgtbUGYQlo/hyzNBAaXH5l16ou9Ji5wfi5T+niV5AzQ14R7JF8ZDOTbUOU/NRBJ2bzLCaZQ== - dependencies: - "@oclif/color" "^1.0.1" - "@oclif/core" "^1.2.0" - chalk "^4.1.2" - debug "^4.1.0" - fs-extra "^9.0" - http-call "^5.2.2" - load-json-file "^5.3.0" - npm-run-path "^4.0.1" - semver "^7.3.2" - tslib "^2.0.0" - yarn "^1.22.17" - -"@oclif/plugin-update@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@oclif/plugin-update/-/plugin-update-3.0.0.tgz#dc51f1a42d7b80825ebc1ee5f14310a0545c6b8f" - integrity sha512-uWYTPxea4cDoOgDYxPhOisJCcoJHbbXFSM69iB9VkenAMerUjjq1VrlwWAIzLc45ciWk13uef4nBLy2S0ADtOg== - dependencies: - "@oclif/color" "^1.0.0" - "@oclif/core" "^1.3.0" - cross-spawn "^7.0.3" - debug "^4.3.1" - filesize "^6.1.0" - fs-extra "^9.0.1" - http-call "^5.3.0" - inquirer "^8.2.0" - lodash.throttle "^4.1.1" - log-chopper "^1.0.2" - semver "^7.3.5" - tar-fs "^2.1.1" - -"@oclif/plugin-version@^1.0.4": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@oclif/plugin-version/-/plugin-version-1.1.1.tgz#d3de077f604b7d89ac40079bad467eabd9f76666" - integrity sha512-KdlnRI25zGA0ahjfTV2pY5tNcnwBStyxd9O3psyrG3ZlmH1Dhp/fjzlAj9BTHB6sSTCVwyhPVzCATN2QaoaIqQ== - dependencies: - "@oclif/core" "^1.1.1" - -"@oclif/plugin-warn-if-update-available@^2.0.4": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.0.4.tgz#3d509ca2394cccf65e6622be812d7be4065a60aa" - integrity sha512-9dprC1CWPjesg0Vf/rDSQH2tzJXhP1ow84cb2My1kj6e6ESulPKpctiCFSZ1WaCQFfq+crKhzlNoP/vRaXNUAg== - dependencies: - "@oclif/core" "^1.0.8" - chalk "^4.1.0" - debug "^4.1.0" - fs-extra "^9.0.1" - http-call "^5.2.2" - lodash "^4.17.21" - semver "^7.3.2" - -"@oclif/screen@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@oclif/screen/-/screen-3.0.2.tgz#969054308fe98d130c02844a45cc792199b75670" - integrity sha512-S/SF/XYJeevwIgHFmVDAFRUvM3m+OjhvCAYMk78ZJQCYCQ5wS7j+LTt1ZEv2jpEEGg2tx/F6TYYWxddNAYHrFQ== - -"@octokit/auth-token@^2.4.4": - version "2.5.0" - resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.5.0.tgz#27c37ea26c205f28443402477ffd261311f21e36" - integrity sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g== - dependencies: - "@octokit/types" "^6.0.3" - -"@octokit/core@^3.5.1": - version "3.6.0" - resolved "https://registry.yarnpkg.com/@octokit/core/-/core-3.6.0.tgz#3376cb9f3008d9b3d110370d90e0a1fcd5fe6085" - integrity sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q== - dependencies: - "@octokit/auth-token" "^2.4.4" - "@octokit/graphql" "^4.5.8" - "@octokit/request" "^5.6.3" - "@octokit/request-error" "^2.0.5" - "@octokit/types" "^6.0.3" - before-after-hook "^2.2.0" - universal-user-agent "^6.0.0" - -"@octokit/endpoint@^6.0.1": - version "6.0.12" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.12.tgz#3b4d47a4b0e79b1027fb8d75d4221928b2d05658" - integrity sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA== - dependencies: - "@octokit/types" "^6.0.3" - is-plain-object "^5.0.0" - universal-user-agent "^6.0.0" - -"@octokit/graphql@^4.5.8": - version "4.8.0" - resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.8.0.tgz#664d9b11c0e12112cbf78e10f49a05959aa22cc3" - integrity sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg== - dependencies: - "@octokit/request" "^5.6.0" - "@octokit/types" "^6.0.3" - universal-user-agent "^6.0.0" - -"@octokit/openapi-types@^12.11.0": - version "12.11.0" - resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-12.11.0.tgz#da5638d64f2b919bca89ce6602d059f1b52d3ef0" - integrity sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ== - -"@octokit/plugin-enterprise-rest@^6.0.1": - version "6.0.1" - resolved "https://registry.yarnpkg.com/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz#e07896739618dab8da7d4077c658003775f95437" - integrity sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw== - -"@octokit/plugin-paginate-rest@^2.16.8": - version "2.21.3" - resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz#7f12532797775640dbb8224da577da7dc210c87e" - integrity sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw== - dependencies: - "@octokit/types" "^6.40.0" - -"@octokit/plugin-request-log@^1.0.4": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz#5e50ed7083a613816b1e4a28aeec5fb7f1462e85" - integrity sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA== - -"@octokit/plugin-rest-endpoint-methods@^5.12.0": - version "5.16.2" - resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.16.2.tgz#7ee8bf586df97dd6868cf68f641354e908c25342" - integrity sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw== - dependencies: - "@octokit/types" "^6.39.0" - deprecation "^2.3.1" - -"@octokit/request-error@^2.0.5", "@octokit/request-error@^2.1.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.1.0.tgz#9e150357831bfc788d13a4fd4b1913d60c74d677" - integrity sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg== - dependencies: - "@octokit/types" "^6.0.3" - deprecation "^2.0.0" - once "^1.4.0" - -"@octokit/request@^5.6.0", "@octokit/request@^5.6.3": - version "5.6.3" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.6.3.tgz#19a022515a5bba965ac06c9d1334514eb50c48b0" - integrity sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A== - dependencies: - "@octokit/endpoint" "^6.0.1" - "@octokit/request-error" "^2.1.0" - "@octokit/types" "^6.16.1" - is-plain-object "^5.0.0" - node-fetch "^2.6.7" - universal-user-agent "^6.0.0" - -"@octokit/rest@^18.1.0": - version "18.12.0" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-18.12.0.tgz#f06bc4952fc87130308d810ca9d00e79f6988881" - integrity sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q== - dependencies: - "@octokit/core" "^3.5.1" - "@octokit/plugin-paginate-rest" "^2.16.8" - "@octokit/plugin-request-log" "^1.0.4" - "@octokit/plugin-rest-endpoint-methods" "^5.12.0" - -"@octokit/types@^6.0.3", "@octokit/types@^6.16.1", "@octokit/types@^6.39.0", "@octokit/types@^6.40.0": - version "6.41.0" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-6.41.0.tgz#e58ef78d78596d2fb7df9c6259802464b5f84a04" - integrity sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg== - dependencies: - "@octokit/openapi-types" "^12.11.0" - -"@orca-so/aquafarm@^0.0.12": - version "0.0.12" - resolved "https://registry.yarnpkg.com/@orca-so/aquafarm/-/aquafarm-0.0.12.tgz#255df50e9d8a408cebf600ee3507ff650484e94c" - integrity sha512-4vEkxeI5A5NHR9wre7Dtp9MYPCnke4v2PkaIv7933S490PErCYeqrlDPIEBTAKYWJpHFz5jR+h0bPFbmdMs3kw== - dependencies: - "@solana/spl-token" "^0.1.6" - "@solana/web3.js" "^1.20.0" - "@types/bn.js" "^5.1.0" - bn.js "^5.2.0" - buffer-layout "^1.2.1" - decimal.js "^10.3.0" - dotenv "^10.0.0" - eslint "^7.28.0" - mz "^2.7.0" - prompts "^2.4.1" - typescript "^4.3.2" - yargs "^17.0.1" - -"@orca-so/sdk@^1.2.24": - version "1.2.25" - resolved "https://registry.yarnpkg.com/@orca-so/sdk/-/sdk-1.2.25.tgz#3c00acb032567067a6d79528bb587b7057e183e8" - integrity sha512-9m4F9GgqNpK69IJ9SBg1//L471AO2X3cvG54jtM24sMIvMNiLiebdIrODLKIHyHcMouspK1qPTN20L64ymu8Bw== - dependencies: - "@orca-so/aquafarm" "^0.0.12" - "@orca-so/stablecurve" "^1.0.5" - "@solana/spl-token" "^0.1.5" - "@solana/spl-token-swap" "^0.1.2" - "@solana/web3.js" "^1.24.1" - decimal.js "^10.3.1" - -"@orca-so/stablecurve@^1.0.5": - version "1.0.6" - resolved "https://registry.yarnpkg.com/@orca-so/stablecurve/-/stablecurve-1.0.6.tgz#bff0d4c701e4361196ffb0fc641904e6d17df295" - integrity sha512-uZD1jVvOBxyuij4a5C2QT7Mv4m9lMABY/MvAz1xHnK+iJ5pkmSFdYEWzQZUrf8ElCRTYSN9yk7Kb18UmGZnT5g== - dependencies: - "@solana/spl-token" "^0.0.13" - bn.js "^5.1.3" - decimal.js "^10.2.1" - -"@polka/url@^1.0.0-next.20": - version "1.0.0-next.21" - resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.21.tgz#5de5a2385a35309427f6011992b544514d559aa1" - integrity sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g== - -"@popperjs/core@^2.11.5": - version "2.11.5" - resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.5.tgz#db5a11bf66bdab39569719555b0f76e138d7bd64" - integrity sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw== - -"@project-serum/anchor@^0.18.2": - version "0.18.2" - resolved "https://registry.yarnpkg.com/@project-serum/anchor/-/anchor-0.18.2.tgz#0f13b5c2046446b7c24cf28763eec90febb28485" - integrity sha512-uyjiN/3Ipp+4hrZRm/hG18HzGLZyvP790LXrCsGO3IWxSl28YRhiGEpKnZycfMW94R7nxdUoE3wY67V+ZHSQBQ== - dependencies: - "@project-serum/borsh" "^0.2.2" - "@solana/web3.js" "^1.17.0" - base64-js "^1.5.1" - bn.js "^5.1.2" - bs58 "^4.0.1" - buffer-layout "^1.2.0" - camelcase "^5.3.1" - crypto-hash "^1.3.0" - eventemitter3 "^4.0.7" - find "^0.3.0" - js-sha256 "^0.9.0" - pako "^2.0.3" - snake-case "^3.0.4" - toml "^3.0.0" - -"@project-serum/anchor@^0.24.1", "@project-serum/anchor@^0.24.2": - version "0.24.2" - resolved "https://registry.yarnpkg.com/@project-serum/anchor/-/anchor-0.24.2.tgz#a3c52a99605c80735f446ca9b3a4885034731004" - integrity sha512-0/718g8/DnEuwAidUwh5wLYphUYXhUbiClkuRNhvNoa+1Y8a4g2tJyxoae+emV+PG/Gikd/QUBNMkIcimiIRTA== - dependencies: - "@project-serum/borsh" "^0.2.5" - "@solana/web3.js" "^1.36.0" - base64-js "^1.5.1" - bn.js "^5.1.2" - bs58 "^4.0.1" - buffer-layout "^1.2.2" - camelcase "^5.3.1" - cross-fetch "^3.1.5" - crypto-hash "^1.3.0" - eventemitter3 "^4.0.7" - js-sha256 "^0.9.0" - pako "^2.0.3" - snake-case "^3.0.4" - toml "^3.0.0" - -"@project-serum/borsh@^0.2.2", "@project-serum/borsh@^0.2.5": - version "0.2.5" - resolved "https://registry.yarnpkg.com/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663" - integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q== - dependencies: - bn.js "^5.1.2" - buffer-layout "^1.2.0" - -"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" - integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== - -"@protobufjs/base64@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" - integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== - -"@protobufjs/codegen@^2.0.4": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" - integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== - -"@protobufjs/eventemitter@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" - integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== - -"@protobufjs/fetch@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" - integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== - dependencies: - "@protobufjs/aspromise" "^1.1.1" - "@protobufjs/inquire" "^1.1.0" - -"@protobufjs/float@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" - integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== - -"@protobufjs/inquire@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" - integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== - -"@protobufjs/path@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" - integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== - -"@protobufjs/pool@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" - integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== - -"@protobufjs/utf8@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" - integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== - -"@react-spring/animated@~9.5.2": - version "9.5.2" - resolved "https://registry.yarnpkg.com/@react-spring/animated/-/animated-9.5.2.tgz#42785b4f369d9715e9ee32c04b78483e7bb85489" - integrity sha512-oRlX+MmYLbK8IuUZR7SQUnRjXxJ4PMIZeBkBd1SUWVgVJAHMTfJzPltzm+I6p59qX+qLlklYHfnWaonQKDqLuQ== - dependencies: - "@react-spring/shared" "~9.5.2" - "@react-spring/types" "~9.5.2" - -"@react-spring/core@~9.5.2": - version "9.5.2" - resolved "https://registry.yarnpkg.com/@react-spring/core/-/core-9.5.2.tgz#c8450783ce87a82d3f9ab21e2650e42922398ff7" - integrity sha512-UMRtFH6EfebMp/NMDGCUY5+hZFXsg9iT9hzt/iPzJSz2WMXKBjLoFZHJXcmiVOrIhzHmg1O0pFECn1Wp6pZ5Gw== - dependencies: - "@react-spring/animated" "~9.5.2" - "@react-spring/rafz" "~9.5.2" - "@react-spring/shared" "~9.5.2" - "@react-spring/types" "~9.5.2" - -"@react-spring/konva@~9.5.2": - version "9.5.2" - resolved "https://registry.yarnpkg.com/@react-spring/konva/-/konva-9.5.2.tgz#cbc7c75c55c7946481f86c7392a6656bb5b1bf4a" - integrity sha512-FN8LpbGQtm2pllU9mOyYjYwvLtA9EiIPWk2NVuhhX+5lJZrdCWuEY7EyFpK8PtgZXBdVj8bj7eIu1LlTnARW/A== - dependencies: - "@react-spring/animated" "~9.5.2" - "@react-spring/core" "~9.5.2" - "@react-spring/shared" "~9.5.2" - "@react-spring/types" "~9.5.2" - -"@react-spring/native@~9.5.2": - version "9.5.2" - resolved "https://registry.yarnpkg.com/@react-spring/native/-/native-9.5.2.tgz#218fa228a746cb2f535ea59b317d2e99cdfed02d" - integrity sha512-G9BCAKVADLweLR43uyMnTrOnYDb4BboYvqKY+0X1fLs45PNrfbBXnSLot4g+5x3HjblypJgNq7CjHlqZKI980g== - dependencies: - "@react-spring/animated" "~9.5.2" - "@react-spring/core" "~9.5.2" - "@react-spring/shared" "~9.5.2" - "@react-spring/types" "~9.5.2" - -"@react-spring/rafz@~9.5.2": - version "9.5.2" - resolved "https://registry.yarnpkg.com/@react-spring/rafz/-/rafz-9.5.2.tgz#1264d5df09717cf46d55055da2c55ff84f59073f" - integrity sha512-xHSRXKKBI/wDUkZGrspkOm4VlgN6lZi8Tw9Jzibp9QKf3neoof+U2mDNgklvnLaasymtUwAq9o4ZfFvQIVNgPQ== - -"@react-spring/shared@~9.5.2": - version "9.5.2" - resolved "https://registry.yarnpkg.com/@react-spring/shared/-/shared-9.5.2.tgz#e0a252e06daa3927964460fef05d8092e7d78ffc" - integrity sha512-/OSf2sjwY4BUnjZL6xMC+H3WxOOhMUCk+yZwgdj40XuyUpk6E6tYyiPeD9Yq5GLsZHodkvE1syVMRVReL4ndAg== - dependencies: - "@react-spring/rafz" "~9.5.2" - "@react-spring/types" "~9.5.2" - -"@react-spring/three@~9.5.2": - version "9.5.2" - resolved "https://registry.yarnpkg.com/@react-spring/three/-/three-9.5.2.tgz#965ff4e729929ebbb9a1f8e84f3f4acb6acec4f9" - integrity sha512-3H7Lv8BJZ3dajh0yJA3m9rEbqz5ZNrTCAkhVOeLqgvBlcWU5qVs4luYA1Z7H4vZnLqVtzv+kHAyg3XIpuTOXhQ== - dependencies: - "@react-spring/animated" "~9.5.2" - "@react-spring/core" "~9.5.2" - "@react-spring/shared" "~9.5.2" - "@react-spring/types" "~9.5.2" - -"@react-spring/types@~9.5.2": - version "9.5.2" - resolved "https://registry.yarnpkg.com/@react-spring/types/-/types-9.5.2.tgz#cce1b03afbafb23edfb9cd8c517cc7462abffb65" - integrity sha512-n/wBRSHPqTmEd4BFWY6TeR1o/UY+3ujoqMxLjqy90CcY/ozJzDRuREL3c+pxMeTF2+B7dX33dTPCtFMX51nbxg== - -"@react-spring/web@~9.5.2": - version "9.5.2" - resolved "https://registry.yarnpkg.com/@react-spring/web/-/web-9.5.2.tgz#762ee6b3c8fea40281e1298f5cf1c0515ad6a794" - integrity sha512-cusTjbOGTgtbsnpBDjb6Ia+B0lQLE0Fk5rGDog6Sww7hWnLIQ521PMiOBnAWtkntB9eXDUfj7L91nwJviEC0lw== - dependencies: - "@react-spring/animated" "~9.5.2" - "@react-spring/core" "~9.5.2" - "@react-spring/shared" "~9.5.2" - "@react-spring/types" "~9.5.2" - -"@react-spring/zdog@~9.5.2": - version "9.5.2" - resolved "https://registry.yarnpkg.com/@react-spring/zdog/-/zdog-9.5.2.tgz#a3e451378c23caa4381b5821d3d52c3017740c55" - integrity sha512-zUX8RzX8gM51g8NJ5Qaf15KNKQgN3qN/8m5FvqmiqZ5ZGqjoHkbCoMD3o2MICTUN1l+d4eUu9TYrmiO2bgJo/g== - dependencies: - "@react-spring/animated" "~9.5.2" - "@react-spring/core" "~9.5.2" - "@react-spring/shared" "~9.5.2" - "@react-spring/types" "~9.5.2" - -"@saberhq/option-utils@^1.13.32": - version "1.13.32" - resolved "https://registry.yarnpkg.com/@saberhq/option-utils/-/option-utils-1.13.32.tgz#143eb446c2c8d743690a900ae1688c9209fbcd05" - integrity sha512-xkpXZ82EGPJwT+CGjyhZ6mAQW0KpY+3hBaXAhrkv6M0IPgj2xGRYJ+WdwBvF/WeTgmFxGHCp7o1DmwjR2/XXbA== - dependencies: - tslib "^2.4.0" - -"@saberhq/solana-contrib@^1.13.32": - version "1.13.32" - resolved "https://registry.yarnpkg.com/@saberhq/solana-contrib/-/solana-contrib-1.13.32.tgz#ace608df953c1e92b8cad388835dce5d1729f7a7" - integrity sha512-W0F5W1CJjk2ACuAYjGxr/nB+pDHsmg2A6F+d+XRM6/EES/9ZoIINHCA1dnPsTa0p4PnC1S7BtCrv9aERzwRKhg== - dependencies: - "@saberhq/option-utils" "^1.13.32" - "@solana/buffer-layout" "^4.0.0" - "@types/promise-retry" "^1.1.3" - "@types/retry" "^0.12.2" - promise-retry "^2.0.1" - retry "^0.13.1" - tiny-invariant "^1.2.0" - tslib "^2.4.0" - -"@saberhq/token-utils@^1.13.32": - version "1.13.32" - resolved "https://registry.yarnpkg.com/@saberhq/token-utils/-/token-utils-1.13.32.tgz#2acc98bd4d3732b826396a70b958198e0d20dee8" - integrity sha512-n5ECiw82IQJwyq9bTkcrbNWVi+lAQoQlJlTmIye8odUQATBsqOWN+clqfrFkn/UMmezO60bo34bUaM0Oir7Pew== - dependencies: - "@saberhq/solana-contrib" "^1.13.32" - "@solana/buffer-layout" "^4.0.0" - "@solana/spl-token" "^0.1.8" - "@ubeswap/token-math" "^5.1.6" - tiny-invariant "^1.2.0" - tslib "^2.4.0" - -"@sideway/address@^4.1.3": - version "4.1.4" - resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" - integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== - dependencies: - "@hapi/hoek" "^9.0.0" - -"@sideway/formula@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" - integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== - -"@sideway/pinpoint@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" - integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== - -"@sindresorhus/is@^0.14.0": - version "0.14.0" - resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" - integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== - -"@slorber/static-site-generator-webpack-plugin@^4.0.4": - version "4.0.7" - resolved "https://registry.yarnpkg.com/@slorber/static-site-generator-webpack-plugin/-/static-site-generator-webpack-plugin-4.0.7.tgz#fc1678bddefab014e2145cbe25b3ce4e1cfc36f3" - integrity sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA== - dependencies: - eval "^0.1.8" - p-map "^4.0.0" - webpack-sources "^3.2.2" - -"@solana/buffer-layout-utils@^0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz#b45a6cab3293a2eb7597cceb474f229889d875ca" - integrity sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g== - dependencies: - "@solana/buffer-layout" "^4.0.0" - "@solana/web3.js" "^1.32.0" - bigint-buffer "^1.1.5" - bignumber.js "^9.0.1" - -"@solana/buffer-layout@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@solana/buffer-layout/-/buffer-layout-3.0.0.tgz#b9353caeb9a1589cb77a1b145bcb1a9a93114326" - integrity sha512-MVdgAKKL39tEs0l8je0hKaXLQFb7Rdfb0Xg2LjFZd8Lfdazkg6xiS98uAZrEKvaoF3i4M95ei9RydkGIDMeo3w== - dependencies: - buffer "~6.0.3" - -"@solana/buffer-layout@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@solana/buffer-layout/-/buffer-layout-4.0.0.tgz#75b1b11adc487234821c81dfae3119b73a5fd734" - integrity sha512-lR0EMP2HC3+Mxwd4YcnZb0smnaDw7Bl2IQWZiTevRH5ZZBZn6VRWn3/92E3qdU4SSImJkA6IDHawOHAnx/qUvQ== - dependencies: - buffer "~6.0.3" - -"@solana/spl-governance@^0.0.34": - version "0.0.34" - resolved "https://registry.yarnpkg.com/@solana/spl-governance/-/spl-governance-0.0.34.tgz#c61d81d356dbcee961bbc85e5d3538846fea57ad" - integrity sha512-tZppBiiVkUa5v+B/Ds+TqZ4yxR/vaIYLRxBk7x6R22dwk4/9SU87bVE60kRdDqTdMzqScFxIMdhaGl/fCX533A== - dependencies: - "@solana/web3.js" "^1.22.0" - bignumber.js "^9.0.1" - bn.js "^5.1.3" - borsh "^0.3.1" - bs58 "^4.0.1" - superstruct "^0.15.2" - -"@solana/spl-token-swap@^0.1.2": - version "0.1.4" - resolved "https://registry.yarnpkg.com/@solana/spl-token-swap/-/spl-token-swap-0.1.4.tgz#f776d97c37987c85ad9374afe5c91be2069fb7b4" - integrity sha512-q0vHo1m6UwqXTpKM4sk/gnPk8BopPJ+qx+qXkx0pMGiBep/66MAj7Drx186xStyqEXVuXtvgPEPIEREVJDKt/w== - dependencies: - "@solana/buffer-layout" "^4.0.0" - "@solana/web3.js" "^1.42.0" - bn.js "^5.1.3" - -"@solana/spl-token-v2@npm:@solana/spl-token@^0.2.0": - version "0.2.0" - resolved "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.2.0.tgz#329bb6babb5de0f9c40035ddb1657f01a8347acd" - integrity sha512-RWcn31OXtdqIxmkzQfB2R+WpsJOVS6rKuvpxJFjvik2LyODd+WN58ZP3Rpjpro03fscGAkzlFuP3r42doRJgyQ== - dependencies: - "@solana/buffer-layout" "^4.0.0" - "@solana/buffer-layout-utils" "^0.2.0" - "@solana/web3.js" "^1.32.0" - start-server-and-test "^1.14.0" - -"@solana/spl-token@^0.0.13": - version "0.0.13" - resolved "https://registry.yarnpkg.com/@solana/spl-token/-/spl-token-0.0.13.tgz#5e0b235b1f8b34643280401dbfddeb34d13d1acd" - integrity sha512-WT8M9V/hxURR5jLbhr3zgwVsgcY6m8UhHtK045w7o+jx8FJ9MKARkj387WBFU7mKiFq0k8jw/8YL7XmnIUuH8Q== - dependencies: - "@babel/runtime" "^7.10.5" - "@solana/web3.js" "^0.86.1" - bn.js "^5.0.0" - buffer-layout "^1.2.0" - dotenv "8.2.0" - mkdirp "1.0.4" - -"@solana/spl-token@^0.1.5", "@solana/spl-token@^0.1.6", "@solana/spl-token@^0.1.8": - version "0.1.8" - resolved "https://registry.yarnpkg.com/@solana/spl-token/-/spl-token-0.1.8.tgz#f06e746341ef8d04165e21fc7f555492a2a0faa6" - integrity sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ== - dependencies: - "@babel/runtime" "^7.10.5" - "@solana/web3.js" "^1.21.0" - bn.js "^5.1.0" - buffer "6.0.3" - buffer-layout "^1.2.0" - dotenv "10.0.0" - -"@solana/web3.js@1.33.0": - version "1.33.0" - resolved "https://registry.yarnpkg.com/@solana/web3.js/-/web3.js-1.33.0.tgz#3b8c0b4cd259ffe8764937f1001f79958c5d9533" - integrity sha512-R53wvQQsUKCCJ9UmOfDlxCwC94jzjmpjr6wT/Xf1uFavZblSLAtzLaF4vbGIS465lk3mW6oJMtASd8cqSnr8Mw== - dependencies: - "@babel/runtime" "^7.12.5" - "@ethersproject/sha2" "^5.5.0" - "@solana/buffer-layout" "^3.0.0" - bn.js "^5.0.0" - borsh "^0.4.0" - bs58 "^4.0.1" - buffer "6.0.1" - cross-fetch "^3.1.4" - jayson "^3.4.4" - js-sha3 "^0.8.0" - rpc-websockets "^7.4.2" - secp256k1 "^4.0.2" - superstruct "^0.14.2" - tweetnacl "^1.0.0" - -"@solana/web3.js@^0.86.1": - version "0.86.4" - resolved "https://registry.yarnpkg.com/@solana/web3.js/-/web3.js-0.86.4.tgz#69216d3928ca4727c25a1ea96c405e897156ac3b" - integrity sha512-FpabDmdyxBN5aHIVUWc9Q6pXJFWiLRm/xeyxFg9O9ICHjiUkd38omds7G0CAmykIccG7zaMziwtkXp+0KvQOhA== - dependencies: - "@babel/runtime" "^7.3.1" - bn.js "^5.0.0" - bs58 "^4.0.1" - buffer "^5.4.3" - buffer-layout "^1.2.0" - crypto-hash "^1.2.2" - esdoc-inject-style-plugin "^1.0.0" - jayson "^3.0.1" - keccak "^3.0.1" - mz "^2.7.0" - node-fetch "^2.2.0" - npm-run-all "^4.1.5" - rpc-websockets "^7.4.2" - secp256k1 "^4.0.2" - superstruct "^0.8.3" - tweetnacl "^1.0.0" - ws "^7.0.0" - -"@solana/web3.js@^1.17.0", "@solana/web3.js@^1.20.0", "@solana/web3.js@^1.21.0", "@solana/web3.js@^1.22.0", "@solana/web3.js@^1.24.1", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.33.0", "@solana/web3.js@^1.35.1", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.42.0", "@solana/web3.js@^1.43.5", "@solana/web3.js@^1.44.3", "@solana/web3.js@^1.50.1": - version "1.50.1" - resolved "https://registry.yarnpkg.com/@solana/web3.js/-/web3.js-1.50.1.tgz#dae726a06267d1bcd88b1e3cd8ae44c709302dcf" - integrity sha512-1l9N/nS8pJEA2YibNT8wa072718O0/A1eKWE0+pdWC5wDGQgBNxZSLuv7Cq5Dcn46WsZ5J5ZstK89q8J/ZZaQA== - dependencies: - "@babel/runtime" "^7.12.5" - "@ethersproject/sha2" "^5.5.0" - "@solana/buffer-layout" "^4.0.0" - bigint-buffer "^1.1.5" - bn.js "^5.0.0" - borsh "^0.7.0" - bs58 "^4.0.1" - buffer "6.0.1" - fast-stable-stringify "^1.0.0" - jayson "^3.4.4" - js-sha3 "^0.8.0" - node-fetch "2" - react-native-url-polyfill "^1.3.0" - rpc-websockets "^7.5.0" - secp256k1 "^4.0.2" - superstruct "^0.14.2" - tweetnacl "^1.0.0" - -"@svgr/babel-plugin-add-jsx-attribute@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz#81ef61947bb268eb9d50523446f9c638fb355906" - integrity sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg== - -"@svgr/babel-plugin-add-jsx-attribute@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.3.1.tgz#b9a5d84902be75a05ede92e70b338d28ab63fa74" - integrity sha512-jDBKArXYO1u0B1dmd2Nf8Oy6aTF5vLDfLoO9Oon/GLkqZ/NiggYWZA+a2HpUMH4ITwNqS3z43k8LWApB8S583w== - -"@svgr/babel-plugin-remove-jsx-attribute@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz#6b2c770c95c874654fd5e1d5ef475b78a0a962ef" - integrity sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg== - -"@svgr/babel-plugin-remove-jsx-attribute@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.3.1.tgz#4877995452efc997b36777abe1fde9705ef78e8b" - integrity sha512-dQzyJ4prwjcFd929T43Z8vSYiTlTu8eafV40Z2gO7zy/SV5GT+ogxRJRBIKWomPBOiaVXFg3jY4S5hyEN3IBjQ== - -"@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz#25621a8915ed7ad70da6cea3d0a6dbc2ea933efd" - integrity sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA== - -"@svgr/babel-plugin-remove-jsx-empty-expression@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.3.1.tgz#2d67a0e92904c9be149a5b22d3a3797ce4d7b514" - integrity sha512-HBOUc1XwSU67fU26V5Sfb8MQsT0HvUyxru7d0oBJ4rA2s4HW3PhyAPC7fV/mdsSGpAvOdd8Wpvkjsr0fWPUO7A== - -"@svgr/babel-plugin-replace-jsx-attribute-value@^5.0.1": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz#0b221fc57f9fcd10e91fe219e2cd0dd03145a897" - integrity sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ== - -"@svgr/babel-plugin-replace-jsx-attribute-value@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.3.1.tgz#306f5247139c53af70d1778f2719647c747998ee" - integrity sha512-C12e6aN4BXAolRrI601gPn5MDFCRHO7C4TM8Kks+rDtl8eEq+NN1sak0eAzJu363x3TmHXdZn7+Efd2nr9I5dA== - -"@svgr/babel-plugin-svg-dynamic-title@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz#139b546dd0c3186b6e5db4fefc26cb0baea729d7" - integrity sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg== - -"@svgr/babel-plugin-svg-dynamic-title@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.3.1.tgz#6ce26d34cbc93eb81737ef528528907c292e7aa2" - integrity sha512-6NU55Mmh3M5u2CfCCt6TX29/pPneutrkJnnDCHbKZnjukZmmgUAZLtZ2g6ZoSPdarowaQmAiBRgAHqHmG0vuqA== - -"@svgr/babel-plugin-svg-em-dimensions@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz#6543f69526632a133ce5cabab965deeaea2234a0" - integrity sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw== - -"@svgr/babel-plugin-svg-em-dimensions@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.3.1.tgz#5ade2a724b290873c30529d1d8cd23523856287a" - integrity sha512-HV1NGHYTTe1vCNKlBgq/gKuCSfaRlKcHIADn7P8w8U3Zvujdw1rmusutghJ1pZJV7pDt3Gt8ws+SVrqHnBO/Qw== - -"@svgr/babel-plugin-transform-react-native-svg@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz#00bf9a7a73f1cad3948cdab1f8dfb774750f8c80" - integrity sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q== - -"@svgr/babel-plugin-transform-react-native-svg@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.3.1.tgz#d654f509d692c3a09dfb475757a44bd9f6ad7ddf" - integrity sha512-2wZhSHvTolFNeKDAN/ZmIeSz2O9JSw72XD+o2bNp2QAaWqa8KGpn5Yk5WHso6xqfSAiRzAE+GXlsrBO4UP9LLw== - -"@svgr/babel-plugin-transform-svg-component@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz#583a5e2a193e214da2f3afeb0b9e8d3250126b4a" - integrity sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ== - -"@svgr/babel-plugin-transform-svg-component@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.3.1.tgz#21a285dbffdce9567c437ebf0d081bf9210807e6" - integrity sha512-cZ8Tr6ZAWNUFfDeCKn/pGi976iWSkS8ijmEYKosP+6ktdZ7lW9HVLHojyusPw3w0j8PI4VBeWAXAmi/2G7owxw== - -"@svgr/babel-preset@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-5.5.0.tgz#8af54f3e0a8add7b1e2b0fcd5a882c55393df327" - integrity sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig== - dependencies: - "@svgr/babel-plugin-add-jsx-attribute" "^5.4.0" - "@svgr/babel-plugin-remove-jsx-attribute" "^5.4.0" - "@svgr/babel-plugin-remove-jsx-empty-expression" "^5.0.1" - "@svgr/babel-plugin-replace-jsx-attribute-value" "^5.0.1" - "@svgr/babel-plugin-svg-dynamic-title" "^5.4.0" - "@svgr/babel-plugin-svg-em-dimensions" "^5.4.0" - "@svgr/babel-plugin-transform-react-native-svg" "^5.4.0" - "@svgr/babel-plugin-transform-svg-component" "^5.5.0" - -"@svgr/babel-preset@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-6.3.1.tgz#8bd1ead79637d395e9362b01dd37cfd59702e152" - integrity sha512-tQtWtzuMMQ3opH7je+MpwfuRA1Hf3cKdSgTtAYwOBDfmhabP7rcTfBi3E7V3MuwJNy/Y02/7/RutvwS1W4Qv9g== - dependencies: - "@svgr/babel-plugin-add-jsx-attribute" "^6.3.1" - "@svgr/babel-plugin-remove-jsx-attribute" "^6.3.1" - "@svgr/babel-plugin-remove-jsx-empty-expression" "^6.3.1" - "@svgr/babel-plugin-replace-jsx-attribute-value" "^6.3.1" - "@svgr/babel-plugin-svg-dynamic-title" "^6.3.1" - "@svgr/babel-plugin-svg-em-dimensions" "^6.3.1" - "@svgr/babel-plugin-transform-react-native-svg" "^6.3.1" - "@svgr/babel-plugin-transform-svg-component" "^6.3.1" - -"@svgr/core@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/core/-/core-5.5.0.tgz#82e826b8715d71083120fe8f2492ec7d7874a579" - integrity sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ== - dependencies: - "@svgr/plugin-jsx" "^5.5.0" - camelcase "^6.2.0" - cosmiconfig "^7.0.0" - -"@svgr/core@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/core/-/core-6.3.1.tgz#752adf49d8d5473b15d76ca741961de093f715bd" - integrity sha512-Sm3/7OdXbQreemf9aO25keerZSbnKMpGEfmH90EyYpj1e8wMD4TuwJIb3THDSgRMWk1kYJfSRulELBy4gVgZUA== - dependencies: - "@svgr/plugin-jsx" "^6.3.1" - camelcase "^6.2.0" - cosmiconfig "^7.0.1" - -"@svgr/hast-util-to-babel-ast@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz#5ee52a9c2533f73e63f8f22b779f93cd432a5461" - integrity sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ== - dependencies: - "@babel/types" "^7.12.6" - -"@svgr/hast-util-to-babel-ast@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.3.1.tgz#59614e24d2a4a28010e02089213b3448d905769d" - integrity sha512-NgyCbiTQIwe3wHe/VWOUjyxmpUmsrBjdoIxKpXt3Nqc3TN30BpJG22OxBvVzsAh9jqep0w0/h8Ywvdk3D9niNQ== - dependencies: - "@babel/types" "^7.18.4" - entities "^4.3.0" - -"@svgr/plugin-jsx@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz#1aa8cd798a1db7173ac043466d7b52236b369000" - integrity sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA== - dependencies: - "@babel/core" "^7.12.3" - "@svgr/babel-preset" "^5.5.0" - "@svgr/hast-util-to-babel-ast" "^5.5.0" - svg-parser "^2.0.2" - -"@svgr/plugin-jsx@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-6.3.1.tgz#de7b2de824296b836d6b874d498377896e367f50" - integrity sha512-r9+0mYG3hD4nNtUgsTXWGYJomv/bNd7kC16zvsM70I/bGeoCi/3lhTmYqeN6ChWX317OtQCSZZbH4wq9WwoXbw== - dependencies: - "@babel/core" "^7.18.5" - "@svgr/babel-preset" "^6.3.1" - "@svgr/hast-util-to-babel-ast" "^6.3.1" - svg-parser "^2.0.4" - -"@svgr/plugin-svgo@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz#02da55d85320549324e201c7b2e53bf431fcc246" - integrity sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ== - dependencies: - cosmiconfig "^7.0.0" - deepmerge "^4.2.2" - svgo "^1.2.2" - -"@svgr/plugin-svgo@^6.3.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-6.3.1.tgz#3c1ff2efaed10e5c5d35a6cae7bacaedc18b5d4a" - integrity sha512-yJIjTDKPYqzFVjmsbH5EdIwEsmKxjxdXSGJVLeUgwZOZPAkNQmD1v7LDbOdOKbR44FG8465Du+zWPdbYGnbMbw== - dependencies: - cosmiconfig "^7.0.1" - deepmerge "^4.2.2" - svgo "^2.8.0" - -"@svgr/webpack@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-5.5.0.tgz#aae858ee579f5fa8ce6c3166ef56c6a1b381b640" - integrity sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g== - dependencies: - "@babel/core" "^7.12.3" - "@babel/plugin-transform-react-constant-elements" "^7.12.1" - "@babel/preset-env" "^7.12.1" - "@babel/preset-react" "^7.12.5" - "@svgr/core" "^5.5.0" - "@svgr/plugin-jsx" "^5.5.0" - "@svgr/plugin-svgo" "^5.5.0" - loader-utils "^2.0.0" - -"@svgr/webpack@^6.2.1": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-6.3.1.tgz#001d03236ebb03bf47c0a4b92d5423e05095ebe6" - integrity sha512-eODxwIUShLxSMaRjzJtrj9wg89D75JLczvWg9SaB5W+OtVTkiC1vdGd8+t+pf5fTlBOy4RRXAq7x1E3DUl3D0A== - dependencies: - "@babel/core" "^7.18.5" - "@babel/plugin-transform-react-constant-elements" "^7.17.12" - "@babel/preset-env" "^7.18.2" - "@babel/preset-react" "^7.17.12" - "@babel/preset-typescript" "^7.17.12" - "@svgr/core" "^6.3.1" - "@svgr/plugin-jsx" "^6.3.1" - "@svgr/plugin-svgo" "^6.3.1" - -"@switchboard-xyz/common@^2.0.0": - version "2.0.0" - resolved "https://registry.npmjs.org/@switchboard-xyz/common/-/common-2.0.0.tgz#8c3551b3611c4a2348c46879c0ab2ea188a1f753" - integrity sha512-hC7J7NShGQHjWaCU7+w6tEtZ3KljxMIKJe5IaxPxD+cgdxhx58UMjngyevaCcle33aPyFZ/tbpm0tU2ZqzqZtQ== - dependencies: - big.js "^6.2.1" - bn.js "^5.2.1" - protobufjs "^6.11.3" - -"@switchboard-xyz/switchboard-v2@^0.0.131": - version "0.0.131" - resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.131.tgz#d9ab8e721bb87387f082e2993b0786871459d593" - integrity sha512-rtLxIyiIqyiP8gtgeHMpMQfIYbzO5b2ogP0E/7E1gGL3zSCjtPc2SSBt6uqmvfpa4YesMZuAN0qT7SRrFK7RvQ== - dependencies: - "@project-serum/anchor" "^0.24.2" - "@solana/spl-governance" "^0.0.34" - "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" - "@solana/web3.js" "^1.44.3" - assert "^2.0.0" - big.js "^6.2.0" - bs58 "^5.0.0" - chan "^0.6.1" - crypto-js "^4.0.0" - glob "^8.0.3" - long "^4.0.0" - mocha "^9.1.1" - node-fetch "^3.2.6" - protobufjs "^6.11.3" - -"@switchboard-xyz/switchboard-v2@^0.0.134": - version "0.0.134" - resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.134.tgz#7ab0e2d34d9b315036ec3e3e71bea5f7e56bf22d" - integrity sha512-4FvpwFlU64HPx8TO0aMhp4yiqWGZfVlLEAytO2JufCQORgAhy+H8HcPgsGStjm+bw87rfXEKc8r8UlK+CLCRBg== - dependencies: - "@project-serum/anchor" "^0.24.2" - "@solana/spl-governance" "^0.0.34" - "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" - "@solana/web3.js" "^1.44.3" - "@switchboard-xyz/common" "^2.0.0" - assert "^2.0.0" - big.js "^6.2.0" - bs58 "^5.0.0" - chan "^0.6.1" - crypto-js "^4.0.0" - glob "^8.0.3" - long "^4.0.0" - mocha "^9.1.1" - node-fetch "^3.2.6" - -"@switchboard-xyz/switchboardv2-cli@^0.2.14": - version "0.2.27" - resolved "https://registry.npmjs.org/@switchboard-xyz/switchboardv2-cli/-/switchboardv2-cli-0.2.27.tgz#03d4966b1a0d81651ae8350d153d435cdce17971" - integrity sha512-PVHRes0nDAty4mNc1LDKo5JMOmdsDoMQotRl0A9iMFLrjeQlc1I/8+hRfXfc15saKFF4/GdJ0zhwPhI7wu8VXQ== - dependencies: - "@google-cloud/secret-manager" "^3.10.1" - "@oclif/core" "^1" - "@oclif/parser" "^3.8.7" - "@oclif/plugin-help" "^5.1.12" - "@oclif/plugin-plugins" "^2.0.1" - "@oclif/plugin-update" "^3.0.0" - "@oclif/plugin-version" "^1.0.4" - "@oclif/plugin-warn-if-update-available" "^2.0.4" - "@project-serum/anchor" "^0.24.2" - "@solana/spl-token-v2" "npm:@solana/spl-token@^0.2.0" - "@solana/web3.js" "^1.43.5" - "@switchboard-xyz/sbv2-utils" "^0.1.44" - "@switchboard-xyz/switchboard-v2" "^0.0.131" - assert "^2.0.0" - big.js "^6.2.0" - bs58 "^5.0.0" - chalk "4" - node-fetch "^2.6.6" - winston "^3.8.1" - -"@szmarczak/http-timer@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" - integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== - dependencies: - defer-to-connect "^1.0.1" - -"@tootallnate/once@1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" - integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== - -"@trysound/sax@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" - integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== - -"@ts-morph/common@~0.12.3": - version "0.12.3" - resolved "https://registry.yarnpkg.com/@ts-morph/common/-/common-0.12.3.tgz#a96e250217cd30e480ab22ec6a0ebbe65fd784ff" - integrity sha512-4tUmeLyXJnJWvTFOKtcNJ1yh0a3SsTLi2MUoyj8iUNznFRN1ZquaNe7Oukqrnki2FzZkm0J9adCNLDZxUzvj+w== - dependencies: - fast-glob "^3.2.7" - minimatch "^3.0.4" - mkdirp "^1.0.4" - path-browserify "^1.0.1" - -"@tsconfig/docusaurus@^1.0.4": - version "1.0.6" - resolved "https://registry.yarnpkg.com/@tsconfig/docusaurus/-/docusaurus-1.0.6.tgz#7305a7fa590decc0d5968500234e95fd68788978" - integrity sha512-1QxDaP54hpzM6bq9E+yFEo4F9WbWHhsDe4vktZXF/iDlc9FqGr9qlg+3X/nuKQXx8QxHV7ue8NXFazzajsxFBA== - -"@tsconfig/node10@^1.0.7": - version "1.0.9" - resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" - integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== - -"@tsconfig/node12@^1.0.7": - version "1.0.11" - resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" - integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== - -"@tsconfig/node14@^1.0.0": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" - integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== - -"@tsconfig/node16@^1.0.2": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" - integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== - -"@types/big.js@^6.1.3", "@types/big.js@^6.1.4", "@types/big.js@^6.1.5": - version "6.1.5" - resolved "https://registry.yarnpkg.com/@types/big.js/-/big.js-6.1.5.tgz#ff06b43a4c0c4002522e0fd7fc28bb963722ab01" - integrity sha512-UiWyJ6TLWoHeHZ8VUyngzCOwJDVxTsPnqfAMR/85X93rkRk5A4T2U42BCx0wCmZdtMHGHN/utJ8ft5xWu0V1bA== - -"@types/bn.js@^4.11.5": - version "4.11.6" - resolved "https://registry.yarnpkg.com/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c" - integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== - dependencies: - "@types/node" "*" - -"@types/bn.js@^5.1.0": - version "5.1.0" - resolved "https://registry.yarnpkg.com/@types/bn.js/-/bn.js-5.1.0.tgz#32c5d271503a12653c62cf4d2b45e6eab8cebc68" - integrity sha512-QSSVYj7pYFN49kW77o2s9xTCwZ8F2xLbjLLSEVh8D2F4JUhZtPAGOFLTD+ffqksBx/u4cE/KImFjyhqCjn/LIA== - dependencies: - "@types/node" "*" - -"@types/bn.js@^5.1.1": - version "5.1.1" - resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz#b51e1b55920a4ca26e9285ff79936bbdec910682" - integrity sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g== - dependencies: - "@types/node" "*" - -"@types/body-parser@*": - version "1.19.2" - resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0" - integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g== - dependencies: - "@types/connect" "*" - "@types/node" "*" - -"@types/bonjour@^3.5.9": - version "3.5.10" - resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.10.tgz#0f6aadfe00ea414edc86f5d106357cda9701e275" - integrity sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw== - dependencies: - "@types/node" "*" - -"@types/chai@^4.3.0", "@types/chai@^4.3.1": - version "4.3.1" - resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.1.tgz#e2c6e73e0bdeb2521d00756d099218e9f5d90a04" - integrity sha512-/zPMqDkzSZ8t3VtxOa4KPq7uzzW978M9Tvh+j7GHKuo6k6GTLxPJ4J5gE5cjfJ26pnXst0N5Hax8Sr0T2Mi9zQ== - -"@types/connect-history-api-fallback@^1.3.5": - version "1.3.5" - resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz#d1f7a8a09d0ed5a57aee5ae9c18ab9b803205dae" - integrity sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw== - dependencies: - "@types/express-serve-static-core" "*" - "@types/node" "*" - -"@types/connect@*", "@types/connect@^3.4.33": - version "3.4.35" - resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" - integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== - dependencies: - "@types/node" "*" - -"@types/eslint-scope@^3.7.3": - version "3.7.4" - resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16" - integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== - dependencies: - "@types/eslint" "*" - "@types/estree" "*" - -"@types/eslint@*", "@types/eslint@^8.4.5": - version "8.4.5" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.4.5.tgz#acdfb7dd36b91cc5d812d7c093811a8f3d9b31e4" - integrity sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ== - dependencies: - "@types/estree" "*" - "@types/json-schema" "*" - -"@types/estree@*": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.0.tgz#5fb2e536c1ae9bf35366eed879e827fa59ca41c2" - integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ== - -"@types/estree@^0.0.51": - version "0.0.51" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40" - integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ== - -"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.18", "@types/express-serve-static-core@^4.17.9": - version "4.17.30" - resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz#0f2f99617fa8f9696170c46152ccf7500b34ac04" - integrity sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ== - dependencies: - "@types/node" "*" - "@types/qs" "*" - "@types/range-parser" "*" - -"@types/express@*", "@types/express@^4.17.13": - version "4.17.13" - resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.13.tgz#a76e2995728999bab51a33fabce1d705a3709034" - integrity sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA== - dependencies: - "@types/body-parser" "*" - "@types/express-serve-static-core" "^4.17.18" - "@types/qs" "*" - "@types/serve-static" "*" - -"@types/hast@^2.0.0": - version "2.3.4" - resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc" - integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g== - dependencies: - "@types/unist" "*" - -"@types/history@^4.7.11": - version "4.7.11" - resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.11.tgz#56588b17ae8f50c53983a524fc3cc47437969d64" - integrity sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA== - -"@types/html-minifier-terser@^6.0.0": - version "6.1.0" - resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" - integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== - -"@types/http-proxy@^1.17.8": - version "1.17.9" - resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.9.tgz#7f0e7931343761efde1e2bf48c40f02f3f75705a" - integrity sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw== - dependencies: - "@types/node" "*" - -"@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== - -"@types/json5@^0.0.29": - version "0.0.29" - resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" - integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== - -"@types/katex@^0.11.0": - version "0.11.1" - resolved "https://registry.yarnpkg.com/@types/katex/-/katex-0.11.1.tgz#34de04477dcf79e2ef6c8d23b41a3d81f9ebeaf5" - integrity sha512-DUlIj2nk0YnJdlWgsFuVKcX27MLW0KbKmGVoUHmFr+74FYYNUDAaj9ZqTADvsbE8rfxuVmSFc7KczYn5Y09ozg== - -"@types/lodash@^4.14.159": - version "4.14.182" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.182.tgz#05301a4d5e62963227eaafe0ce04dd77c54ea5c2" - integrity sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q== - -"@types/long@^4.0.0", "@types/long@^4.0.1": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" - integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== - -"@types/mdast@^3.0.0": - version "3.0.10" - resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.10.tgz#4724244a82a4598884cbbe9bcfd73dff927ee8af" - integrity sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA== - dependencies: - "@types/unist" "*" - -"@types/mime@^1": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" - integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== - -"@types/minimatch@^3.0.3": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" - integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== - -"@types/minimist@^1.2.0": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" - integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== - -"@types/mocha@^9.0.0", "@types/mocha@^9.1.0": - version "9.1.1" - resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4" - integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw== - -"@types/node-fetch@^2.6.2": - version "2.6.2" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.2.tgz#d1a9c5fd049d9415dce61571557104dec3ec81da" - integrity sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A== - dependencies: - "@types/node" "*" - form-data "^3.0.0" - -"@types/node@*", "@types/node@>=12.12.47", "@types/node@>=13.7.0": - version "18.6.2" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.6.2.tgz#ffc5f0f099d27887c8d9067b54e55090fcd54126" - integrity sha512-KcfkBq9H4PI6Vpu5B/KoPeuVDAbmi+2mDBqGPGUgoL7yXQtcWGu2vJWmmRkneWK3Rh0nIAX192Aa87AqKHYChQ== - -"@types/node@^12.12.54": - version "12.20.55" - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" - integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== - -"@types/node@^17.0.45", "@types/node@^17.0.5": - version "17.0.45" - resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" - integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== - -"@types/normalize-package-data@^2.4.0": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" - integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== - -"@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - -"@types/parse5@^5.0.0": - version "5.0.3" - resolved "https://registry.yarnpkg.com/@types/parse5/-/parse5-5.0.3.tgz#e7b5aebbac150f8b5fdd4a46e7f0bd8e65e19109" - integrity sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw== - -"@types/promise-retry@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@types/promise-retry/-/promise-retry-1.1.3.tgz#baab427419da9088a1d2f21bf56249c21b3dd43c" - integrity sha512-LxIlEpEX6frE3co3vCO2EUJfHIta1IOmhDlcAsR4GMMv9hev1iTI9VwberVGkePJAuLZs5rMucrV8CziCfuJMw== - dependencies: - "@types/retry" "*" - -"@types/prop-types@*", "@types/prop-types@^15.7.5": - version "15.7.5" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" - integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== - -"@types/q@^1.5.1": - version "1.5.5" - resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.5.tgz#75a2a8e7d8ab4b230414505d92335d1dcb53a6df" - integrity sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ== - -"@types/qs@*": - version "6.9.7" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" - integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== - -"@types/range-parser@*": - version "1.2.4" - resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" - integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== - -"@types/react-is@^16.7.1 || ^17.0.0": - version "17.0.3" - resolved "https://registry.yarnpkg.com/@types/react-is/-/react-is-17.0.3.tgz#2d855ba575f2fc8d17ef9861f084acc4b90a137a" - integrity sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw== - dependencies: - "@types/react" "*" - -"@types/react-router-config@*": - version "5.0.6" - resolved "https://registry.yarnpkg.com/@types/react-router-config/-/react-router-config-5.0.6.tgz#87c5c57e72d241db900d9734512c50ccec062451" - integrity sha512-db1mx37a1EJDf1XeX8jJN7R3PZABmJQXR8r28yUjVMFSjkmnQo6X6pOEEmNl+Tp2gYQOGPdYbFIipBtdElZ3Yg== - dependencies: - "@types/history" "^4.7.11" - "@types/react" "*" - "@types/react-router" "*" - -"@types/react-router-dom@*": - version "5.3.3" - resolved "https://registry.yarnpkg.com/@types/react-router-dom/-/react-router-dom-5.3.3.tgz#e9d6b4a66fcdbd651a5f106c2656a30088cc1e83" - integrity sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw== - dependencies: - "@types/history" "^4.7.11" - "@types/react" "*" - "@types/react-router" "*" - -"@types/react-router@*": - version "5.1.18" - resolved "https://registry.yarnpkg.com/@types/react-router/-/react-router-5.1.18.tgz#c8851884b60bc23733500d86c1266e1cfbbd9ef3" - integrity sha512-YYknwy0D0iOwKQgz9v8nOzt2J6l4gouBmDnWqUUznltOTaon+r8US8ky8HvN0tXvc38U9m6z/t2RsVsnd1zM0g== - dependencies: - "@types/history" "^4.7.11" - "@types/react" "*" - -"@types/react-transition-group@^4.4.5": - version "4.4.5" - resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.5.tgz#aae20dcf773c5aa275d5b9f7cdbca638abc5e416" - integrity sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA== - dependencies: - "@types/react" "*" - -"@types/react@*": - version "18.0.15" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.15.tgz#d355644c26832dc27f3e6cbf0c4f4603fc4ab7fe" - integrity sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow== - dependencies: - "@types/prop-types" "*" - "@types/scheduler" "*" - csstype "^3.0.2" - -"@types/readline-sync@^1.4.4": - version "1.4.4" - resolved "https://registry.yarnpkg.com/@types/readline-sync/-/readline-sync-1.4.4.tgz#8568292efe4ddd94d0ccee958b29cc3f4e0ea140" - integrity sha512-cFjVIoiamX7U6zkO2VPvXyTxbFDdiRo902IarJuPVxBhpDnXhwSaVE86ip+SCuyWBbEioKCkT4C88RNTxBM1Dw== - -"@types/retry@*", "@types/retry@^0.12.2": - version "0.12.2" - resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.2.tgz#ed279a64fa438bb69f2480eda44937912bb7480a" - integrity sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow== - -"@types/retry@0.12.0": - version "0.12.0" - resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d" - integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== - -"@types/sax@^1.2.1": - version "1.2.4" - resolved "https://registry.yarnpkg.com/@types/sax/-/sax-1.2.4.tgz#8221affa7f4f3cb21abd22f244cfabfa63e6a69e" - integrity sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw== - dependencies: - "@types/node" "*" - -"@types/scheduler@*": - version "0.16.2" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" - integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== - -"@types/serve-index@^1.9.1": - version "1.9.1" - resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.1.tgz#1b5e85370a192c01ec6cec4735cf2917337a6278" - integrity sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg== - dependencies: - "@types/express" "*" - -"@types/serve-static@*", "@types/serve-static@^1.13.10": - version "1.13.10" - resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.10.tgz#f5e0ce8797d2d7cc5ebeda48a52c96c4fa47a8d9" - integrity sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ== - dependencies: - "@types/mime" "^1" - "@types/node" "*" - -"@types/sockjs@^0.3.33": - version "0.3.33" - resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.33.tgz#570d3a0b99ac995360e3136fd6045113b1bd236f" - integrity sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw== - dependencies: - "@types/node" "*" - -"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" - integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== - -"@types/ws@^7.4.4": - version "7.4.7" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" - integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== - dependencies: - "@types/node" "*" - -"@types/ws@^8.5.1": - version "8.5.3" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.3.tgz#7d25a1ffbecd3c4f2d35068d0b283c037003274d" - integrity sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w== - dependencies: - "@types/node" "*" - -"@typescript-eslint/eslint-plugin@^5.27.1": - version "5.31.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.31.0.tgz#cae1967b1e569e6171bbc6bec2afa4e0c8efccfe" - integrity sha512-VKW4JPHzG5yhYQrQ1AzXgVgX8ZAJEvCz0QI6mLRX4tf7rnFfh5D8SKm0Pq6w5PyNfAWJk6sv313+nEt3ohWMBQ== - dependencies: - "@typescript-eslint/scope-manager" "5.31.0" - "@typescript-eslint/type-utils" "5.31.0" - "@typescript-eslint/utils" "5.31.0" - debug "^4.3.4" - functional-red-black-tree "^1.0.1" - ignore "^5.2.0" - regexpp "^3.2.0" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/parser@^4.33.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.33.0.tgz#dfe797570d9694e560528d18eecad86c8c744899" - integrity sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA== - 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" - -"@typescript-eslint/scope-manager@4.33.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz#d38e49280d983e8772e29121cf8c6e9221f280a3" - integrity sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ== - dependencies: - "@typescript-eslint/types" "4.33.0" - "@typescript-eslint/visitor-keys" "4.33.0" - -"@typescript-eslint/scope-manager@5.31.0": - version "5.31.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.31.0.tgz#f47a794ba84d9b818ab7f8f44fff55a61016c606" - integrity sha512-8jfEzBYDBG88rcXFxajdVavGxb5/XKXyvWgvD8Qix3EEJLCFIdVloJw+r9ww0wbyNLOTYyBsR+4ALNGdlalLLg== - dependencies: - "@typescript-eslint/types" "5.31.0" - "@typescript-eslint/visitor-keys" "5.31.0" - -"@typescript-eslint/type-utils@5.31.0": - version "5.31.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.31.0.tgz#70a0b7201360b5adbddb0c36080495aa08f6f3d9" - integrity sha512-7ZYqFbvEvYXFn9ax02GsPcEOmuWNg+14HIf4q+oUuLnMbpJ6eHAivCg7tZMVwzrIuzX3QCeAOqKoyMZCv5xe+w== - dependencies: - "@typescript-eslint/utils" "5.31.0" - debug "^4.3.4" - tsutils "^3.21.0" - -"@typescript-eslint/types@4.33.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.33.0.tgz#a1e59036a3b53ae8430ceebf2a919dc7f9af6d72" - integrity sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ== - -"@typescript-eslint/types@5.31.0": - version "5.31.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.31.0.tgz#7aa389122b64b18e473c1672fb3b8310e5f07a9a" - integrity sha512-/f/rMaEseux+I4wmR6mfpM2wvtNZb1p9hAV77hWfuKc3pmaANp5dLAZSiE3/8oXTYTt3uV9KW5yZKJsMievp6g== - -"@typescript-eslint/typescript-estree@4.33.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz#0dfb51c2908f68c5c08d82aefeaf166a17c24609" - integrity sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA== - 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" - -"@typescript-eslint/typescript-estree@5.31.0": - version "5.31.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.31.0.tgz#eb92970c9d6e3946690d50c346fb9b1d745ee882" - integrity sha512-3S625TMcARX71wBc2qubHaoUwMEn+l9TCsaIzYI/ET31Xm2c9YQ+zhGgpydjorwQO9pLfR/6peTzS/0G3J/hDw== - dependencies: - "@typescript-eslint/types" "5.31.0" - "@typescript-eslint/visitor-keys" "5.31.0" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/utils@5.31.0": - version "5.31.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.31.0.tgz#e146fa00dca948bfe547d665b2138a2dc1b79acd" - integrity sha512-kcVPdQS6VIpVTQ7QnGNKMFtdJdvnStkqS5LeALr4rcwx11G6OWb2HB17NMPnlRHvaZP38hL9iK8DdE9Fne7NYg== - dependencies: - "@types/json-schema" "^7.0.9" - "@typescript-eslint/scope-manager" "5.31.0" - "@typescript-eslint/types" "5.31.0" - "@typescript-eslint/typescript-estree" "5.31.0" - eslint-scope "^5.1.1" - eslint-utils "^3.0.0" - -"@typescript-eslint/visitor-keys@4.33.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz#2a22f77a41604289b7a186586e9ec48ca92ef1dd" - integrity sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg== - dependencies: - "@typescript-eslint/types" "4.33.0" - eslint-visitor-keys "^2.0.0" - -"@typescript-eslint/visitor-keys@5.31.0": - version "5.31.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.31.0.tgz#b0eca264df01ce85dceb76aebff3784629258f54" - integrity sha512-ZK0jVxSjS4gnPirpVjXHz7mgdOsZUHzNYSfTw2yPa3agfbt9YfqaBiBZFSSxeBWnpWkzCxTfUpnzA3Vily/CSg== - dependencies: - "@typescript-eslint/types" "5.31.0" - eslint-visitor-keys "^3.3.0" - -"@ubeswap/token-math@^5.1.6": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@ubeswap/token-math/-/token-math-5.2.0.tgz#11d8706761da08b491a18743f11dc41191d46791" - integrity sha512-SpNTx30ssrZB3BcjkSKIbJlNJewkfUgQXYx5NOY9YjUHpwFdEkgeM9uC0n6SV6JzmVelUXaRU7h7XnYKGUW7vg== - dependencies: - "@types/big.js" "^6.1.5" - big.js "^6.2.1" - decimal.js-light "^2.5.1" - tiny-invariant "^1.2.0" - tslib "^2.4.0" - -"@ungap/promise-all-settled@1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" - integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== - -"@webassemblyjs/ast@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7" - integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw== - dependencies: - "@webassemblyjs/helper-numbers" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - -"@webassemblyjs/floating-point-hex-parser@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz#f6c61a705f0fd7a6aecaa4e8198f23d9dc179e4f" - integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ== - -"@webassemblyjs/helper-api-error@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz#1a63192d8788e5c012800ba6a7a46c705288fd16" - integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg== - -"@webassemblyjs/helper-buffer@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz#832a900eb444884cde9a7cad467f81500f5e5ab5" - integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA== - -"@webassemblyjs/helper-numbers@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz#64d81da219fbbba1e3bd1bfc74f6e8c4e10a62ae" - integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ== - dependencies: - "@webassemblyjs/floating-point-hex-parser" "1.11.1" - "@webassemblyjs/helper-api-error" "1.11.1" - "@xtuc/long" "4.2.2" - -"@webassemblyjs/helper-wasm-bytecode@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz#f328241e41e7b199d0b20c18e88429c4433295e1" - integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q== - -"@webassemblyjs/helper-wasm-section@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz#21ee065a7b635f319e738f0dd73bfbda281c097a" - integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - -"@webassemblyjs/ieee754@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz#963929e9bbd05709e7e12243a099180812992614" - integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ== - dependencies: - "@xtuc/ieee754" "^1.2.0" - -"@webassemblyjs/leb128@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz#ce814b45574e93d76bae1fb2644ab9cdd9527aa5" - integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw== - dependencies: - "@xtuc/long" "4.2.2" - -"@webassemblyjs/utf8@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz#d1f8b764369e7c6e6bae350e854dec9a59f0a3ff" - integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ== - -"@webassemblyjs/wasm-edit@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz#ad206ebf4bf95a058ce9880a8c092c5dec8193d6" - integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/helper-wasm-section" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - "@webassemblyjs/wasm-opt" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - "@webassemblyjs/wast-printer" "1.11.1" - -"@webassemblyjs/wasm-gen@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz#86c5ea304849759b7d88c47a32f4f039ae3c8f76" - integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/ieee754" "1.11.1" - "@webassemblyjs/leb128" "1.11.1" - "@webassemblyjs/utf8" "1.11.1" - -"@webassemblyjs/wasm-opt@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz#657b4c2202f4cf3b345f8a4c6461c8c2418985f2" - integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - -"@webassemblyjs/wasm-parser@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199" - integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-api-error" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/ieee754" "1.11.1" - "@webassemblyjs/leb128" "1.11.1" - "@webassemblyjs/utf8" "1.11.1" - -"@webassemblyjs/wast-printer@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz#d0c73beda8eec5426f10ae8ef55cee5e7084c2f0" - integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@xtuc/long" "4.2.2" - -"@xtuc/ieee754@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" - integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== - -"@xtuc/long@4.2.2": - version "4.2.2" - resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" - integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== - -JSONStream@^1.0.4, JSONStream@^1.3.5: - version "1.3.5" - resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" - integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== - dependencies: - jsonparse "^1.2.0" - through ">=2.2.7 <3" - -abbrev@1, abbrev@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - -abort-controller@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" - integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== - dependencies: - event-target-shim "^5.0.0" - -accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: - version "1.3.8" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" - integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== - dependencies: - mime-types "~2.1.34" - negotiator "0.6.3" - -acorn-import-assertions@^1.7.6: - version "1.8.0" - resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9" - integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw== - -acorn-jsx@^5.3.1, acorn-jsx@^5.3.2: - version "5.3.2" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" - integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== - -acorn-walk@^8.0.0, acorn-walk@^8.1.1: - version "8.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" - integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== - -acorn@^7.4.0: - version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - -acorn@^8.0.4, acorn@^8.4.1, acorn@^8.5.0, acorn@^8.7.1: - version "8.8.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" - integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== - -add-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" - integrity sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ== - -address@^1.0.1, address@^1.1.2: - version "1.2.0" - resolved "https://registry.yarnpkg.com/address/-/address-1.2.0.tgz#d352a62c92fee90f89a693eccd2a8b2139ab02d9" - integrity sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig== - -agent-base@6, agent-base@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -agentkeepalive@^4.1.3: - version "4.2.1" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz#a7975cbb9f83b367f06c90cc51ff28fe7d499717" - integrity sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA== - dependencies: - debug "^4.1.0" - depd "^1.1.2" - humanize-ms "^1.2.1" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - -ajv-formats@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" - integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== - dependencies: - ajv "^8.0.0" - -ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" - integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== - -ajv-keywords@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" - integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== - dependencies: - fast-deep-equal "^3.1.3" - -ajv@^6.10.0, ajv@^6.12.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5: - version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - 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" - -ajv@^8.0.0, ajv@^8.0.1, ajv@^8.8.0: - version "8.11.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" - integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== - dependencies: - fast-deep-equal "^3.1.1" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.2.2" - -algoliasearch-helper@^3.7.4: - version "3.10.0" - resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.10.0.tgz#59a0f645dd3c7e55cf01faa568d1af50c49d36f6" - integrity sha512-4E4od8qWWDMVvQ3jaRX6Oks/k35ywD011wAA4LbYMMjOtaZV6VWaTjRr4iN2bdaXP2o1BP7SLFMBf3wvnHmd8Q== - dependencies: - "@algolia/events" "^4.0.1" - -algoliasearch@^4.0.0, algoliasearch@^4.13.0: - version "4.14.2" - resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.14.2.tgz#63f142583bfc3a9bd3cd4a1b098bf6fe58e56f6c" - integrity sha512-ngbEQonGEmf8dyEh5f+uOIihv4176dgbuOZspiuhmTTBRBuzWu3KCGHre6uHj5YyuC7pNvQGzB6ZNJyZi0z+Sg== - dependencies: - "@algolia/cache-browser-local-storage" "4.14.2" - "@algolia/cache-common" "4.14.2" - "@algolia/cache-in-memory" "4.14.2" - "@algolia/client-account" "4.14.2" - "@algolia/client-analytics" "4.14.2" - "@algolia/client-common" "4.14.2" - "@algolia/client-personalization" "4.14.2" - "@algolia/client-search" "4.14.2" - "@algolia/logger-common" "4.14.2" - "@algolia/logger-console" "4.14.2" - "@algolia/requester-browser-xhr" "4.14.2" - "@algolia/requester-common" "4.14.2" - "@algolia/requester-node-http" "4.14.2" - "@algolia/transporter" "4.14.2" - -anchor-client-gen@^0.24.0: - version "0.24.0" - resolved "https://registry.yarnpkg.com/anchor-client-gen/-/anchor-client-gen-0.24.0.tgz#25aebebf93a7d6032866fff821260158338f06c4" - integrity sha512-FGGPrvek3l2mNXmU1fmFR09QIUR4bi8PlcM+pqRBox5GonOkR6UQ3Z1+NlVvEaW3CQMxfHxHTyWFEEPZPmpD2A== - dependencies: - "@project-serum/anchor" "^0.24.1" - "@project-serum/borsh" "^0.2.5" - "@solana/web3.js" "^1.36.0" - bn.js "^5.1.2" - camelcase "^5.3.1" - commander "^9.0.0" - js-sha256 "^0.9.0" - prettier "^2.5.1" - snake-case "^3.0.4" - ts-morph "^13.0.3" - -ansi-align@^3.0.0, ansi-align@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59" - integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== - dependencies: - string-width "^4.1.0" - -ansi-colors@4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" - integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== - -ansi-colors@^4.1.1: - version "4.1.3" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" - integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== - -ansi-escapes@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" - integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== - -ansi-escapes@^4.2.1, ansi-escapes@^4.3.2: - version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - -ansi-html-community@^0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" - integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== - -ansi-regex@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" - integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-regex@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" - integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0, ansi-styles@^4.2.1, ansi-styles@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.1.0.tgz#87313c102b8118abd57371afab34618bf7350ed3" - integrity sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ== - -ansicolors@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" - integrity sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg== - -ansistyles@~0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/ansistyles/-/ansistyles-0.1.3.tgz#5de60415bda071bb37127854c864f41b23254539" - integrity sha512-6QWEyvMgIXX0eO972y7YPBLSBsq7UWKFAoNNTLGaOJ9bstcEL9sCbcjf96dVfNDdUsRoGOK82vWFJlKApXds7g== - -any-promise@^1.0.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" - integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== - -anymatch@~3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -aproba@^1.0.3: - version "1.2.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" - integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== - -"aproba@^1.0.3 || ^2.0.0", aproba@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" - integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== - -archy@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" - integrity sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw== - -are-we-there-yet@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" - integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== - dependencies: - delegates "^1.0.0" - readable-stream "^3.6.0" - -are-we-there-yet@~1.1.2: - version "1.1.7" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz#b15474a932adab4ff8a50d9adfa7e4e926f21146" - integrity sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g== - dependencies: - delegates "^1.0.0" - readable-stream "^2.0.6" - -arg@^4.1.0: - version "4.1.3" - resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" - integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== - -arg@^5.0.0: - version "5.0.2" - resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" - integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== - -array-differ@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b" - integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg== - -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== - -array-flatten@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" - integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== - -array-ify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" - integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== - -array-includes@^3.1.4: - version "3.1.5" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" - integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.19.5" - get-intrinsic "^1.1.1" - is-string "^1.0.7" - -array-timsort@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/array-timsort/-/array-timsort-1.0.3.tgz#3c9e4199e54fb2b9c3fe5976396a21614ef0d926" - integrity sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ== - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -array-union@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-3.0.1.tgz#da52630d327f8b88cfbfb57728e2af5cd9b6b975" - integrity sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw== - -array.prototype.flat@^1.2.5: - version "1.3.0" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b" - integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.2" - es-shim-unscopables "^1.0.0" - -array.prototype.reduce@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz#8167e80089f78bff70a99e20bd4201d4663b0a6f" - integrity sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.2" - es-array-method-boxes-properly "^1.0.0" - is-string "^1.0.7" - -arrify@^1.0.0, arrify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== - -arrify@^2.0.0, arrify@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" - integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== - -asap@^2.0.0, asap@~2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== - -asn1@~0.2.3: - version "0.2.6" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" - integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== - dependencies: - safer-buffer "~2.1.0" - -assert-plus@1.0.0, assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== - -assert@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" - integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== - dependencies: - es6-object-assign "^1.1.0" - is-nan "^1.2.1" - object-is "^1.0.1" - util "^0.12.0" - -assertion-error@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" - integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== - -astral-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" - integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== - -async@^3.2.3: - version "3.2.4" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" - integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - -at-least-node@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" - integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== - -autoprefixer@^10.3.7, autoprefixer@^10.4.4: - version "10.4.8" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.8.tgz#92c7a0199e1cfb2ad5d9427bd585a3d75895b9e5" - integrity sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw== - dependencies: - browserslist "^4.21.3" - caniuse-lite "^1.0.30001373" - fraction.js "^4.2.0" - normalize-range "^0.1.2" - picocolors "^1.0.0" - postcss-value-parser "^4.2.0" - -available-typed-arrays@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" - integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== - -aws-sign2@~0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" - integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== - -aws4@^1.8.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" - integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== - -axios@^0.21.1: - version "0.21.4" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" - integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== - dependencies: - follow-redirects "^1.14.0" - -axios@^0.25.0: - version "0.25.0" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.25.0.tgz#349cfbb31331a9b4453190791760a8d35b093e0a" - integrity sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g== - dependencies: - follow-redirects "^1.14.7" - -babel-loader@^8.2.4: - version "8.2.5" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.5.tgz#d45f585e654d5a5d90f5350a779d7647c5ed512e" - integrity sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ== - dependencies: - find-cache-dir "^3.3.1" - loader-utils "^2.0.0" - make-dir "^3.1.0" - schema-utils "^2.6.5" - -babel-plugin-apply-mdx-type-prop@1.6.22: - version "1.6.22" - resolved "https://registry.yarnpkg.com/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz#d216e8fd0de91de3f1478ef3231e05446bc8705b" - integrity sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ== - dependencies: - "@babel/helper-plugin-utils" "7.10.4" - "@mdx-js/util" "1.6.22" - -babel-plugin-dynamic-import-node@2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" - integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== - dependencies: - object.assign "^4.1.0" - -babel-plugin-dynamic-import-node@^2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" - integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== - dependencies: - object.assign "^4.1.0" - -babel-plugin-extract-import-names@1.6.22: - version "1.6.22" - resolved "https://registry.yarnpkg.com/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz#de5f9a28eb12f3eb2578bf74472204e66d1a13dc" - integrity sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ== - dependencies: - "@babel/helper-plugin-utils" "7.10.4" - -babel-plugin-import@^1.13.3: - version "1.13.5" - resolved "https://registry.yarnpkg.com/babel-plugin-import/-/babel-plugin-import-1.13.5.tgz#42eed1c5afd9a35ee1b1f8fe922b07c44077d753" - integrity sha512-IkqnoV+ov1hdJVofly9pXRJmeDm9EtROfrc5i6eII0Hix2xMs5FEm8FG3ExMvazbnZBbgHIt6qdO8And6lCloQ== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - -babel-plugin-macros@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1" - integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== - dependencies: - "@babel/runtime" "^7.12.5" - cosmiconfig "^7.0.0" - resolve "^1.19.0" - -babel-plugin-polyfill-corejs2@^0.3.1: - version "0.3.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.2.tgz#e4c31d4c89b56f3cf85b92558954c66b54bd972d" - integrity sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q== - dependencies: - "@babel/compat-data" "^7.17.7" - "@babel/helper-define-polyfill-provider" "^0.3.2" - semver "^6.1.1" - -babel-plugin-polyfill-corejs3@^0.5.2: - version "0.5.3" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz#d7e09c9a899079d71a8b670c6181af56ec19c5c7" - integrity sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.2" - core-js-compat "^3.21.0" - -babel-plugin-polyfill-regenerator@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz#2c0678ea47c75c8cc2fbb1852278d8fb68233990" - integrity sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.1" - -bail@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776" - integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -base-x@^3.0.2: - version "3.0.9" - resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" - integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== - dependencies: - safe-buffer "^5.0.1" - -base-x@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/base-x/-/base-x-4.0.0.tgz#d0e3b7753450c73f8ad2389b5c018a4af7b2224a" - integrity sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw== - -base16@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/base16/-/base16-1.0.0.tgz#e297f60d7ec1014a7a971a39ebc8a98c0b681e70" - integrity sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ== - -base64-js@^1.3.0, base64-js@^1.3.1, base64-js@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -batch@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" - integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== - -bcrypt-pbkdf@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" - integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== - dependencies: - tweetnacl "^0.14.3" - -before-after-hook@^2.2.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.2.tgz#a6e8ca41028d90ee2c24222f201c90956091613e" - integrity sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ== - -big.js@^5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== - -big.js@^6.1.1, big.js@^6.2.0, big.js@^6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-6.2.1.tgz#7205ce763efb17c2e41f26f121c420c6a7c2744f" - integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== - -bigint-buffer@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442" - integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA== - dependencies: - bindings "^1.3.0" - -bignumber.js@^9.0.0, bignumber.js@^9.0.1: - version "9.0.2" - resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.0.2.tgz#71c6c6bed38de64e24a65ebe16cfcf23ae693673" - integrity sha512-GAcQvbpsM0pUb0zw1EI0KhQEZ+lRwR5fYaAp3vPOYuP7aDvGy6cVN6XHLauvF8SOga2y0dcLcjt3iQDTSEliyw== - -bin-links@^2.2.1: - version "2.3.0" - resolved "https://registry.yarnpkg.com/bin-links/-/bin-links-2.3.0.tgz#1ff241c86d2c29b24ae52f49544db5d78a4eb967" - integrity sha512-JzrOLHLwX2zMqKdyYZjkDgQGT+kHDkIhv2/IK2lJ00qLxV4TmFoHi8drDBb6H5Zrz1YfgHkai4e2MGPqnoUhqA== - dependencies: - cmd-shim "^4.0.1" - mkdirp-infer-owner "^2.0.0" - npm-normalize-package-bin "^1.0.0" - read-cmd-shim "^2.0.0" - rimraf "^3.0.0" - write-file-atomic "^3.0.3" - -binary-extensions@^2.0.0, binary-extensions@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - -bindings@^1.3.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - -bl@^4.0.3, bl@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - -bluebird@3.7.2: - version "3.7.2" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" - integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== - -bn.js@^4.11.9: - version "4.12.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== - -bn.js@^5.0.0, bn.js@^5.1.0, bn.js@^5.1.2, bn.js@^5.1.3, bn.js@^5.2.0, bn.js@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" - integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== - -body-parser@1.20.0: - version "1.20.0" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.0.tgz#3de69bd89011c11573d7bfee6a64f11b6bd27cc5" - integrity sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg== - 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.10.3" - raw-body "2.5.1" - type-is "~1.6.18" - unpipe "1.0.0" - -bonjour-service@^1.0.11: - version "1.0.13" - resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.0.13.tgz#4ac003dc1626023252d58adf2946f57e5da450c1" - integrity sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA== - dependencies: - array-flatten "^2.1.2" - dns-equal "^1.0.0" - fast-deep-equal "^3.1.3" - multicast-dns "^7.2.5" - -boolbase@^1.0.0, boolbase@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== - -borsh@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/borsh/-/borsh-0.3.1.tgz#c31c3a149610e37913deada80e89073fb15cf55b" - integrity sha512-gJoSTnhwLxN/i2+15Y7uprU8h3CKI+Co4YKZKvrGYUy0FwHWM20x5Sx7eU8Xv4HQqV+7rb4r3P7K1cBIQe3q8A== - dependencies: - "@types/bn.js" "^4.11.5" - bn.js "^5.0.0" - bs58 "^4.0.0" - text-encoding-utf-8 "^1.0.2" - -borsh@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/borsh/-/borsh-0.4.0.tgz#9dd6defe741627f1315eac2a73df61421f6ddb9f" - integrity sha512-aX6qtLya3K0AkT66CmYWCCDr77qsE9arV05OmdFpmat9qu8Pg9J5tBUPDztAW5fNh/d/MyVG/OYziP52Ndzx1g== - dependencies: - "@types/bn.js" "^4.11.5" - bn.js "^5.0.0" - bs58 "^4.0.0" - text-encoding-utf-8 "^1.0.2" - -borsh@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a" - integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA== - dependencies: - bn.js "^5.2.0" - bs58 "^4.0.0" - text-encoding-utf-8 "^1.0.2" - -boxen@^5.0.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.1.2.tgz#788cb686fc83c1f486dfa8a40c68fc2b831d2b50" - 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" - -boxen@^6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/boxen/-/boxen-6.2.1.tgz#b098a2278b2cd2845deef2dff2efc38d329b434d" - integrity sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw== - dependencies: - ansi-align "^3.0.1" - camelcase "^6.2.0" - chalk "^4.1.2" - cli-boxes "^3.0.0" - string-width "^5.0.1" - type-fest "^2.5.0" - widest-line "^4.0.1" - wrap-ansi "^8.0.1" - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -brace-expansion@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" - integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== - dependencies: - balanced-match "^1.0.0" - -braces@^3.0.2, braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -brorand@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== - -browser-stdout@1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" - integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== - -browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.6, browserslist@^4.18.1, browserslist@^4.20.2, browserslist@^4.20.3, browserslist@^4.21.2, browserslist@^4.21.3: - version "4.21.3" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.3.tgz#5df277694eb3c48bc5c4b05af3e8b7e09c5a6d1a" - integrity sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ== - dependencies: - caniuse-lite "^1.0.30001370" - electron-to-chromium "^1.4.202" - node-releases "^2.0.6" - update-browserslist-db "^1.0.5" - -bs58@^4.0.0, bs58@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" - integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== - dependencies: - base-x "^3.0.2" - -bs58@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/bs58/-/bs58-5.0.0.tgz#865575b4d13c09ea2a84622df6c8cbeb54ffc279" - integrity sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ== - dependencies: - base-x "^4.0.0" - -buffer-equal-constant-time@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" - integrity sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA== - -buffer-from@^1.0.0, buffer-from@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer-layout@^1.2.0, buffer-layout@^1.2.1, buffer-layout@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/buffer-layout/-/buffer-layout-1.2.2.tgz#b9814e7c7235783085f9ca4966a0cfff112259d5" - integrity sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA== - -buffer@6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2" - integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.2.1" - -buffer@6.0.3, buffer@~6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" - integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.2.1" - -buffer@^5.4.3, buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -bufferutil@^4.0.1: - version "4.0.6" - resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" - integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== - dependencies: - node-gyp-build "^4.3.0" - -builtin-modules@^3.0.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" - integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== - -builtins@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" - integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ== - -byline@5.x, byline@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/byline/-/byline-5.0.0.tgz#741c5216468eadc457b03410118ad77de8c1ddb1" - integrity sha512-s6webAy+R4SR8XVuJWt2V2rGvhnrhxN+9S15GNuTK3wKPOXFF6RNc+8ug2XhH+2s4f+uudG4kUVYmYOQWL2g0Q== - -byte-size@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-7.0.1.tgz#b1daf3386de7ab9d706b941a748dbfc71130dee3" - integrity sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A== - -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== - -bytes@3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" - integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== - -cacache@^15.0.3, cacache@^15.0.5, cacache@^15.2.0, cacache@^15.3.0: - version "15.3.0" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb" - integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ== - dependencies: - "@npmcli/fs" "^1.0.0" - "@npmcli/move-file" "^1.0.1" - chownr "^2.0.0" - fs-minipass "^2.0.0" - glob "^7.1.4" - infer-owner "^1.0.4" - lru-cache "^6.0.0" - minipass "^3.1.1" - minipass-collect "^1.0.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.2" - mkdirp "^1.0.3" - p-map "^4.0.0" - promise-inflight "^1.0.1" - rimraf "^3.0.2" - ssri "^8.0.1" - tar "^6.0.2" - unique-filename "^1.1.1" - -cacheable-request@^6.0.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" - integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== - dependencies: - clone-response "^1.0.2" - get-stream "^5.1.0" - http-cache-semantics "^4.0.0" - keyv "^3.0.0" - lowercase-keys "^2.0.0" - normalize-url "^4.1.0" - responselike "^1.0.2" - -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - -callsites@^3.0.0, callsites@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camel-case@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" - integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== - dependencies: - pascal-case "^3.1.2" - tslib "^2.0.3" - -camelcase-css@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" - integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== - -camelcase-keys@^6.2.2: - version "6.2.2" - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" - integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== - dependencies: - camelcase "^5.3.1" - map-obj "^4.0.0" - quick-lru "^4.0.1" - -camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelcase@^6.0.0, camelcase@^6.2.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" - integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== - -caniuse-api@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" - 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" - -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001370, caniuse-lite@^1.0.30001373: - version "1.0.30001373" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001373.tgz#2dc3bc3bfcb5d5a929bec11300883040d7b4b4be" - integrity sha512-pJYArGHrPp3TUqQzFYRmP/lwJlj8RCbVe3Gd3eJQkAV8SAC6b19XS9BjMvRdvaS8RMkaTN8ZhoHP6S1y8zzwEQ== - -cardinal@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-2.1.1.tgz#7cc1055d822d212954d07b085dea251cc7bc5505" - integrity sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw== - dependencies: - ansicolors "~0.3.2" - redeyed "~2.1.0" - -caseless@~0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== - -ccount@^1.0.0, ccount@^1.0.3: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043" - integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg== - -chai@^4.3.6: - version "4.3.6" - resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.6.tgz#ffe4ba2d9fa9d6680cc0b370adae709ec9011e9c" - integrity sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q== - dependencies: - assertion-error "^1.1.0" - check-error "^1.0.2" - deep-eql "^3.0.1" - get-func-name "^2.0.0" - loupe "^2.3.1" - pathval "^1.1.1" - type-detect "^4.0.5" - -chalk@4, chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^2.0.0, chalk@^2.4.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - 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" - -chan@^0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/chan/-/chan-0.6.1.tgz#ec0ad132e5bc62c27ef10ccbfc4d8dcd8ca00640" - integrity sha512-/TdBP2UhbBmw7qnqkzo9Mk4rzvwRv4dlNPXFerqWy90T8oBspKagJNZxrDbExKHhx9uXXHjo3f9mHgs9iKO3nQ== - -character-entities-legacy@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" - integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== - -character-entities@^1.0.0: - version "1.2.4" - resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b" - integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== - -character-reference-invalid@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" - integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== - -chardet@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== - -check-error@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" - integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== - -check-more-types@2.24.0: - version "2.24.0" - resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" - integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== - -cheerio-select@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" - 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" - -cheerio@0.22.0: - version "0.22.0" - resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" - integrity sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA== - dependencies: - css-select "~1.2.0" - dom-serializer "~0.1.0" - entities "~1.1.1" - htmlparser2 "^3.9.1" - lodash.assignin "^4.0.9" - lodash.bind "^4.1.4" - lodash.defaults "^4.0.1" - lodash.filter "^4.4.0" - lodash.flatten "^4.2.0" - lodash.foreach "^4.3.0" - lodash.map "^4.4.0" - lodash.merge "^4.4.0" - lodash.pick "^4.2.1" - lodash.reduce "^4.4.0" - lodash.reject "^4.4.0" - lodash.some "^4.4.0" - -cheerio@^1.0.0-rc.10: - version "1.0.0-rc.12" - resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.12.tgz#788bf7466506b1c6bf5fae51d24a2c4d62e47683" - 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" - -child_process@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/child_process/-/child_process-1.0.2.tgz#b1f7e7fc73d25e7fd1d455adc94e143830182b5a" - integrity sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g== - -chokidar@3.5.3, chokidar@^3.4.2, chokidar@^3.5.3: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== - 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" - optionalDependencies: - fsevents "~2.3.2" - -chownr@^1.1.1, chownr@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== - -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== - -chrome-trace-event@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" - integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== - -ci-info@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== - -ci-info@^3.2.0: - version "3.3.2" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.2.tgz#6d2967ffa407466481c6c90b6e16b3098f080128" - integrity sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg== - -cidr-regex@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/cidr-regex/-/cidr-regex-3.1.1.tgz#ba1972c57c66f61875f18fd7dd487469770b571d" - integrity sha512-RBqYd32aDwbCMFJRL6wHOlDNYJsPNTt8vC82ErHF5vKt8QQzxm1FrkW8s/R5pVrXMf17sba09Uoy91PKiddAsw== - dependencies: - ip-regex "^4.1.0" - -clean-css@^5.2.2, clean-css@^5.2.4: - version "5.3.1" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.1.tgz#d0610b0b90d125196a2894d35366f734e5d7aa32" - integrity sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg== - dependencies: - source-map "~0.6.0" - -clean-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz#8df7c7aae51fd36874e8f8d05b9180bc11a3fed7" - integrity sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw== - dependencies: - escape-string-regexp "^1.0.5" - -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -clean-stack@^3.0.0, clean-stack@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-3.0.1.tgz#155bf0b2221bf5f4fba89528d24c5953f17fe3a8" - integrity sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg== - dependencies: - escape-string-regexp "4.0.0" - -clear-module@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/clear-module/-/clear-module-4.1.2.tgz#5a58a5c9f8dccf363545ad7284cad3c887352a80" - integrity sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw== - dependencies: - parent-module "^2.0.0" - resolve-from "^5.0.0" - -cli-boxes@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" - integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== - -cli-boxes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-3.0.0.tgz#71a10c716feeba005e4504f36329ef0b17cf3145" - integrity sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g== - -cli-columns@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/cli-columns/-/cli-columns-3.1.2.tgz#6732d972979efc2ae444a1f08e08fa139c96a18e" - integrity sha512-iQYpDgpPPmCjn534ikQOhi+ydP6uMar+DtJ6a0In4aGL/PKqWfao75s6eF81quQQaz7isGz+goNECLARRZswdg== - dependencies: - string-width "^2.0.0" - strip-ansi "^3.0.1" - -cli-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" - integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== - dependencies: - restore-cursor "^3.1.0" - -cli-progress@^3.10.0: - version "3.11.2" - resolved "https://registry.yarnpkg.com/cli-progress/-/cli-progress-3.11.2.tgz#f8c89bd157e74f3f2c43bcfb3505670b4d48fc77" - integrity sha512-lCPoS6ncgX4+rJu5bS3F/iCz17kZ9MPZ6dpuTtI0KXKABkhyXIdYB3Inby1OpaGti3YlI3EeEkM9AuWpelJrVA== - dependencies: - string-width "^4.2.3" - -cli-spinners@^2.5.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.7.0.tgz#f815fd30b5f9eaac02db604c7a231ed7cb2f797a" - integrity sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw== - -cli-table3@^0.6.0, cli-table3@^0.6.1: - version "0.6.2" - resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.2.tgz#aaf5df9d8b5bf12634dc8b3040806a0c07120d2a" - integrity sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw== - dependencies: - string-width "^4.2.0" - optionalDependencies: - "@colors/colors" "1.5.0" - -cli-width@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" - integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== - -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - -clone-deep@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" - integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== - dependencies: - is-plain-object "^2.0.4" - kind-of "^6.0.2" - shallow-clone "^3.0.0" - -clone-response@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" - integrity sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA== - dependencies: - mimic-response "^1.0.0" - -clone@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== - -clsx@^1.1.1, clsx@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" - integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== - -cmd-shim@^4.0.1, cmd-shim@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-4.1.0.tgz#b3a904a6743e9fede4148c6f3800bf2a08135bdd" - integrity sha512-lb9L7EM4I/ZRVuljLPEtUJOP+xiQVknZ4ZMpMgEp4JzNldPb27HU03hi6K1/6CoIuit/Zm/LQXySErFeXxDprw== - dependencies: - mkdirp-infer-owner "^2.0.0" - -coa@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" - integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== - dependencies: - "@types/q" "^1.5.1" - chalk "^2.4.1" - q "^1.1.2" - -code-block-writer@^11.0.0: - version "11.0.2" - resolved "https://registry.yarnpkg.com/code-block-writer/-/code-block-writer-11.0.2.tgz#263a1d5f982c640cda33d0704a8562057ae8b27d" - integrity sha512-goP2FghRVwp940jOvhtUrRDiSVU0h4Ah2jPX1gu2ueGW8boQmdQV4NwiHoM5MQQbUWLQuZopougO8+Ajljgpnw== - -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA== - -collapse-white-space@^1.0.2: - version "1.0.6" - resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287" - integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ== - -color-convert@^1.9.0, color-convert@^1.9.3: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - -color-name@^1.0.0, color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -color-string@^1.6.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" - integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== - dependencies: - color-name "^1.0.0" - simple-swizzle "^0.2.2" - -color-support@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - -color@^3.1.3: - version "3.2.1" - resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164" - integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== - dependencies: - color-convert "^1.9.3" - color-string "^1.6.0" - -colord@^2.9.1: - version "2.9.2" - resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.2.tgz#25e2bacbbaa65991422c07ea209e2089428effb1" - integrity sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ== - -colorette@^2.0.10: - version "2.0.19" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" - integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== - -colorspace@1.1.x: - version "1.1.4" - resolved "https://registry.yarnpkg.com/colorspace/-/colorspace-1.1.4.tgz#8d442d1186152f60453bf8070cd66eb364e59243" - integrity sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w== - dependencies: - color "^3.1.3" - text-hex "1.0.x" - -columnify@^1.5.4: - version "1.6.0" - resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.6.0.tgz#6989531713c9008bb29735e61e37acf5bd553cf3" - integrity sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q== - dependencies: - strip-ansi "^6.0.1" - wcwidth "^1.0.0" - -columnify@~1.5.4: - version "1.5.4" - resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb" - integrity sha512-rFl+iXVT1nhLQPfGDw+3WcS8rmm7XsLKUmhsGE3ihzzpIikeGrTaZPIRKYWeLsLBypsHzjXIvYEltVUZS84XxQ== - dependencies: - strip-ansi "^3.0.0" - wcwidth "^1.0.0" - -combine-promises@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/combine-promises/-/combine-promises-1.1.0.tgz#72db90743c0ca7aab7d0d8d2052fd7b0f674de71" - integrity sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg== - -combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -comma-separated-tokens@^1.0.0: - version "1.0.8" - resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea" - integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw== - -commander@^2.20.0, commander@^2.20.3: - version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - -commander@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" - integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== - -commander@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" - integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== - -commander@^8.0.0, commander@^8.3.0: - version "8.3.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" - integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== - -commander@^9.0.0, commander@^9.2.0: - version "9.4.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-9.4.0.tgz#bc4a40918fefe52e22450c111ecd6b7acce6f11c" - integrity sha512-sRPT+umqkz90UA8M1yqYfnHlZA7fF6nSphDtxeywPZ49ysjxDQybzk13CL+mXekDRG92skbcqCLVovuCusNmFw== - -comment-json@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/comment-json/-/comment-json-4.2.2.tgz#5fae70a94e0c8f84a077bd31df5aa5269252f293" - integrity sha512-H8T+kl3nZesZu41zO2oNXIJWojNeK3mHxCLrsBNu6feksBXsgb+PtYz5daP5P86A0F3sz3840KVYehr04enISQ== - dependencies: - array-timsort "^1.0.3" - core-util-is "^1.0.3" - esprima "^4.0.1" - has-own-prop "^2.0.0" - repeat-string "^1.6.1" - -common-ancestor-path@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz#4f7d2d1394d91b7abdf51871c62f71eadb0182a7" - integrity sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w== - -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== - -compare-func@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" - integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== - dependencies: - array-ify "^1.0.0" - dot-prop "^5.1.0" - -compressible@~2.0.16: - version "2.0.18" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" - integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== - dependencies: - mime-db ">= 1.43.0 < 2" - -compression@^1.7.4: - version "1.7.4" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" - 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" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== - -concat-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1" - integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A== - dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^3.0.2" - typedarray "^0.0.6" - -config-chain@^1.1.12: - version "1.1.13" - resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" - integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== - dependencies: - ini "^1.3.4" - proto-list "~1.2.1" - -configstore@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96" - 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" - -confusing-browser-globals@^1.0.10: - version "1.0.11" - resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz#ae40e9b57cdd3915408a2805ebd3a5585608dc81" - integrity sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA== - -connect-history-api-fallback@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" - integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== - -consola@^2.15.3: - version "2.15.3" - resolved "https://registry.yarnpkg.com/consola/-/consola-2.15.3.tgz#2e11f98d6a4be71ff72e0bdf07bd23e12cb61550" - integrity sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw== - -console-control-strings@^1.0.0, console-control-strings@^1.1.0, console-control-strings@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== - -content-disposition@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" - integrity sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA== - -content-disposition@0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" - integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== - dependencies: - safe-buffer "5.2.1" - -content-type@^1.0.4, content-type@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== - -conventional-changelog-angular@^5.0.12: - version "5.0.13" - resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz#896885d63b914a70d4934b59d2fe7bde1832b28c" - integrity sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA== - dependencies: - compare-func "^2.0.0" - q "^1.5.1" - -conventional-changelog-core@^4.2.2: - version "4.2.4" - resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz#e50d047e8ebacf63fac3dc67bf918177001e1e9f" - integrity sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg== - dependencies: - add-stream "^1.0.0" - conventional-changelog-writer "^5.0.0" - conventional-commits-parser "^3.2.0" - dateformat "^3.0.0" - get-pkg-repo "^4.0.0" - git-raw-commits "^2.0.8" - git-remote-origin-url "^2.0.0" - git-semver-tags "^4.1.1" - lodash "^4.17.15" - normalize-package-data "^3.0.0" - q "^1.5.1" - read-pkg "^3.0.0" - read-pkg-up "^3.0.0" - through2 "^4.0.0" - -conventional-changelog-preset-loader@^2.3.4: - version "2.3.4" - resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c" - integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g== - -conventional-changelog-writer@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz#e0757072f045fe03d91da6343c843029e702f359" - integrity sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ== - dependencies: - conventional-commits-filter "^2.0.7" - dateformat "^3.0.0" - handlebars "^4.7.7" - json-stringify-safe "^5.0.1" - lodash "^4.17.15" - meow "^8.0.0" - semver "^6.0.0" - split "^1.0.0" - through2 "^4.0.0" - -conventional-commits-filter@^2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3" - integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA== - dependencies: - lodash.ismatch "^4.4.0" - modify-values "^1.0.0" - -conventional-commits-parser@^3.2.0: - version "3.2.4" - resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz#a7d3b77758a202a9b2293d2112a8d8052c740972" - integrity sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q== - dependencies: - JSONStream "^1.0.4" - is-text-path "^1.0.1" - lodash "^4.17.15" - meow "^8.0.0" - split2 "^3.0.0" - through2 "^4.0.0" - -conventional-recommended-bump@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz#cfa623285d1de554012f2ffde70d9c8a22231f55" - integrity sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw== - dependencies: - concat-stream "^2.0.0" - conventional-changelog-preset-loader "^2.3.4" - conventional-commits-filter "^2.0.7" - conventional-commits-parser "^3.2.0" - git-raw-commits "^2.0.8" - git-semver-tags "^4.1.1" - meow "^8.0.0" - q "^1.5.1" - -convert-source-map@^1.5.0, convert-source-map@^1.7.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" - integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== - dependencies: - safe-buffer "~5.1.1" - -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== - -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== - -copy-text-to-clipboard@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.0.1.tgz#8cbf8f90e0a47f12e4a24743736265d157bce69c" - integrity sha512-rvVsHrpFcL4F2P8ihsoLdFHmd404+CMg71S756oRSeQgqk51U3kicGdnvfkrxva0xXH92SjGS62B0XIJsbh+9Q== - -copy-webpack-plugin@^10.2.4: - version "10.2.4" - resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz#6c854be3fdaae22025da34b9112ccf81c63308fe" - integrity sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg== - dependencies: - fast-glob "^3.2.7" - glob-parent "^6.0.1" - globby "^12.0.2" - normalize-path "^3.0.0" - schema-utils "^4.0.0" - serialize-javascript "^6.0.0" - -core-js-compat@^3.21.0, core-js-compat@^3.22.1: - version "3.24.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.24.0.tgz#885958fac38bf3f4464a90f2663b4620f6aee6e3" - integrity sha512-F+2E63X3ff/nj8uIrf8Rf24UDGIz7p838+xjEp+Bx3y8OWXj+VTPPZNCtdqovPaS9o7Tka5mCH01Zn5vOd6UQg== - dependencies: - browserslist "^4.21.2" - semver "7.0.0" - -core-js-pure@^3.20.2: - version "3.24.0" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.24.0.tgz#10eeb90dbf0d670a6b22b081aecc7deb2faec7e1" - integrity sha512-uzMmW8cRh7uYw4JQtzqvGWRyC2T5+4zipQLQdi2FmiRqP83k3d6F3stv2iAlNhOs6cXN401FCD5TL0vvleuHgA== - -core-js@^3.21.1: - version "3.24.0" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.24.0.tgz#4928d4e99c593a234eb1a1f9abd3122b04d3ac57" - integrity sha512-IeOyT8A6iK37Ep4kZDD423mpi6JfPRoPUdQwEWYiGolvn4o6j2diaRzNfDfpTdu3a5qMbrGUzKUpYpRY8jXCkQ== - -core-util-is@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== - -core-util-is@^1.0.3, core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - -cosmiconfig@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" - 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" - -cosmiconfig@^7.0.0, cosmiconfig@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" - integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== - 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" - -create-require@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" - integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== - -cross-fetch@^3.1.4, cross-fetch@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" - integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== - dependencies: - node-fetch "2.6.7" - -cross-spawn@^6.0.5: - version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" - -cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -crypto-hash@^1.2.2, crypto-hash@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247" - integrity sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg== - -crypto-js@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" - integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== - -crypto-random-string@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" - integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== - -cspell-gitignore@^5.21.2: - version "5.21.2" - resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-5.21.2.tgz#f2e93addbc459098ea2d23cd29d9e645478d6907" - integrity sha512-MdNmRRbglmCi20LU7ORZM1gyPSe1gL+4A8Pn+Jm+W5ropSbotzCqiO8BcyhRMNb3lAdMGGrj7gmYtiQ5C/fXIQ== - dependencies: - cspell-glob "^5.21.2" - find-up "^5.0.0" - -cspell-glob@^5.21.2: - version "5.21.2" - resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-5.21.2.tgz#ef56578b561ab67efd3c2c84c2fbd85a7072ba61" - integrity sha512-AabqzG31UWy4CSz1xJIK4qzXcarxuRFP9OD2EX8iDtEo0tQJLGoTHE+UpNDBPWTHearE0BZPhpMDF/radtZAgw== - dependencies: - micromatch "^4.0.5" - -cspell-io@^5.21.2: - version "5.21.2" - resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-5.21.2.tgz#d9087163b1c8ad11c6f94cb7dddf8c57eb97fabe" - integrity sha512-3J4cLuN59R7ARiRZ8ke5QwlC5uPfzHLVELOtEAmsTIjuUMvr7BpbrdCuTsUvLkAqYE9NA5eqolqQm3GLXnECNw== - -cspell-lib@^5.21.2: - version "5.21.2" - resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-5.21.2.tgz#77e81b4f134441e11c0434dee7532c00ea116268" - integrity sha512-emAFXtDfs84FoMlhOxZYxYVvbCoCN0LxN0obIRvCsvFCLUPj9y7vHv/Tu/01ZyAPeo2r6gkqhanJpQyoIDA1yg== - dependencies: - "@cspell/cspell-bundled-dicts" "^5.21.2" - "@cspell/cspell-pipe" "^5.21.2" - "@cspell/cspell-types" "^5.21.2" - clear-module "^4.1.2" - comment-json "^4.2.2" - configstore "^5.0.1" - cosmiconfig "^7.0.1" - cspell-glob "^5.21.2" - cspell-io "^5.21.2" - cspell-trie-lib "^5.21.2" - fast-equals "^3.0.2" - find-up "^5.0.0" - fs-extra "^10.1.0" - gensequence "^3.1.1" - import-fresh "^3.3.0" - resolve-from "^5.0.0" - resolve-global "^1.0.0" - vscode-languageserver-textdocument "^1.0.4" - vscode-uri "^3.0.3" - -cspell-trie-lib@^5.21.2: - version "5.21.2" - resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-5.21.2.tgz#5d00667754c02695a00fc98f2c6bd467f7945951" - integrity sha512-iux2F+85jDlBEJZgikfPT5SUZMwuFjNqEJiO1SO+xfQG+2MFV9CaHTsoRJIGNy3udMm1mw0GMY5UIVAodwlnhg== - dependencies: - "@cspell/cspell-pipe" "^5.21.2" - fs-extra "^10.1.0" - gensequence "^3.1.1" - -cspell@^5.15.2: - version "5.21.2" - resolved "https://registry.yarnpkg.com/cspell/-/cspell-5.21.2.tgz#3b147ba49ecdbaa8818d638b71ef142e15ccf303" - integrity sha512-yG14BUumeIcsuSEcM//+9XpbUR6a6FlAxfaVI4e5t6ZZE5tPgDE0PNIVr/jAiLPVm9qUfnq+oNdZE8wmVUbMzw== - dependencies: - "@cspell/cspell-pipe" "^5.21.2" - chalk "^4.1.2" - commander "^9.2.0" - cspell-gitignore "^5.21.2" - cspell-glob "^5.21.2" - cspell-lib "^5.21.2" - fast-json-stable-stringify "^2.1.0" - file-entry-cache "^6.0.1" - fs-extra "^10.1.0" - get-stdin "^8.0.0" - glob "^8.0.3" - imurmurhash "^0.1.4" - semver "^7.3.7" - strip-ansi "^6.0.1" - vscode-uri "^3.0.3" - -css-declaration-sorter@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.3.0.tgz#72ebd995c8f4532ff0036631f7365cce9759df14" - integrity sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og== - -css-loader@^6.7.1: - version "6.7.1" - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.7.1.tgz#e98106f154f6e1baf3fc3bc455cb9981c1d5fd2e" - integrity sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw== - dependencies: - icss-utils "^5.1.0" - postcss "^8.4.7" - postcss-modules-extract-imports "^3.0.0" - postcss-modules-local-by-default "^4.0.0" - postcss-modules-scope "^3.0.0" - postcss-modules-values "^4.0.0" - postcss-value-parser "^4.2.0" - semver "^7.3.5" - -css-minimizer-webpack-plugin@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz#ab78f781ced9181992fe7b6e4f3422e76429878f" - integrity sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q== - dependencies: - cssnano "^5.0.6" - jest-worker "^27.0.2" - postcss "^8.3.5" - schema-utils "^4.0.0" - serialize-javascript "^6.0.0" - source-map "^0.6.1" - -css-select-base-adapter@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" - integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== - -css-select@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" - integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== - dependencies: - boolbase "^1.0.0" - css-what "^3.2.1" - domutils "^1.7.0" - nth-check "^1.0.2" - -css-select@^4.1.3: - version "4.3.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" - 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" - -css-select@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" - 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" - -css-select@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" - integrity sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA== - dependencies: - boolbase "~1.0.0" - css-what "2.1" - domutils "1.5.1" - nth-check "~1.0.1" - -css-tree@1.0.0-alpha.37: - version "1.0.0-alpha.37" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" - integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== - dependencies: - mdn-data "2.0.4" - source-map "^0.6.1" - -css-tree@^1.1.2, css-tree@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" - integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== - dependencies: - mdn-data "2.0.14" - source-map "^0.6.1" - -css-what@2.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" - integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== - -css-what@^3.2.1: - version "3.4.2" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" - integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== - -css-what@^6.0.1, css-what@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" - integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== - -cssesc@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== - -cssnano-preset-advanced@^5.3.1: - version "5.3.8" - resolved "https://registry.yarnpkg.com/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.8.tgz#027b1d05ef896d908178c483f0ec4190cb50ef9a" - integrity sha512-xUlLLnEB1LjpEik+zgRNlk8Y/koBPPtONZjp7JKbXigeAmCrFvq9H0pXW5jJV45bQWAlmJ0sKy+IMr0XxLYQZg== - dependencies: - autoprefixer "^10.3.7" - cssnano-preset-default "^5.2.12" - postcss-discard-unused "^5.1.0" - postcss-merge-idents "^5.1.1" - postcss-reduce-idents "^5.2.0" - postcss-zindex "^5.1.0" - -cssnano-preset-default@^5.2.12: - version "5.2.12" - resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.12.tgz#ebe6596ec7030e62c3eb2b3c09f533c0644a9a97" - integrity sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew== - dependencies: - css-declaration-sorter "^6.3.0" - cssnano-utils "^3.1.0" - postcss-calc "^8.2.3" - postcss-colormin "^5.3.0" - postcss-convert-values "^5.1.2" - 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.6" - postcss-merge-rules "^5.1.2" - postcss-minify-font-values "^5.1.0" - postcss-minify-gradients "^5.1.1" - postcss-minify-params "^5.1.3" - 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.0" - postcss-normalize-url "^5.1.0" - postcss-normalize-whitespace "^5.1.1" - postcss-ordered-values "^5.1.3" - postcss-reduce-initial "^5.1.0" - postcss-reduce-transforms "^5.1.0" - postcss-svgo "^5.1.0" - postcss-unique-selectors "^5.1.1" - -cssnano-utils@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861" - integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== - -cssnano@^5.0.6, cssnano@^5.1.5: - version "5.1.12" - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.12.tgz#bcd0b64d6be8692de79332c501daa7ece969816c" - integrity sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ== - dependencies: - cssnano-preset-default "^5.2.12" - lilconfig "^2.0.3" - yaml "^1.10.2" - -csso@^4.0.2, csso@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" - integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== - dependencies: - css-tree "^1.1.2" - -csstype@^3.0.2, csstype@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2" - integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA== - -dargs@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" - integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== - -dashdash@^1.12.0: - version "1.14.1" - resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== - dependencies: - assert-plus "^1.0.0" - -data-uri-to-buffer@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" - integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== - -dateformat@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" - integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== - -debug@2.6.9, debug@^2.6.0, debug@^2.6.9: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - -debug@4.3.2: - version "4.3.2" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" - integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== - dependencies: - ms "2.1.2" - -debug@4.3.3: - version "4.3.3" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" - integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== - dependencies: - ms "2.1.2" - -debug@^3.2.7: - version "3.2.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== - dependencies: - ms "^2.1.1" - -debuglog@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" - integrity sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw== - -decamelize-keys@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" - integrity sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg== - dependencies: - decamelize "^1.1.0" - map-obj "^1.0.0" - -decamelize@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== - -decamelize@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" - integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== - -decimal.js-light@^2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/decimal.js-light/-/decimal.js-light-2.5.1.tgz#134fd32508f19e208f4fb2f8dac0d2626a867934" - integrity sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg== - -decimal.js@^10.2.1, decimal.js@^10.3.0, decimal.js@^10.3.1: - version "10.3.1" - resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" - integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== - -decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og== - -decompress-response@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" - integrity sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA== - dependencies: - mimic-response "^1.0.0" - -dedent@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" - integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== - -deep-eql@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" - integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== - dependencies: - type-detect "^4.0.0" - -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - -deep-is@^0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - -deepmerge@4.2.2, deepmerge@^4.0.0, deepmerge@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" - integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== - -default-gateway@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71" - integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== - dependencies: - execa "^5.0.0" - -defaults@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" - integrity sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA== - dependencies: - clone "^1.0.2" - -defer-to-connect@^1.0.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" - integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== - -define-lazy-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" - integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== - -define-properties@^1.1.3, define-properties@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" - integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== - dependencies: - has-property-descriptors "^1.0.0" - object-keys "^1.1.1" - -del@^6.0.0: - version "6.1.1" - resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a" - integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg== - dependencies: - globby "^11.0.1" - graceful-fs "^4.2.4" - is-glob "^4.0.1" - is-path-cwd "^2.2.0" - is-path-inside "^3.0.2" - p-map "^4.0.0" - rimraf "^3.0.2" - slash "^3.0.0" - -delay@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" - integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== - -depd@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -depd@^1.1.2, depd@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" - integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== - -deprecation@^2.0.0, deprecation@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" - integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== - -destroy@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" - integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== - -detab@2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.4.tgz#b927892069aff405fbb9a186fe97a44a92a94b43" - integrity sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g== - dependencies: - repeat-string "^1.5.4" - -detect-indent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" - integrity sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g== - -detect-indent@^6.0.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" - integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== - -detect-node@^2.0.4: - version "2.1.0" - resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" - integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== - -detect-port-alt@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275" - integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q== - dependencies: - address "^1.0.1" - debug "^2.6.0" - -detect-port@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.3.0.tgz#d9c40e9accadd4df5cac6a782aefd014d573d1f1" - integrity sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ== - dependencies: - address "^1.0.1" - debug "^2.6.0" - -dezalgo@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.4.tgz#751235260469084c132157dfa857f386d4c33d81" - integrity sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig== - dependencies: - asap "^2.0.0" - wrappy "1" - -diff@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" - integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== - -diff@^3.1.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" - integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== - -diff@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== - -diff@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40" - integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw== - -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -dns-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" - integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg== - -dns-packet@^5.2.2: - version "5.4.0" - resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.4.0.tgz#1f88477cf9f27e78a213fb6d118ae38e759a879b" - integrity sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g== - dependencies: - "@leichtgewicht/ip-codec" "^2.0.1" - -doctrine@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" - integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== - dependencies: - esutils "^2.0.2" - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -dom-converter@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" - integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== - dependencies: - utila "~0.4" - -dom-helpers@^5.0.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" - integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== - dependencies: - "@babel/runtime" "^7.8.7" - csstype "^3.0.2" - -dom-serializer@0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" - integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== - dependencies: - domelementtype "^2.0.1" - entities "^2.0.0" - -dom-serializer@^1.0.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" - integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== - dependencies: - domelementtype "^2.0.1" - domhandler "^4.2.0" - entities "^2.0.0" - -dom-serializer@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" - integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== - dependencies: - domelementtype "^2.3.0" - domhandler "^5.0.2" - entities "^4.2.0" - -dom-serializer@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" - integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== - dependencies: - domelementtype "^1.3.0" - entities "^1.1.1" - -domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" - integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== - -domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" - integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== - -domhandler@^2.3.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" - integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== - dependencies: - domelementtype "1" - -domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" - integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== - dependencies: - domelementtype "^2.2.0" - -domhandler@^5.0.1, domhandler@^5.0.2, domhandler@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" - integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== - dependencies: - domelementtype "^2.3.0" - -domutils@1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" - integrity sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw== - dependencies: - dom-serializer "0" - domelementtype "1" - -domutils@^1.5.1, domutils@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" - integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== - dependencies: - dom-serializer "0" - domelementtype "1" - -domutils@^2.5.2, domutils@^2.8.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" - integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== - dependencies: - dom-serializer "^1.0.1" - domelementtype "^2.2.0" - domhandler "^4.2.0" - -domutils@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.0.1.tgz#696b3875238338cb186b6c0612bd4901c89a4f1c" - integrity sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q== - dependencies: - dom-serializer "^2.0.0" - domelementtype "^2.3.0" - domhandler "^5.0.1" - -dot-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" - integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - -dot-prop@^5.1.0, dot-prop@^5.2.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" - integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== - dependencies: - is-obj "^2.0.0" - -dot-prop@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-6.0.1.tgz#fc26b3cf142b9e59b74dbd39ed66ce620c681083" - integrity sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA== - dependencies: - is-obj "^2.0.0" - -dotenv@10.0.0, dotenv@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" - integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== - -dotenv@8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" - integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== - -dotenv@^16.0.1: - version "16.0.1" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.1.tgz#8f8f9d94876c35dac989876a5d3a82a267fdce1d" - integrity sha512-1K6hR6wtk2FviQ4kEiSjFiH5rpzEVi8WW0x96aztHVMhEspNpc4DVOUTEHtEva5VThQ8IaBX1Pe4gSzpVVUsKQ== - -duplexer3@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.5.tgz#0b5e4d7bad5de8901ea4440624c8e1d20099217e" - integrity sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA== - -duplexer@^0.1.1, duplexer@^0.1.2, duplexer@~0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" - integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== - -duplexify@^4.0.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-4.1.2.tgz#18b4f8d28289132fa0b9573c898d9f903f81c7b0" - integrity sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw== - dependencies: - end-of-stream "^1.4.1" - inherits "^2.0.3" - readable-stream "^3.1.1" - stream-shift "^1.0.0" - -eastasianwidth@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" - integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== - -ecc-jsbn@~0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" - integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== - dependencies: - jsbn "~0.1.0" - safer-buffer "^2.1.0" - -ecdsa-sig-formatter@1.0.11, ecdsa-sig-formatter@^1.0.11: - version "1.0.11" - resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" - integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== - dependencies: - safe-buffer "^5.0.1" - -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== - -ejs@^3.1.6: - version "3.1.8" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.8.tgz#758d32910c78047585c7ef1f92f9ee041c1c190b" - integrity sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ== - dependencies: - jake "^10.8.5" - -electron-to-chromium@^1.4.202: - version "1.4.206" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.206.tgz#580ff85b54d7ec0c05f20b1e37ea0becdd7b0ee4" - integrity sha512-h+Fadt1gIaQ06JaIiyqPsBjJ08fV5Q7md+V8bUvQW/9OvXfL2LRICTz2EcnnCP7QzrFTS6/27MRV6Bl9Yn97zA== - -elliptic@^6.5.4: - version "6.5.4" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" - integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== - dependencies: - bn.js "^4.11.9" - brorand "^1.1.0" - hash.js "^1.0.0" - hmac-drbg "^1.0.1" - inherits "^2.0.4" - minimalistic-assert "^1.0.1" - minimalistic-crypto-utils "^1.0.1" - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -emoji-regex@^9.2.2: - version "9.2.2" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" - integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== - -emojis-list@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" - integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== - -emoticon@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/emoticon/-/emoticon-3.2.0.tgz#c008ca7d7620fac742fe1bf4af8ff8fed154ae7f" - integrity sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg== - -enabled@2.0.x: - version "2.0.0" - resolved "https://registry.yarnpkg.com/enabled/-/enabled-2.0.0.tgz#f9dd92ec2d6f4bbc0d5d1e64e21d61cd4665e7c2" - integrity sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ== - -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== - -encoding@^0.1.12: - version "0.1.13" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" - integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== - dependencies: - iconv-lite "^0.6.2" - -end-of-stream@^1.1.0, end-of-stream@^1.4.1: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -enhanced-resolve@^5.10.0: - version "5.10.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz#0dc579c3bb2a1032e357ac45b8f3a6f3ad4fb1e6" - integrity sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ== - dependencies: - graceful-fs "^4.2.4" - tapable "^2.2.0" - -enquirer@^2.3.5: - version "2.3.6" - resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" - integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== - dependencies: - ansi-colors "^4.1.1" - -entities@^1.1.1, entities@~1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" - integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== - -entities@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" - integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== - -entities@^4.2.0, entities@^4.3.0: - version "4.3.1" - resolved "https://registry.yarnpkg.com/entities/-/entities-4.3.1.tgz#c34062a94c865c322f9d67b4384e4169bcede6a4" - integrity sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg== - -env-paths@^2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" - integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== - -envinfo@^7.7.4: - version "7.8.1" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" - integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== - -err-code@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" - integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5, es-abstract@^1.20.0, es-abstract@^1.20.1: - version "1.20.1" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz#027292cd6ef44bd12b1913b828116f54787d1814" - integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA== - dependencies: - call-bind "^1.0.2" - es-to-primitive "^1.2.1" - function-bind "^1.1.1" - function.prototype.name "^1.1.5" - get-intrinsic "^1.1.1" - get-symbol-description "^1.0.0" - has "^1.0.3" - has-property-descriptors "^1.0.0" - has-symbols "^1.0.3" - internal-slot "^1.0.3" - is-callable "^1.2.4" - is-negative-zero "^2.0.2" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.2" - is-string "^1.0.7" - is-weakref "^1.0.2" - object-inspect "^1.12.0" - object-keys "^1.1.1" - object.assign "^4.1.2" - regexp.prototype.flags "^1.4.3" - string.prototype.trimend "^1.0.5" - string.prototype.trimstart "^1.0.5" - unbox-primitive "^1.0.2" - -es-array-method-boxes-properly@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" - integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== - -es-module-lexer@^0.9.0: - version "0.9.3" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19" - integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== - -es-shim-unscopables@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" - integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== - dependencies: - has "^1.0.3" - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -es6-object-assign@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" - integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== - -es6-promise@^4.0.3: - version "4.2.8" - resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" - integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== - -es6-promisify@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" - integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ== - dependencies: - es6-promise "^4.0.3" - -esbuild-node-externals@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/esbuild-node-externals/-/esbuild-node-externals-1.4.1.tgz#7f8602c32791c113c70efef433eac55477136e29" - integrity sha512-ZFNGa6w1kYzn4wx9ty4eaItaOTSe2hWQZ6WXa/8guKJCiXL3XpW2CZT4gkx2OhfBKxpqaqa7ZeGK54ScoLSUdw== - dependencies: - find-up "5.0.0" - tslib "2.3.1" - -esbuild@^0.11.0: - version "0.11.23" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.11.23.tgz#c42534f632e165120671d64db67883634333b4b8" - integrity sha512-iaiZZ9vUF5wJV8ob1tl+5aJTrwDczlvGP0JoMmnpC2B0ppiMCu8n8gmy5ZTGl5bcG081XBVn+U+jP+mPFm5T5Q== - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-goat@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" - integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== - -escape-html@^1.0.3, escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== - -escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" - integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - -esdoc-inject-style-plugin@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/esdoc-inject-style-plugin/-/esdoc-inject-style-plugin-1.0.0.tgz#a13597368bb9fb89c365e066495caf97a4decbb1" - integrity sha512-LqSGr3YKe+vY2u6TCp9K+EEt97S78KjdJUz5PXyitHkp4nGXRSZq2ftEQJioF/WtTeGYWeQLzNAM9LihIlisqg== - dependencies: - cheerio "0.22.0" - fs-extra "1.0.0" - -eslint-config-airbnb-base@^14.2.1: - version "14.2.1" - resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz#8a2eb38455dc5a312550193b319cdaeef042cd1e" - integrity sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA== - dependencies: - confusing-browser-globals "^1.0.10" - object.assign "^4.1.2" - object.entries "^1.1.2" - -eslint-config-airbnb-typescript@^14.0.1: - version "14.0.2" - resolved "https://registry.yarnpkg.com/eslint-config-airbnb-typescript/-/eslint-config-airbnb-typescript-14.0.2.tgz#4dc1583b9eab671bb011dea7d4ff1fc0d88e6e09" - integrity sha512-oaVR63DqpRUiOOeSVxIzhD3FXbqJRH+7Lt9GCMsS9SKgrRW3XpZINN2FO4JEsnaHEGkktumd0AHE9K7KQNuXSQ== - dependencies: - eslint-config-airbnb-base "^14.2.1" - -eslint-config-prettier@^8.3.0: - version "8.5.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1" - integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q== - -eslint-import-resolver-node@^0.3.6: - version "0.3.6" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" - integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== - dependencies: - debug "^3.2.7" - resolve "^1.20.0" - -eslint-module-utils@^2.7.3: - version "2.7.3" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee" - integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ== - dependencies: - debug "^3.2.7" - find-up "^2.1.0" - -eslint-plugin-import@^2.24.2: - version "2.26.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b" - integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA== - dependencies: - array-includes "^3.1.4" - array.prototype.flat "^1.2.5" - debug "^2.6.9" - doctrine "^2.1.0" - eslint-import-resolver-node "^0.3.6" - eslint-module-utils "^2.7.3" - has "^1.0.3" - is-core-module "^2.8.1" - is-glob "^4.0.3" - minimatch "^3.1.2" - object.values "^1.1.5" - resolve "^1.22.0" - tsconfig-paths "^3.14.1" - -eslint-plugin-prettier@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b" - integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== - dependencies: - prettier-linter-helpers "^1.0.0" - -eslint-plugin-unicorn@^37.0.1: - version "37.0.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-37.0.1.tgz#a2292dc302ffc0be1791e6ebbb4ae93242833f11" - integrity sha512-E1jq5u9ojnadisJcPi+hMXTGSiIzkIUMDvWsBudsCGXvKUB2aNSU2TcfyW2/jAS5A4ryBXfzxLykMxX1EdluSQ== - dependencies: - "@babel/helper-validator-identifier" "^7.14.9" - ci-info "^3.2.0" - clean-regexp "^1.0.0" - eslint-template-visitor "^2.3.2" - eslint-utils "^3.0.0" - esquery "^1.4.0" - indent-string "4" - is-builtin-module "^3.1.0" - lodash "^4.17.21" - pluralize "^8.0.0" - read-pkg-up "^7.0.1" - regexp-tree "^0.1.23" - safe-regex "^2.1.1" - semver "^7.3.5" - strip-indent "^3.0.0" - -eslint-scope@5.1.1, eslint-scope@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== - dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" - -eslint-scope@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" - integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== - dependencies: - esrecurse "^4.3.0" - estraverse "^5.2.0" - -eslint-template-visitor@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/eslint-template-visitor/-/eslint-template-visitor-2.3.2.tgz#b52f96ff311e773a345d79053ccc78275bbc463d" - integrity sha512-3ydhqFpuV7x1M9EK52BPNj6V0Kwu0KKkcIAfpUhwHbR8ocRln/oUHgfxQupY8O1h4Qv/POHDumb/BwwNfxbtnA== - dependencies: - "@babel/core" "^7.12.16" - "@babel/eslint-parser" "^7.12.16" - eslint-visitor-keys "^2.0.0" - esquery "^1.3.1" - multimap "^1.1.0" - -eslint-utils@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" - integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== - dependencies: - eslint-visitor-keys "^1.1.0" - -eslint-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" - integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== - dependencies: - eslint-visitor-keys "^2.0.0" - -eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" - integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== - -eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" - integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== - -eslint-visitor-keys@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" - integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== - -eslint@^7.28.0: - version "7.32.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" - 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" - -eslint@^8.18.0: - version "8.20.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.20.0.tgz#048ac56aa18529967da8354a478be4ec0a2bc81b" - integrity sha512-d4ixhz5SKCa1D6SCPrivP7yYVi7nyD6A4vs6HIAul9ujBzcEmZVM3/0NN/yu5nKhmO1wjp5xQ46iRfmDGlOviA== - dependencies: - "@eslint/eslintrc" "^1.3.0" - "@humanwhocodes/config-array" "^0.9.2" - ajv "^6.10.0" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.3.2" - doctrine "^3.0.0" - escape-string-regexp "^4.0.0" - eslint-scope "^7.1.1" - eslint-utils "^3.0.0" - eslint-visitor-keys "^3.3.0" - espree "^9.3.2" - 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 "^6.0.1" - globals "^13.15.0" - ignore "^5.2.0" - import-fresh "^3.0.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - js-yaml "^4.1.0" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash.merge "^4.6.2" - minimatch "^3.1.2" - natural-compare "^1.4.0" - optionator "^0.9.1" - regexpp "^3.2.0" - strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" - text-table "^0.2.0" - v8-compile-cache "^2.0.3" - -espree@^7.3.0, espree@^7.3.1: - version "7.3.1" - resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" - integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== - dependencies: - acorn "^7.4.0" - acorn-jsx "^5.3.1" - eslint-visitor-keys "^1.3.0" - -espree@^9.3.2: - version "9.3.2" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.2.tgz#f58f77bd334731182801ced3380a8cc859091596" - integrity sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA== - dependencies: - acorn "^8.7.1" - acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.3.0" - -esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esquery@^1.3.1, esquery@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" - integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== - dependencies: - estraverse "^5.1.0" - -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^4.1.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -estraverse@^5.1.0, estraverse@^5.2.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" - integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== - -estrella@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/estrella/-/estrella-1.4.1.tgz#6971a710a91d38abe3ced6f6ffa68c0c6e08d369" - integrity sha512-h8vlec27CFxw+8uYFtgbvLvohx0v+IssCwb/haTQnI+kO2WaL0ApSTWxg49LneAtqrZkrnYVwXQB2ZgyIIAImw== - dependencies: - esbuild "^0.11.0" - optionalDependencies: - fsevents "~2.3.1" - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -eta@^1.12.3: - version "1.12.3" - resolved "https://registry.yarnpkg.com/eta/-/eta-1.12.3.tgz#2982d08adfbef39f9fa50e2fbd42d7337e7338b1" - integrity sha512-qHixwbDLtekO/d51Yr4glcaUJCIjGVJyTzuqV4GPlgZo1YpgOKG+avQynErZIYrfM6JIJdtiG2Kox8tbb+DoGg== - -etag@~1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== - -eval@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/eval/-/eval-0.1.8.tgz#2b903473b8cc1d1989b83a1e7923f883eb357f85" - integrity sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw== - dependencies: - "@types/node" "*" - require-like ">= 0.1.1" - -event-stream@=3.3.4: - version "3.3.4" - resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" - integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== - dependencies: - duplexer "~0.1.1" - from "~0" - map-stream "~0.1.0" - pause-stream "0.0.11" - split "0.3" - stream-combiner "~0.0.4" - through "~2.3.1" - -event-target-shim@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" - integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== - -eventemitter3@^4.0.0, eventemitter3@^4.0.4, eventemitter3@^4.0.7: - version "4.0.7" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" - integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== - -events@^3.2.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" - integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== - -execa@5.1.1, execa@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - 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" - -express@^4.17.3: - version "4.18.1" - resolved "https://registry.yarnpkg.com/express/-/express-4.18.1.tgz#7797de8b9c72c857b9cd0e14a5eea80666267caf" - integrity sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q== - dependencies: - accepts "~1.3.8" - array-flatten "1.1.1" - body-parser "1.20.0" - content-disposition "0.5.4" - content-type "~1.0.4" - cookie "0.5.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.10.3" - 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" - -extend-shallow@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== - dependencies: - is-extendable "^0.1.0" - -extend@^3.0.0, extend@^3.0.2, extend@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -external-editor@^3.0.3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" - integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== - dependencies: - chardet "^0.7.0" - iconv-lite "^0.4.24" - tmp "^0.0.33" - -extsprintf@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" - integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== - -extsprintf@^1.2.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" - integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== - -eyes@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" - integrity sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ== - -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-diff@^1.1.2: - version "1.2.0" - resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" - integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== - -fast-equals@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/fast-equals/-/fast-equals-3.0.3.tgz#8e6cb4e51ca1018d87dd41982ef92758b3e4197f" - integrity sha512-NCe8qxnZFARSHGztGMZOO/PC1qa5MIFB5Hp66WdzbCRAz8U8US3bx1UTgLS49efBQPcUtO9gf5oVEY8o7y/7Kg== - -fast-glob@^3.2.7, fast-glob@^3.2.9: - version "3.2.11" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" - integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== - 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" - -fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== - -fast-stable-stringify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" - integrity sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag== - -fast-text-encoding@^1.0.0, fast-text-encoding@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/fast-text-encoding/-/fast-text-encoding-1.0.4.tgz#bf1898ad800282a4e53c0ea9690704dd26e4298e" - integrity sha512-x6lDDm/tBAzX9kmsPcZsNbvDs3Zey3+scsxaZElS8xWLgUMAg/oFLeewfUz0mu1CblHhhsu15jGkraldkFh8KQ== - -fast-url-parser@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/fast-url-parser/-/fast-url-parser-1.1.3.tgz#f4af3ea9f34d8a271cf58ad2b3759f431f0b318d" - integrity sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ== - dependencies: - punycode "^1.3.2" - -fastest-levenshtein@^1.0.12: - version "1.0.14" - resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.14.tgz#9054384e4b7a78c88d01a4432dc18871af0ac859" - integrity sha512-tFfWHjnuUfKE186Tfgr+jtaFc0mZTApEgKDOeyN+FwOqRkO/zK/3h1AiRd8u8CY53owL3CUmGr/oI9p/RdyLTA== - -fastq@^1.6.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" - integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== - dependencies: - reusify "^1.0.4" - -faye-websocket@^0.11.3: - version "0.11.4" - resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" - integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== - dependencies: - websocket-driver ">=0.5.1" - -fbemitter@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/fbemitter/-/fbemitter-3.0.0.tgz#00b2a1af5411254aab416cd75f9e6289bee4bff3" - integrity sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw== - dependencies: - fbjs "^3.0.0" - -fbjs-css-vars@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8" - integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== - -fbjs@^3.0.0, fbjs@^3.0.1: - version "3.0.4" - resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.4.tgz#e1871c6bd3083bac71ff2da868ad5067d37716c6" - integrity sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ== - 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 "^0.7.30" - -fecha@^4.2.0: - version "4.2.3" - resolved "https://registry.yarnpkg.com/fecha/-/fecha-4.2.3.tgz#4d9ccdbc61e8629b259fdca67e65891448d569fd" - integrity sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw== - -feed@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/feed/-/feed-4.2.2.tgz#865783ef6ed12579e2c44bbef3c9113bc4956a7e" - integrity sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ== - dependencies: - xml-js "^1.6.11" - -fetch-blob@^3.1.2, fetch-blob@^3.1.4: - version "3.2.0" - resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" - integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== - dependencies: - node-domexception "^1.0.0" - web-streams-polyfill "^3.0.3" - -figures@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== - dependencies: - escape-string-regexp "^1.0.5" - -file-entry-cache@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" - integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== - dependencies: - flat-cache "^3.0.4" - -file-loader@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" - integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== - dependencies: - loader-utils "^2.0.0" - schema-utils "^3.0.0" - -file-uri-to-path@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== - -filelist@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" - integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== - dependencies: - minimatch "^5.0.1" - -filesize@^6.1.0: - version "6.4.0" - resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.4.0.tgz#914f50471dd66fdca3cefe628bd0cde4ef769bcd" - integrity sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ== - -filesize@^8.0.6: - version "8.0.7" - resolved "https://registry.yarnpkg.com/filesize/-/filesize-8.0.7.tgz#695e70d80f4e47012c132d57a059e80c6b580bd8" - integrity sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ== - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -filter-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b" - integrity sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ== - -finalhandler@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" - 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" - -find-cache-dir@^3.3.1: - version "3.3.2" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" - integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== - dependencies: - commondir "^1.0.1" - make-dir "^3.0.2" - pkg-dir "^4.1.0" - -find-root@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" - integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== - -find-up@5.0.0, find-up@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== - dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" - -find-up@^2.0.0, find-up@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" - integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== - dependencies: - locate-path "^2.0.0" - -find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== - dependencies: - locate-path "^3.0.0" - -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -find@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/find/-/find-0.3.0.tgz#4082e8fc8d8320f1a382b5e4f521b9bc50775cb8" - integrity sha512-iSd+O4OEYV/I36Zl8MdYJO0xD82wH528SaCieTVHhclgiYNe9y+yPKSwK+A7/WsmHL1EZ+pYUJBXWTL5qofksw== - dependencies: - traverse-chain "~0.1.0" - -flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== - dependencies: - flatted "^3.1.0" - rimraf "^3.0.2" - -flat@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" - integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== - -flatted@^3.1.0: - version "3.2.6" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.6.tgz#022e9218c637f9f3fc9c35ab9c9193f05add60b2" - integrity sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ== - -flux@^4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/flux/-/flux-4.0.3.tgz#573b504a24982c4768fdfb59d8d2ea5637d72ee7" - integrity sha512-yKAbrp7JhZhj6uiT1FTuVMlIAT1J4jqEyBpFApi1kxpGZCvacMVc/t1pMQyotqHhAgvoE3bNvAykhCo2CLjnYw== - dependencies: - fbemitter "^3.0.0" - fbjs "^3.0.1" - -fn.name@1.x.x: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fn.name/-/fn.name-1.1.0.tgz#26cad8017967aea8731bc42961d04a3d5988accc" - integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== - -follow-redirects@^1.0.0, follow-redirects@^1.14.0, follow-redirects@^1.14.7: - version "1.15.1" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.1.tgz#0ca6a452306c9b276e4d3127483e29575e207ad5" - integrity sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA== - -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== - dependencies: - is-callable "^1.1.3" - -forever-agent@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== - -fork-ts-checker-webpack-plugin@^6.5.0: - version "6.5.2" - resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz#4f67183f2f9eb8ba7df7177ce3cf3e75cdafb340" - integrity sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA== - 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" - -form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -form-data@~2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" - integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.6" - mime-types "^2.1.12" - -formdata-polyfill@^4.0.10: - version "4.0.10" - resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" - integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== - dependencies: - fetch-blob "^3.1.2" - -forwarded@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" - integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== - -fraction.js@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" - integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== - -fresh@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== - -from@~0: - version "0.1.7" - resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" - integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - -fs-extra@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" - integrity sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ== - dependencies: - graceful-fs "^4.1.2" - jsonfile "^2.1.0" - klaw "^1.0.0" - -fs-extra@^10.0.1, fs-extra@^10.1.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" - integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-extra@^8.1: - version "8.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-extra@^9.0, fs-extra@^9.0.0, fs-extra@^9.0.1, fs-extra@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" - 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" - -fs-minipass@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" - integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== - dependencies: - minipass "^2.6.0" - -fs-minipass@^2.0.0, fs-minipass@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== - dependencies: - minipass "^3.0.0" - -fs-monkey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.3.tgz#ae3ac92d53bb328efe0e9a1d9541f6ad8d48e2d3" - integrity sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q== - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== - -fs@^0.0.1-security: - version "0.0.1-security" - resolved "https://registry.yarnpkg.com/fs/-/fs-0.0.1-security.tgz#8a7bd37186b6dddf3813f23858b57ecaaf5e41d4" - integrity sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w== - -fsevents@~2.3.1, fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -function.prototype.name@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" - integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.0" - functions-have-names "^1.2.2" - -functional-red-black-tree@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" - integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== - -functions-have-names@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" - integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== - -g@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/g/-/g-2.0.1.tgz#0b5963ebd0ca70e3bc8c6766934a021821c8b857" - integrity sha512-Fi6Ng5fZ/ANLQ15H11hCe+09sgUoNvDEBevVgx3KoYOhsH5iLNPn54hx0jPZ+3oSWr+xajnp2Qau9VmPsc7hTA== - -gauge@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395" - integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== - dependencies: - aproba "^1.0.3 || ^2.0.0" - color-support "^1.1.2" - console-control-strings "^1.0.0" - has-unicode "^2.0.1" - object-assign "^4.1.1" - signal-exit "^3.0.0" - string-width "^4.2.3" - strip-ansi "^6.0.1" - wide-align "^1.1.2" - -gauge@~2.7.3: - version "2.7.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" - integrity sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg== - dependencies: - aproba "^1.0.3" - console-control-strings "^1.0.0" - has-unicode "^2.0.0" - object-assign "^4.1.0" - signal-exit "^3.0.0" - string-width "^1.0.1" - strip-ansi "^3.0.1" - wide-align "^1.1.0" - -gaxios@^4.0.0: - version "4.3.3" - resolved "https://registry.yarnpkg.com/gaxios/-/gaxios-4.3.3.tgz#d44bdefe52d34b6435cc41214fdb160b64abfc22" - integrity sha512-gSaYYIO1Y3wUtdfHmjDUZ8LWaxJQpiavzbF5Kq53akSzvmVg0RfyOcFDbO1KJ/KCGRFz2qG+lS81F0nkr7cRJA== - dependencies: - abort-controller "^3.0.0" - extend "^3.0.2" - https-proxy-agent "^5.0.0" - is-stream "^2.0.0" - node-fetch "^2.6.7" - -gcp-metadata@^4.2.0: - version "4.3.1" - resolved "https://registry.yarnpkg.com/gcp-metadata/-/gcp-metadata-4.3.1.tgz#fb205fe6a90fef2fd9c85e6ba06e5559ee1eefa9" - integrity sha512-x850LS5N7V1F3UcV7PoupzGsyD6iVwTVvsh3tbXfkctZnBnjW5yu5z1/3k3SehF7TyoTIe78rJs02GMMy+LF+A== - dependencies: - gaxios "^4.0.0" - json-bigint "^1.0.0" - -gensequence@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/gensequence/-/gensequence-3.1.1.tgz#95c1afc7c0680f92942c17f2d6f83f3d26ea97af" - integrity sha512-ys3h0hiteRwmY6BsvSttPmkhC0vEQHPJduANBRtH/dlDPZ0UBIb/dXy80IcckXyuQ6LKg+PloRqvGER9IS7F7g== - -gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-func-name@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" - integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== - -get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz#336975123e05ad0b7ba41f152ee4aadbea6cf598" - integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.3" - -get-own-enumerable-property-symbols@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" - integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== - -get-package-type@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" - integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== - -get-pkg-repo@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz#75973e1c8050c73f48190c52047c4cee3acbf385" - integrity sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA== - dependencies: - "@hutson/parse-repository-url" "^3.0.0" - hosted-git-info "^4.0.0" - through2 "^2.0.0" - yargs "^16.2.0" - -get-port@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" - integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== - -get-stdin@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" - integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== - -get-stream@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== - dependencies: - pump "^3.0.0" - -get-stream@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" - integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== - dependencies: - pump "^3.0.0" - -get-stream@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -get-symbol-description@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" - integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.1" - -getpass@^0.1.1: - version "0.1.7" - resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== - dependencies: - assert-plus "^1.0.0" - -git-raw-commits@^2.0.8: - version "2.0.11" - resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz#bc3576638071d18655e1cc60d7f524920008d723" - integrity sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A== - dependencies: - dargs "^7.0.0" - lodash "^4.17.15" - meow "^8.0.0" - split2 "^3.0.0" - through2 "^4.0.0" - -git-remote-origin-url@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" - integrity sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw== - dependencies: - gitconfiglocal "^1.0.0" - pify "^2.3.0" - -git-semver-tags@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-4.1.1.tgz#63191bcd809b0ec3e151ba4751c16c444e5b5780" - integrity sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA== - dependencies: - meow "^8.0.0" - semver "^6.0.0" - -git-up@^4.0.0: - version "4.0.5" - resolved "https://registry.yarnpkg.com/git-up/-/git-up-4.0.5.tgz#e7bb70981a37ea2fb8fe049669800a1f9a01d759" - integrity sha512-YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA== - dependencies: - is-ssh "^1.3.0" - parse-url "^6.0.0" - -git-url-parse@^11.4.4: - version "11.6.0" - resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.6.0.tgz#c634b8de7faa66498a2b88932df31702c67df605" - integrity sha512-WWUxvJs5HsyHL6L08wOusa/IXYtMuCAhrMmnTjQPpBU0TTHyDhnOATNH3xNQz7YOQUsqIIPTGr4xiVti1Hsk5g== - dependencies: - git-up "^4.0.0" - -gitconfiglocal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" - integrity sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ== - dependencies: - ini "^1.3.2" - -github-slugger@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.4.0.tgz#206eb96cdb22ee56fdc53a28d5a302338463444e" - integrity sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ== - -glob-parent@^5.1.1, glob-parent@^5.1.2, glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-parent@^6.0.1: - version "6.0.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" - integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== - dependencies: - is-glob "^4.0.3" - -glob-to-regexp@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" - integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== - -glob@7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" - integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^7.0.0, glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0: - version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^8.0.3: - version "8.0.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" - integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^5.0.1" - once "^1.3.0" - -global-dirs@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" - integrity sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg== - dependencies: - ini "^1.3.4" - -global-dirs@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.0.tgz#70a76fe84ea315ab37b1f5576cbde7d48ef72686" - integrity sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA== - dependencies: - ini "2.0.0" - -global-modules@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" - integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== - dependencies: - global-prefix "^3.0.0" - -global-prefix@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" - integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== - dependencies: - ini "^1.3.5" - kind-of "^6.0.2" - which "^1.3.1" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globals@^13.15.0, globals@^13.6.0, globals@^13.9.0: - version "13.17.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" - integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== - dependencies: - type-fest "^0.20.2" - -globby@^11.0.1, globby@^11.0.2, globby@^11.0.3, globby@^11.0.4, globby@^11.1.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" - 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" - -globby@^12.0.2: - version "12.2.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-12.2.0.tgz#2ab8046b4fba4ff6eede835b29f678f90e3d3c22" - integrity sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA== - dependencies: - array-union "^3.0.1" - dir-glob "^3.0.1" - fast-glob "^3.2.7" - ignore "^5.1.9" - merge2 "^1.4.1" - slash "^4.0.0" - -google-auth-library@^7.14.0: - version "7.14.1" - resolved "https://registry.yarnpkg.com/google-auth-library/-/google-auth-library-7.14.1.tgz#e3483034162f24cc71b95c8a55a210008826213c" - integrity sha512-5Rk7iLNDFhFeBYc3s8l1CqzbEBcdhwR193RlD4vSNFajIcINKI8W8P0JLmBpwymHqqWbX34pJDQu39cSy/6RsA== - dependencies: - arrify "^2.0.0" - base64-js "^1.3.0" - ecdsa-sig-formatter "^1.0.11" - fast-text-encoding "^1.0.0" - gaxios "^4.0.0" - gcp-metadata "^4.2.0" - gtoken "^5.0.4" - jws "^4.0.0" - lru-cache "^6.0.0" - -google-gax@^2.30.0: - version "2.30.5" - resolved "https://registry.yarnpkg.com/google-gax/-/google-gax-2.30.5.tgz#e836f984f3228900a8336f608c83d75f9cb73eff" - integrity sha512-Jey13YrAN2hfpozHzbtrwEfEHdStJh1GwaQ2+Akh1k0Tv/EuNVSuBtHZoKSBm5wBMvNsxTsEIZ/152NrYyZgxQ== - dependencies: - "@grpc/grpc-js" "~1.6.0" - "@grpc/proto-loader" "^0.6.12" - "@types/long" "^4.0.0" - abort-controller "^3.0.0" - duplexify "^4.0.0" - fast-text-encoding "^1.0.3" - google-auth-library "^7.14.0" - is-stream-ended "^0.1.4" - node-fetch "^2.6.1" - object-hash "^3.0.0" - proto3-json-serializer "^0.1.8" - protobufjs "6.11.3" - retry-request "^4.0.0" - -google-p12-pem@^3.1.3: - version "3.1.4" - resolved "https://registry.yarnpkg.com/google-p12-pem/-/google-p12-pem-3.1.4.tgz#123f7b40da204de4ed1fbf2fd5be12c047fc8b3b" - integrity sha512-HHuHmkLgwjdmVRngf5+gSmpkyaRI6QmOg77J8tkNBHhNEI62sGHyw4/+UkgyZEI7h84NbWprXDJ+sa3xOYFvTg== - dependencies: - node-forge "^1.3.1" - -got@^9.6.0: - version "9.6.0" - resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" - integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== - dependencies: - "@sindresorhus/is" "^0.14.0" - "@szmarczak/http-timer" "^1.1.2" - cacheable-request "^6.0.0" - decompress-response "^3.3.0" - duplexer3 "^0.1.4" - get-stream "^4.1.0" - lowercase-keys "^1.0.1" - mimic-response "^1.0.1" - p-cancelable "^1.0.0" - to-readable-stream "^1.0.0" - url-parse-lax "^3.0.0" - -graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.3, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.8, graceful-fs@^4.2.9: - version "4.2.10" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== - -gray-matter@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/gray-matter/-/gray-matter-4.0.3.tgz#e893c064825de73ea1f5f7d88c7a9f7274288798" - 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" - -growl@1.10.5: - version "1.10.5" - resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" - integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== - -gtoken@^5.0.4: - version "5.3.2" - resolved "https://registry.yarnpkg.com/gtoken/-/gtoken-5.3.2.tgz#deb7dc876abe002178e0515e383382ea9446d58f" - integrity sha512-gkvEKREW7dXWF8NV8pVrKfW7WqReAmjjkMBh6lNCCGOM4ucS0r0YyXXl0r/9Yj8wcW/32ISkfc8h5mPTDbtifQ== - dependencies: - gaxios "^4.0.0" - google-p12-pem "^3.1.3" - jws "^4.0.0" - -gzip-size@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz#065367fd50c239c0671cbcbad5be3e2eeb10e462" - integrity sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q== - dependencies: - duplexer "^0.1.2" - -handle-thing@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" - integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== - -handlebars@^4.7.7: - version "4.7.7" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" - integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== - dependencies: - minimist "^1.2.5" - neo-async "^2.6.0" - source-map "^0.6.1" - wordwrap "^1.0.0" - optionalDependencies: - uglify-js "^3.1.4" - -har-schema@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" - integrity sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q== - -har-validator@~5.1.0, har-validator@~5.1.3: - version "5.1.5" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" - integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== - dependencies: - ajv "^6.12.3" - har-schema "^2.0.0" - -hard-rejection@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" - integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== - -has-bigints@^1.0.1, has-bigints@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" - integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-own-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/has-own-prop/-/has-own-prop-2.0.0.tgz#f0f95d58f65804f5d218db32563bb85b8e0417af" - integrity sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ== - -has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== - dependencies: - get-intrinsic "^1.1.1" - -has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== - dependencies: - has-symbols "^1.0.2" - -has-unicode@^2.0.0, has-unicode@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== - -has-yarn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" - integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.7" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" - integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== - dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.1" - -hast-to-hyperscript@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz#9b67fd188e4c81e8ad66f803855334173920218d" - 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" - -hast-util-from-parse5@^5.0.0: - version "5.0.3" - resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-5.0.3.tgz#3089dc0ee2ccf6ec8bc416919b51a54a589e097c" - integrity sha512-gOc8UB99F6eWVWFtM9jUikjN7QkWxB3nY0df5Z0Zq1/Nkwl5V4hAAsl0tmwlgWl/1shlTF8DnNYLO8X6wRV9pA== - dependencies: - ccount "^1.0.3" - hastscript "^5.0.0" - property-information "^5.0.0" - web-namespaces "^1.1.2" - xtend "^4.0.1" - -hast-util-from-parse5@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz#554e34abdeea25ac76f5bd950a1f0180e0b3bc2a" - 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" - -hast-util-is-element@1.1.0, hast-util-is-element@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-1.1.0.tgz#3b3ed5159a2707c6137b48637fbfe068e175a425" - integrity sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ== - -hast-util-parse-selector@^2.0.0: - version "2.2.5" - resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a" - integrity sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ== - -hast-util-raw@6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-6.0.1.tgz#973b15930b7529a7b66984c98148b46526885977" - integrity sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig== - 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" - vfile "^4.0.0" - web-namespaces "^1.0.0" - xtend "^4.0.0" - zwitch "^1.0.0" - -hast-util-to-parse5@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz#1ec44650b631d72952066cea9b1445df699f8479" - 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" - -hast-util-to-text@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/hast-util-to-text/-/hast-util-to-text-2.0.1.tgz#04f2e065642a0edb08341976084aa217624a0f8b" - integrity sha512-8nsgCARfs6VkwH2jJU9b8LNTuR4700na+0h3PqCaEk4MAnMDeu5P0tP8mjk9LLNGxIeQRLbiDbZVw6rku+pYsQ== - dependencies: - hast-util-is-element "^1.0.0" - repeat-string "^1.0.0" - unist-util-find-after "^3.0.0" - -hastscript@^5.0.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-5.1.2.tgz#bde2c2e56d04c62dd24e8c5df288d050a355fb8a" - integrity sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ== - dependencies: - comma-separated-tokens "^1.0.0" - hast-util-parse-selector "^2.0.0" - property-information "^5.0.0" - space-separated-tokens "^1.0.0" - -hastscript@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-6.0.0.tgz#e8768d7eac56c3fdeac8a92830d58e811e5bf640" - 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" - -he@1.2.0, he@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" - integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== - -history@^4.9.0: - version "4.10.1" - resolved "https://registry.yarnpkg.com/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3" - integrity sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew== - dependencies: - "@babel/runtime" "^7.1.2" - loose-envify "^1.2.0" - resolve-pathname "^3.0.0" - tiny-invariant "^1.0.2" - tiny-warning "^1.0.0" - value-equal "^1.0.1" - -hmac-drbg@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - -hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.1: - version "3.3.2" - resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" - integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== - dependencies: - react-is "^16.7.0" - -hosted-git-info@^2.1.4: - version "2.8.9" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== - -hosted-git-info@^4.0.0, hosted-git-info@^4.0.1, hosted-git-info@^4.0.2: - version "4.1.0" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" - integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== - dependencies: - lru-cache "^6.0.0" - -hpack.js@^2.1.6: - version "2.1.6" - resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" - integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== - dependencies: - inherits "^2.0.1" - obuf "^1.0.0" - readable-stream "^2.0.1" - wbuf "^1.1.0" - -html-entities@^2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.3.3.tgz#117d7626bece327fc8baace8868fa6f5ef856e46" - integrity sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA== - -html-minifier-terser@^6.0.2, html-minifier-terser@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" - integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== - dependencies: - camel-case "^4.1.2" - clean-css "^5.2.2" - commander "^8.3.0" - he "^1.2.0" - param-case "^3.0.4" - relateurl "^0.2.7" - terser "^5.10.0" - -html-tags@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.2.0.tgz#dbb3518d20b726524e4dd43de397eb0a95726961" - integrity sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg== - -html-void-elements@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-1.0.5.tgz#ce9159494e86d95e45795b166c2021c2cfca4483" - integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w== - -html-webpack-plugin@^5.5.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz#c3911936f57681c1f9f4d8b68c158cd9dfe52f50" - integrity sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw== - dependencies: - "@types/html-minifier-terser" "^6.0.0" - html-minifier-terser "^6.0.2" - lodash "^4.17.21" - pretty-error "^4.0.0" - tapable "^2.0.0" - -htmlparser2@^3.9.1: - version "3.10.1" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" - integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== - dependencies: - domelementtype "^1.3.1" - domhandler "^2.3.0" - domutils "^1.5.1" - entities "^1.1.1" - inherits "^2.0.1" - readable-stream "^3.1.1" - -htmlparser2@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" - integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== - dependencies: - domelementtype "^2.0.1" - domhandler "^4.0.0" - domutils "^2.5.2" - entities "^2.0.0" - -htmlparser2@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.1.tgz#abaa985474fcefe269bc761a779b544d7196d010" - integrity sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA== - dependencies: - domelementtype "^2.3.0" - domhandler "^5.0.2" - domutils "^3.0.1" - entities "^4.3.0" - -http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" - integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== - -http-call@^5.2.2, http-call@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/http-call/-/http-call-5.3.0.tgz#4ded815b13f423de176eb0942d69c43b25b148db" - integrity sha512-ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w== - dependencies: - content-type "^1.0.4" - debug "^4.1.1" - is-retry-allowed "^1.1.0" - is-stream "^2.0.0" - parse-json "^4.0.0" - tunnel-agent "^0.6.0" - -http-deceiver@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" - integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== - -http-errors@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" - 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" - -http-errors@~1.6.2: - version "1.6.3" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" - integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== - dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.0" - statuses ">= 1.4.0 < 2" - -http-parser-js@>=0.5.1: - version "0.5.8" - resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" - integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== - -http-proxy-agent@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" - integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== - dependencies: - "@tootallnate/once" "1" - agent-base "6" - debug "4" - -http-proxy-middleware@^2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f" - integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== - dependencies: - "@types/http-proxy" "^1.17.8" - http-proxy "^1.18.1" - is-glob "^4.0.1" - is-plain-obj "^3.0.0" - micromatch "^4.0.2" - -http-proxy@^1.18.1: - version "1.18.1" - resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" - integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== - dependencies: - eventemitter3 "^4.0.0" - follow-redirects "^1.0.0" - requires-port "^1.0.0" - -http-signature@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" - integrity sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ== - dependencies: - assert-plus "^1.0.0" - jsprim "^1.2.2" - sshpk "^1.7.0" - -https-proxy-agent@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -humanize-ms@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== - dependencies: - ms "^2.0.0" - -hyperlinker@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/hyperlinker/-/hyperlinker-1.0.0.tgz#23dc9e38a206b208ee49bc2d6c8ef47027df0c0e" - integrity sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ== - -iconv-lite@0.4.24, iconv-lite@^0.4.24: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -iconv-lite@^0.6.2: - version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== - dependencies: - safer-buffer ">= 2.1.2 < 3.0.0" - -icss-utils@^5.0.0, icss-utils@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" - integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== - -ieee754@^1.1.13, ieee754@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -ignore-walk@^3.0.3: - version "3.0.4" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.4.tgz#c9a09f69b7c7b479a5d74ac1a3c0d4236d2a6335" - integrity sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ== - dependencies: - minimatch "^3.0.4" - -ignore@^4.0.6: - version "4.0.6" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" - integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== - -ignore@^5.1.9, ignore@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" - integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== - -image-size@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.0.2.tgz#d778b6d0ab75b2737c1556dd631652eb963bc486" - integrity sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg== - dependencies: - queue "6.0.2" - -immer@^9.0.7: - version "9.0.15" - resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.15.tgz#0b9169e5b1d22137aba7d43f8a81a495dd1b62dc" - integrity sha512-2eB/sswms9AEUSkOm4SbV5Y7Vmt/bKRwByd52jfLkW4OLYeaTP3EEiJ9agqU0O/tq6Dk62Zfj+TJSqfm1rLVGQ== - -import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1, import-fresh@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-lazy@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" - integrity sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A== - -import-local@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" - integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - -indent-string@4, indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -infer-owner@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" - integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== - -infima@0.2.0-alpha.38: - version "0.2.0-alpha.38" - resolved "https://registry.yarnpkg.com/infima/-/infima-0.2.0-alpha.38.tgz#e41d95c7cd82756549b17df12f613fed4af3d528" - integrity sha512-1WsmqSMI5IqzrUx3goq+miJznHBonbE3aoqZ1AR/i/oHhroxNeSV6Awv5VoVfXBhfTzLSnxkHaRI2qpAMYcCzw== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -inherits@2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== - -ini@2.0.0, ini@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" - integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== - -ini@^1.3.2, ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: - version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -init-package-json@^2.0.2, init-package-json@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-2.0.5.tgz#78b85f3c36014db42d8f32117252504f68022646" - integrity sha512-u1uGAtEFu3VA6HNl/yUWw57jmKEMx8SKOxHhxjGnOFUiIlFnohKDFg4ZrPpv9wWqk44nDxGJAtqjdQFm+9XXQA== - dependencies: - npm-package-arg "^8.1.5" - promzard "^0.3.0" - read "~1.0.1" - read-package-json "^4.1.1" - semver "^7.3.5" - validate-npm-package-license "^3.0.4" - validate-npm-package-name "^3.0.0" - -inline-style-parser@0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1" - integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== - -inquirer@^7.3.3: - version "7.3.3" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" - 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" - -inquirer@^8.2.0: - version "8.2.4" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.4.tgz#ddbfe86ca2f67649a67daa6f1051c128f684f0b4" - integrity sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg== - dependencies: - ansi-escapes "^4.2.1" - chalk "^4.1.1" - cli-cursor "^3.1.0" - cli-width "^3.0.0" - external-editor "^3.0.3" - figures "^3.0.0" - lodash "^4.17.21" - mute-stream "0.0.8" - ora "^5.4.1" - run-async "^2.4.0" - rxjs "^7.5.5" - string-width "^4.1.0" - strip-ansi "^6.0.0" - through "^2.3.6" - wrap-ansi "^7.0.0" - -internal-slot@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" - integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== - dependencies: - get-intrinsic "^1.1.0" - has "^1.0.3" - side-channel "^1.0.4" - -interpret@^1.0.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" - integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== - -invariant@^2.2.4: - version "2.2.4" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" - integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== - dependencies: - loose-envify "^1.0.0" - -ip-regex@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5" - integrity sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q== - -ip@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" - integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== - -ipaddr.js@1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== - -ipaddr.js@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz#eca256a7a877e917aeb368b0a7497ddf42ef81c0" - integrity sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng== - -is-alphabetical@1.0.4, is-alphabetical@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" - integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== - -is-alphanumerical@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" - integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== - dependencies: - is-alphabetical "^1.0.0" - is-decimal "^1.0.0" - -is-arguments@^1.0.4: - version "1.1.1" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" - integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== - -is-arrayish@^0.3.1: - version "0.3.2" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" - integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== - -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== - dependencies: - has-bigints "^1.0.1" - -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-buffer@^2.0.0: - version "2.0.5" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" - integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== - -is-builtin-module@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.1.0.tgz#6fdb24313b1c03b75f8b9711c0feb8c30b903b00" - integrity sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg== - dependencies: - builtin-modules "^3.0.0" - -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" - integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== - -is-ci@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" - integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== - dependencies: - ci-info "^2.0.0" - -is-cidr@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/is-cidr/-/is-cidr-4.0.2.tgz#94c7585e4c6c77ceabf920f8cde51b8c0fda8814" - integrity sha512-z4a1ENUajDbEl/Q6/pVBpTR1nBjjEE1X7qb7bmWYanNnPoKAvUCPFKeXV6Fe4mgTkWKBqiHIcwsI3SndiO5FeA== - dependencies: - cidr-regex "^3.1.1" - -is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69" - integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== - dependencies: - has "^1.0.3" - -is-date-object@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== - dependencies: - has-tostringtag "^1.0.0" - -is-decimal@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5" - integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== - -is-docker@^2.0.0, is-docker@^2.1.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" - integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== - -is-extendable@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw== - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-generator-function@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" - integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== - dependencies: - has-tostringtag "^1.0.0" - -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-hexadecimal@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" - integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== - -is-installed-globally@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" - integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== - dependencies: - global-dirs "^3.0.0" - is-path-inside "^3.0.2" - -is-interactive@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" - integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== - -is-lambda@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" - integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== - -is-nan@^1.2.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" - integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== - dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - -is-negative-zero@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" - integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== - -is-npm@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-5.0.0.tgz#43e8d65cc56e1b67f8d47262cf667099193f45a8" - integrity sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA== - -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== - dependencies: - has-tostringtag "^1.0.0" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-obj@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" - integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== - -is-obj@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" - integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== - -is-path-cwd@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" - integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== - -is-path-inside@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" - integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== - -is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== - -is-plain-obj@^2.0.0, is-plain-obj@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" - integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== - -is-plain-obj@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" - integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== - -is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-plain-object@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" - integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== - -is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" - integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== - -is-retry-allowed@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" - integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== - -is-root@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" - integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== - -is-shared-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" - integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== - dependencies: - call-bind "^1.0.2" - -is-ssh@^1.3.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.0.tgz#4f8220601d2839d8fa624b3106f8e8884f01b8b2" - integrity sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ== - dependencies: - protocols "^2.0.1" - -is-stream-ended@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/is-stream-ended/-/is-stream-ended-0.1.4.tgz#f50224e95e06bce0e356d440a4827cd35b267eda" - integrity sha512-xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw== - -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== - -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== - dependencies: - has-tostringtag "^1.0.0" - -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== - dependencies: - has-symbols "^1.0.2" - -is-text-path@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" - integrity sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w== - dependencies: - text-extensions "^1.0.0" - -is-typed-array@^1.1.3, is-typed-array@^1.1.9: - version "1.1.9" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67" - integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - es-abstract "^1.20.0" - for-each "^0.3.3" - has-tostringtag "^1.0.0" - -is-typedarray@^1.0.0, is-typedarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== - -is-unicode-supported@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" - integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== - -is-weakref@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" - integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== - dependencies: - call-bind "^1.0.2" - -is-whitespace-character@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7" - integrity sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w== - -is-word-character@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230" - integrity sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA== - -is-wsl@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - -is-yarn-global@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" - integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== - -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" - integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== - -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== - -isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== - -isomorphic-ws@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" - integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== - -isstream@~0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== - -jake@^10.8.5: - version "10.8.5" - resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" - integrity sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw== - dependencies: - async "^3.2.3" - chalk "^4.0.2" - filelist "^1.0.1" - minimatch "^3.0.4" - -jayson@^3.0.1, jayson@^3.4.4: - version "3.6.6" - resolved "https://registry.yarnpkg.com/jayson/-/jayson-3.6.6.tgz#189984f624e398f831bd2be8e8c80eb3abf764a1" - integrity sha512-f71uvrAWTtrwoww6MKcl9phQTC+56AopLyEenWvKVAIMz+q0oVGj6tenLZ7Z6UiPBkJtKLj4kt0tACllFQruGQ== - dependencies: - "@types/connect" "^3.4.33" - "@types/express-serve-static-core" "^4.17.9" - "@types/lodash" "^4.14.159" - "@types/node" "^12.12.54" - "@types/ws" "^7.4.4" - JSONStream "^1.3.5" - commander "^2.20.3" - delay "^5.0.0" - es6-promisify "^5.0.0" - eyes "^0.1.8" - isomorphic-ws "^4.0.1" - json-stringify-safe "^5.0.1" - lodash "^4.17.20" - uuid "^8.3.2" - ws "^7.4.5" - -jest-worker@^27.0.2, jest-worker@^27.4.5: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" - integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^8.0.0" - -joi@^17.4.0, joi@^17.6.0: - version "17.6.0" - resolved "https://registry.yarnpkg.com/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2" - integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== - dependencies: - "@hapi/hoek" "^9.0.0" - "@hapi/topo" "^5.0.0" - "@sideway/address" "^4.1.3" - "@sideway/formula" "^3.0.0" - "@sideway/pinpoint" "^2.0.0" - -js-sha256@^0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" - integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA== - -js-sha3@^0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" - integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== - -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@4.1.0, js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== - dependencies: - argparse "^2.0.1" - -js-yaml@^3.13.1, js-yaml@^3.14.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -jsbn@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== - -json-bigint@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/json-bigint/-/json-bigint-1.0.0.tgz#ae547823ac0cad8398667f8cd9ef4730f5b01ff1" - integrity sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ== - dependencies: - bignumber.js "^9.0.0" - -json-buffer@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" - integrity sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ== - -json-parse-better-errors@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== - -json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema-traverse@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" - integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== - -json-schema@0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" - integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== - -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== - -json-stringify-nice@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz#2c937962b80181d3f317dd39aa323e14f5a60a67" - integrity sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw== - -json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== - -json5@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== - dependencies: - minimist "^1.2.0" - -json5@^2.1.2, json5@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" - integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== - -jsonc-parser@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.1.0.tgz#73b8f0e5c940b83d03476bc2e51a20ef0932615d" - integrity sha512-DRf0QjnNeCUds3xTjKlQQ3DpJD51GvDjJfnxUVWg6PZTo2otSm+slzNAxU/35hF8/oJIKoG9slq30JYOsF2azg== - -jsonfile@^2.1.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" - integrity sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw== - optionalDependencies: - graceful-fs "^4.1.6" - -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== - optionalDependencies: - graceful-fs "^4.1.6" - -jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== - dependencies: - universalify "^2.0.0" - optionalDependencies: - graceful-fs "^4.1.6" - -jsonparse@^1.2.0, jsonparse@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" - integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== - -jsonpath-plus@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/jsonpath-plus/-/jsonpath-plus-6.0.1.tgz#9a3e16cedadfab07a3d8dc4e8cd5df4ed8f49c4d" - integrity sha512-EvGovdvau6FyLexFH2OeXfIITlgIbgZoAZe3usiySeaIDm5QS+A10DKNpaPBBqqRSZr2HN6HVNXxtwUAr2apEw== - -jsprim@^1.2.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.2.tgz#712c65533a15c878ba59e9ed5f0e26d5b77c5feb" - integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw== - dependencies: - assert-plus "1.0.0" - extsprintf "1.3.0" - json-schema "0.4.0" - verror "1.10.0" - -just-diff-apply@^3.0.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/just-diff-apply/-/just-diff-apply-3.1.2.tgz#710d8cda00c65dc4e692df50dbe9bac5581c2193" - integrity sha512-TCa7ZdxCeq6q3Rgms2JCRHTCfWAETPZ8SzYUbkYF6KR3I03sN29DaOIC+xyWboIcMvjAsD5iG2u/RWzHD8XpgQ== - -just-diff@^3.0.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/just-diff/-/just-diff-3.1.1.tgz#d50c597c6fd4776495308c63bdee1b6839082647" - integrity sha512-sdMWKjRq8qWZEjDcVA6llnUT8RDEBIfOiGpYFPYa9u+2c39JCsejktSP7mj5eRid5EIvTzIpQ2kDOCw1Nq9BjQ== - -jwa@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/jwa/-/jwa-2.0.0.tgz#a7e9c3f29dae94027ebcaf49975c9345593410fc" - integrity sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA== - dependencies: - buffer-equal-constant-time "1.0.1" - ecdsa-sig-formatter "1.0.11" - safe-buffer "^5.0.1" - -jws@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/jws/-/jws-4.0.0.tgz#2d4e8cf6a318ffaa12615e9dec7e86e6c97310f4" - integrity sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg== - dependencies: - jwa "^2.0.0" - safe-buffer "^5.0.1" - -katex@^0.13.0: - version "0.13.24" - resolved "https://registry.yarnpkg.com/katex/-/katex-0.13.24.tgz#fe55455eb455698cb24b911a353d16a3c855d905" - integrity sha512-jZxYuKCma3VS5UuxOx/rFV1QyGSl3Uy/i0kTJF3HgQ5xMinCQVF8Zd4bMY/9aI9b9A2pjIBOsjSSm68ykTAr8w== - dependencies: - commander "^8.0.0" - -keccak@^3.0.1: - version "3.0.2" - resolved "https://registry.yarnpkg.com/keccak/-/keccak-3.0.2.tgz#4c2c6e8c54e04f2670ee49fa734eb9da152206e0" - integrity sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ== - dependencies: - node-addon-api "^2.0.0" - node-gyp-build "^4.2.0" - readable-stream "^3.6.0" - -keyv@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" - integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== - dependencies: - json-buffer "3.0.0" - -kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -klaw@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" - integrity sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw== - optionalDependencies: - graceful-fs "^4.1.9" - -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - -klona@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc" - integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ== - -kuler@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/kuler/-/kuler-2.0.0.tgz#e2c570a3800388fb44407e851531c1d670b061b3" - integrity sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A== - -latest-version@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" - integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== - dependencies: - package-json "^6.3.0" - -lazy-ass@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" - integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== - -lerna@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/lerna/-/lerna-4.0.0.tgz#b139d685d50ea0ca1be87713a7c2f44a5b678e9e" - integrity sha512-DD/i1znurfOmNJb0OBw66NmNqiM8kF6uIrzrJ0wGE3VNdzeOhz9ziWLYiRaZDGGwgbcjOo6eIfcx9O5Qynz+kg== - dependencies: - "@lerna/add" "4.0.0" - "@lerna/bootstrap" "4.0.0" - "@lerna/changed" "4.0.0" - "@lerna/clean" "4.0.0" - "@lerna/cli" "4.0.0" - "@lerna/create" "4.0.0" - "@lerna/diff" "4.0.0" - "@lerna/exec" "4.0.0" - "@lerna/import" "4.0.0" - "@lerna/info" "4.0.0" - "@lerna/init" "4.0.0" - "@lerna/link" "4.0.0" - "@lerna/list" "4.0.0" - "@lerna/publish" "4.0.0" - "@lerna/run" "4.0.0" - "@lerna/version" "4.0.0" - import-local "^3.0.2" - npmlog "^4.1.2" - -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - -levn@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" - integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== - dependencies: - prelude-ls "^1.2.1" - type-check "~0.4.0" - -libnpmaccess@^4.0.1, libnpmaccess@^4.0.2: - version "4.0.3" - resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-4.0.3.tgz#dfb0e5b0a53c315a2610d300e46b4ddeb66e7eec" - integrity sha512-sPeTSNImksm8O2b6/pf3ikv4N567ERYEpeKRPSmqlNt1dTZbvgpJIzg5vAhXHpw2ISBsELFRelk0jEahj1c6nQ== - dependencies: - aproba "^2.0.0" - minipass "^3.1.1" - npm-package-arg "^8.1.2" - npm-registry-fetch "^11.0.0" - -libnpmdiff@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/libnpmdiff/-/libnpmdiff-2.0.4.tgz#bb1687992b1a97a8ea4a32f58ad7c7f92de53b74" - integrity sha512-q3zWePOJLHwsLEUjZw3Kyu/MJMYfl4tWCg78Vl6QGSfm4aXBUSVzMzjJ6jGiyarsT4d+1NH4B1gxfs62/+y9iQ== - dependencies: - "@npmcli/disparity-colors" "^1.0.1" - "@npmcli/installed-package-contents" "^1.0.7" - binary-extensions "^2.2.0" - diff "^5.0.0" - minimatch "^3.0.4" - npm-package-arg "^8.1.1" - pacote "^11.3.0" - tar "^6.1.0" - -libnpmexec@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/libnpmexec/-/libnpmexec-2.0.1.tgz#729ae3e15a3ba225964ccf248117a75d311eeb73" - integrity sha512-4SqBB7eJvJWmUKNF42Q5qTOn20DRjEE4TgvEh2yneKlAiRlwlhuS9MNR45juWwmoURJlf2K43bozlVt7OZiIOw== - dependencies: - "@npmcli/arborist" "^2.3.0" - "@npmcli/ci-detect" "^1.3.0" - "@npmcli/run-script" "^1.8.4" - chalk "^4.1.0" - mkdirp-infer-owner "^2.0.0" - npm-package-arg "^8.1.2" - pacote "^11.3.1" - proc-log "^1.0.0" - read "^1.0.7" - read-package-json-fast "^2.0.2" - walk-up-path "^1.0.0" - -libnpmfund@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/libnpmfund/-/libnpmfund-1.1.0.tgz#ee91313905b3194b900530efa339bc3f9fc4e5c4" - integrity sha512-Kfmh3pLS5/RGKG5WXEig8mjahPVOxkik6lsbH4iX0si1xxNi6eeUh/+nF1MD+2cgalsQif3O5qyr6mNz2ryJrQ== - dependencies: - "@npmcli/arborist" "^2.5.0" - -libnpmhook@^6.0.2: - version "6.0.3" - resolved "https://registry.yarnpkg.com/libnpmhook/-/libnpmhook-6.0.3.tgz#1d7f0d7e6a7932fbf7ce0881fdb0ed8bf8748a30" - integrity sha512-3fmkZJibIybzmAvxJ65PeV3NzRc0m4xmYt6scui5msocThbEp4sKFT80FhgrCERYDjlUuFahU6zFNbJDHbQ++g== - dependencies: - aproba "^2.0.0" - npm-registry-fetch "^11.0.0" - -libnpmorg@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/libnpmorg/-/libnpmorg-2.0.3.tgz#4e605d4113dfa16792d75343824a0625c76703bc" - integrity sha512-JSGl3HFeiRFUZOUlGdiNcUZOsUqkSYrg6KMzvPZ1WVZ478i47OnKSS0vkPmX45Pai5mTKuwIqBMcGWG7O8HfdA== - dependencies: - aproba "^2.0.0" - npm-registry-fetch "^11.0.0" - -libnpmpack@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/libnpmpack/-/libnpmpack-2.0.1.tgz#d3eac25cc8612f4e7cdeed4730eee339ba51c643" - integrity sha512-He4/jxOwlaQ7YG7sIC1+yNeXeUDQt8RLBvpI68R3RzPMZPa4/VpxhlDo8GtBOBDYoU8eq6v1wKL38sq58u4ibQ== - dependencies: - "@npmcli/run-script" "^1.8.3" - npm-package-arg "^8.1.0" - pacote "^11.2.6" - -libnpmpublish@^4.0.0, libnpmpublish@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-4.0.2.tgz#be77e8bf5956131bcb45e3caa6b96a842dec0794" - integrity sha512-+AD7A2zbVeGRCFI2aO//oUmapCwy7GHqPXFJh3qpToSRNU+tXKJ2YFUgjt04LPPAf2dlEH95s6EhIHM1J7bmOw== - dependencies: - normalize-package-data "^3.0.2" - npm-package-arg "^8.1.2" - npm-registry-fetch "^11.0.0" - semver "^7.1.3" - ssri "^8.0.1" - -libnpmsearch@^3.1.1: - version "3.1.2" - resolved "https://registry.yarnpkg.com/libnpmsearch/-/libnpmsearch-3.1.2.tgz#aee81b9e4768750d842b627a3051abc89fdc15f3" - integrity sha512-BaQHBjMNnsPYk3Bl6AiOeVuFgp72jviShNBw5aHaHNKWqZxNi38iVNoXbo6bG/Ccc/m1To8s0GtMdtn6xZ1HAw== - dependencies: - npm-registry-fetch "^11.0.0" - -libnpmteam@^2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/libnpmteam/-/libnpmteam-2.0.4.tgz#9dbe2e18ae3cb97551ec07d2a2daf9944f3edc4c" - integrity sha512-FPrVJWv820FZFXaflAEVTLRWZrerCvfe7ZHSMzJ/62EBlho2KFlYKjyNEsPW3JiV7TLSXi3vo8u0gMwIkXSMTw== - dependencies: - aproba "^2.0.0" - npm-registry-fetch "^11.0.0" - -libnpmversion@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/libnpmversion/-/libnpmversion-1.2.1.tgz#689aa7fe0159939b3cbbf323741d34976f4289e9" - integrity sha512-AA7x5CFgBFN+L4/JWobnY5t4OAHjQuPbAwUYJ7/NtHuyLut5meb+ne/aj0n7PWNiTGCJcRw/W6Zd2LoLT7EZuQ== - dependencies: - "@npmcli/git" "^2.0.7" - "@npmcli/run-script" "^1.8.4" - json-parse-even-better-errors "^2.3.1" - semver "^7.3.5" - stringify-package "^1.0.1" - -lilconfig@^2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.6.tgz#32a384558bd58af3d4c6e077dd1ad1d397bc69d4" - integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg== - -lines-and-columns@^1.1.6: - version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== - -load-json-file@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" - integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== - dependencies: - graceful-fs "^4.1.2" - parse-json "^4.0.0" - pify "^3.0.0" - strip-bom "^3.0.0" - -load-json-file@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-5.3.0.tgz#4d3c1e01fa1c03ea78a60ac7af932c9ce53403f3" - integrity sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw== - dependencies: - graceful-fs "^4.1.15" - parse-json "^4.0.0" - pify "^4.0.1" - strip-bom "^3.0.0" - type-fest "^0.3.0" - -load-json-file@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-6.2.0.tgz#5c7770b42cafa97074ca2848707c61662f4251a1" - integrity sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ== - dependencies: - graceful-fs "^4.1.15" - parse-json "^5.0.0" - strip-bom "^4.0.0" - type-fest "^0.6.0" - -load-script@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/load-script/-/load-script-1.0.0.tgz#0491939e0bee5643ee494a7e3da3d2bac70c6ca4" - integrity sha512-kPEjMFtZvwL9TaZo0uZ2ml+Ye9HUMmPwbYRJ324qF9tqMejwykJ5ggTyvzmrbBeapCAbk98BSbTeovHEEP1uCA== - -loader-runner@^4.2.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" - integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== - -loader-utils@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.2.tgz#d6e3b4fb81870721ae4e0868ab11dd638368c129" - integrity sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" - -loader-utils@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.0.tgz#bcecc51a7898bee7473d4bc6b845b23af8304d4f" - integrity sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ== - -locate-path@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" - integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== - dependencies: - p-locate "^2.0.0" - path-exists "^3.0.0" - -locate-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== - dependencies: - p-locate "^3.0.0" - path-exists "^3.0.0" - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -locate-path@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" - integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== - dependencies: - p-locate "^5.0.0" - -lodash._reinterpolate@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" - integrity sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA== - -lodash.assignin@^4.0.9: - version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" - integrity sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg== - -lodash.bind@^4.1.4: - version "4.2.1" - resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" - integrity sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA== - -lodash.camelcase@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" - integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== - -lodash.curry@^4.0.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.curry/-/lodash.curry-4.1.1.tgz#248e36072ede906501d75966200a86dab8b23170" - integrity sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA== - -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== - -lodash.defaults@^4.0.1: - version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" - integrity sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ== - -lodash.filter@^4.4.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" - integrity sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ== - -lodash.flatten@^4.2.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" - integrity sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g== - -lodash.flow@^3.3.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/lodash.flow/-/lodash.flow-3.5.0.tgz#87bf40292b8cf83e4e8ce1a3ae4209e20071675a" - integrity sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw== - -lodash.foreach@^4.3.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" - integrity sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ== - -lodash.ismatch@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" - integrity sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g== - -lodash.map@^4.4.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" - integrity sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q== - -lodash.memoize@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== - -lodash.merge@^4.4.0, lodash.merge@^4.6.2: - version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== - -lodash.pick@^4.2.1: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" - integrity sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q== - -lodash.reduce@^4.4.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" - integrity sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw== - -lodash.reject@^4.4.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" - integrity sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ== - -lodash.some@^4.4.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" - integrity sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ== - -lodash.template@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" - integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== - dependencies: - lodash._reinterpolate "^3.0.0" - lodash.templatesettings "^4.0.0" - -lodash.templatesettings@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" - integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== - dependencies: - lodash._reinterpolate "^3.0.0" - -lodash.throttle@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" - integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== - -lodash.truncate@^4.4.2: - version "4.4.2" - resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" - integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== - -lodash.uniq@4.5.0, lodash.uniq@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" - integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== - -lodash@^4.13.1, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.7.0: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -log-chopper@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/log-chopper/-/log-chopper-1.0.2.tgz#a88da7a47a9f0e511eda4d5e1dc840e0eaf4547a" - integrity sha512-tEWS6Fb+Xv0yLChJ6saA1DP3H1yPL0PfiIN7SDJ+U/CyP+fD4G/dhKfow+P5UuJWi6BdE4mUcPkJclGXCWxDrg== - dependencies: - byline "5.x" - -log-symbols@4.1.0, log-symbols@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" - integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== - dependencies: - chalk "^4.1.0" - is-unicode-supported "^0.1.0" - -logform@^2.3.2, logform@^2.4.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/logform/-/logform-2.4.2.tgz#a617983ac0334d0c3b942c34945380062795b47c" - integrity sha512-W4c9himeAwXEdZ05dQNerhFz2XG80P9Oj0loPUMV23VC2it0orMHQhJm4hdnnor3rd1HsGf6a2lPwBM1zeXHGw== - dependencies: - "@colors/colors" "1.5.0" - fecha "^4.2.0" - ms "^2.1.1" - safe-stable-stringify "^2.3.1" - triple-beam "^1.3.0" - -long@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" - integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== - -long@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/long/-/long-5.2.0.tgz#2696dadf4b4da2ce3f6f6b89186085d94d52fd61" - integrity sha512-9RTUNjK60eJbx3uz+TEGF7fUr29ZDxR5QzXcyDpeSfeH28S9ycINflOgOlppit5U+4kNTe83KQnMEerw7GmE8w== - -loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -loupe@^2.3.1: - version "2.3.4" - resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.4.tgz#7e0b9bffc76f148f9be769cb1321d3dcf3cb25f3" - integrity sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ== - dependencies: - get-func-name "^2.0.0" - -lower-case@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" - integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== - dependencies: - tslib "^2.0.3" - -lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" - integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== - -lowercase-keys@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" - integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -lunr@^2.3.9: - version "2.3.9" - resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" - integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== - -make-dir@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" - integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== - dependencies: - pify "^4.0.1" - semver "^5.6.0" - -make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -make-error@^1.1.1: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -make-fetch-happen@^8.0.9: - version "8.0.14" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-8.0.14.tgz#aaba73ae0ab5586ad8eaa68bd83332669393e222" - integrity sha512-EsS89h6l4vbfJEtBZnENTOFk8mCRpY5ru36Xe5bcX1KYIli2mkSHqoFsp5O1wMDvTJJzxe/4THpCTtygjeeGWQ== - dependencies: - agentkeepalive "^4.1.3" - cacache "^15.0.5" - http-cache-semantics "^4.1.0" - http-proxy-agent "^4.0.1" - https-proxy-agent "^5.0.0" - is-lambda "^1.0.1" - lru-cache "^6.0.0" - minipass "^3.1.3" - minipass-collect "^1.0.2" - minipass-fetch "^1.3.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - promise-retry "^2.0.1" - socks-proxy-agent "^5.0.0" - ssri "^8.0.0" - -make-fetch-happen@^9.0.1, make-fetch-happen@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz#53085a09e7971433e6765f7971bf63f4e05cb968" - integrity sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg== - dependencies: - agentkeepalive "^4.1.3" - cacache "^15.2.0" - http-cache-semantics "^4.1.0" - http-proxy-agent "^4.0.1" - https-proxy-agent "^5.0.0" - is-lambda "^1.0.1" - lru-cache "^6.0.0" - minipass "^3.1.3" - minipass-collect "^1.0.2" - minipass-fetch "^1.3.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - negotiator "^0.6.2" - promise-retry "^2.0.1" - socks-proxy-agent "^6.0.0" - ssri "^8.0.0" - -map-obj@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== - -map-obj@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" - integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== - -map-stream@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" - integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== - -markdown-escapes@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535" - integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg== - -marked@^4.0.16: - version "4.0.18" - resolved "https://registry.yarnpkg.com/marked/-/marked-4.0.18.tgz#cd0ac54b2e5610cfb90e8fd46ccaa8292c9ed569" - integrity sha512-wbLDJ7Zh0sqA0Vdg6aqlbT+yPxqLblpAZh1mK2+AO2twQkPywvvqQNfEPVwSSRjZ7dZcdeVBIAgiO7MMp3Dszw== - -mdast-squeeze-paragraphs@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz#7c4c114679c3bee27ef10b58e2e015be79f1ef97" - integrity sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ== - dependencies: - unist-util-remove "^2.0.0" - -mdast-util-definitions@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2" - integrity sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ== - dependencies: - unist-util-visit "^2.0.0" - -mdast-util-to-hast@10.0.1: - version "10.0.1" - resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz#0cfc82089494c52d46eb0e3edb7a4eb2aea021eb" - integrity sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA== - 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" - -mdast-util-to-string@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz#b8cfe6a713e1091cb5b728fc48885a4767f8b97b" - integrity sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w== - -mdn-data@2.0.14: - version "2.0.14" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" - integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== - -mdn-data@2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" - integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== - -mdurl@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" - integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== - -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== - -memfs@^3.1.2, memfs@^3.4.3: - version "3.4.7" - resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.4.7.tgz#e5252ad2242a724f938cb937e3c4f7ceb1f70e5a" - integrity sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw== - dependencies: - fs-monkey "^1.0.3" - -memoize-one@^5.1.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e" - integrity sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q== - -memorystream@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" - integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== - -meow@^8.0.0: - version "8.1.2" - resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" - integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== - dependencies: - "@types/minimist" "^1.2.0" - camelcase-keys "^6.2.2" - decamelize-keys "^1.1.0" - hard-rejection "^2.1.0" - minimist-options "4.1.0" - normalize-package-data "^3.0.0" - read-pkg-up "^7.0.1" - redent "^3.0.0" - trim-newlines "^3.0.0" - type-fest "^0.18.0" - yargs-parser "^20.2.3" - -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -merge2@^1.3.0, merge2@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== - -micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== - dependencies: - braces "^3.0.2" - picomatch "^2.3.1" - -mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": - version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== - -mime-db@~1.33.0: - version "1.33.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" - integrity sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ== - -mime-types@2.1.18: - version "2.1.18" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" - integrity sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ== - dependencies: - mime-db "~1.33.0" - -mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34: - version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== - dependencies: - mime-db "1.52.0" - -mime@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mimic-response@^1.0.0, mimic-response@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" - integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== - -min-indent@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== - -mini-create-react-context@^0.4.0: - version "0.4.1" - resolved "https://registry.yarnpkg.com/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz#072171561bfdc922da08a60c2197a497cc2d1d5e" - integrity sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ== - dependencies: - "@babel/runtime" "^7.12.1" - tiny-warning "^1.0.3" - -mini-css-extract-plugin@^2.6.0: - version "2.6.1" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz#9a1251d15f2035c342d99a468ab9da7a0451b71e" - integrity sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg== - dependencies: - schema-utils "^4.0.0" - -minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== - -minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== - -minimatch@3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - dependencies: - brace-expansion "^1.1.7" - -minimatch@4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-4.2.1.tgz#40d9d511a46bdc4e563c22c3080cde9c0d8299b4" - integrity sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^5.0.1, minimatch@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" - integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== - dependencies: - brace-expansion "^2.0.1" - -minimist-options@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" - integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== - dependencies: - arrify "^1.0.1" - is-plain-obj "^1.1.0" - kind-of "^6.0.3" - -minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6: - version "1.2.6" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" - integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== - -minipass-collect@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" - integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== - dependencies: - minipass "^3.0.0" - -minipass-fetch@^1.3.0, minipass-fetch@^1.3.2: - version "1.4.1" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-1.4.1.tgz#d75e0091daac1b0ffd7e9d41629faff7d0c1f1b6" - integrity sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw== - dependencies: - minipass "^3.1.0" - minipass-sized "^1.0.3" - minizlib "^2.0.0" - optionalDependencies: - encoding "^0.1.12" - -minipass-flush@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== - dependencies: - minipass "^3.0.0" - -minipass-json-stream@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz#7edbb92588fbfc2ff1db2fc10397acb7b6b44aa7" - integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg== - dependencies: - jsonparse "^1.3.1" - minipass "^3.0.0" - -minipass-pipeline@^1.2.2, minipass-pipeline@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" - integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== - dependencies: - minipass "^3.0.0" - -minipass-sized@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" - integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== - dependencies: - minipass "^3.0.0" - -minipass@^2.6.0, minipass@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" - integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== - dependencies: - safe-buffer "^5.1.2" - yallist "^3.0.0" - -minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3: - version "3.3.4" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.4.tgz#ca99f95dd77c43c7a76bf51e6d200025eee0ffae" - integrity sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw== - dependencies: - yallist "^4.0.0" - -minizlib@^1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" - integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== - dependencies: - minipass "^2.9.0" - -minizlib@^2.0.0, minizlib@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== - dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - -mkdirp-classic@^0.5.2: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - -mkdirp-infer-owner@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz#55d3b368e7d89065c38f32fd38e638f0ab61d316" - integrity sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw== - dependencies: - chownr "^2.0.0" - infer-owner "^1.0.4" - mkdirp "^1.0.3" - -mkdirp@1.0.4, mkdirp@^1.0.3, mkdirp@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -mkdirp@^0.5.1, mkdirp@^0.5.5, mkdirp@~0.5.1: - version "0.5.6" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" - integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== - dependencies: - minimist "^1.2.6" - -mocha@^9.0.3, mocha@^9.1.1, mocha@^9.2.2: - version "9.2.2" - resolved "https://registry.yarnpkg.com/mocha/-/mocha-9.2.2.tgz#d70db46bdb93ca57402c809333e5a84977a88fb9" - integrity sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g== - dependencies: - "@ungap/promise-all-settled" "1.1.2" - ansi-colors "4.1.1" - browser-stdout "1.3.1" - chokidar "3.5.3" - debug "4.3.3" - diff "5.0.0" - escape-string-regexp "4.0.0" - find-up "5.0.0" - glob "7.2.0" - growl "1.10.5" - he "1.2.0" - js-yaml "4.1.0" - log-symbols "4.1.0" - minimatch "4.2.1" - ms "2.1.3" - nanoid "3.3.1" - serialize-javascript "6.0.0" - strip-json-comments "3.1.1" - supports-color "8.1.1" - which "2.0.2" - workerpool "6.2.0" - yargs "16.2.0" - yargs-parser "20.2.4" - yargs-unparser "2.0.0" - -modify-values@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" - integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== - -mrmime@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-1.0.1.tgz#5f90c825fad4bdd41dc914eff5d1a8cfdaf24f27" - integrity sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw== - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@2.1.3, ms@^2.0.0, ms@^2.1.1, ms@^2.1.2: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -multicast-dns@^7.2.5: - version "7.2.5" - resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced" - integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== - dependencies: - dns-packet "^5.2.2" - thunky "^1.0.2" - -multimap@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/multimap/-/multimap-1.1.0.tgz#5263febc085a1791c33b59bb3afc6a76a2a10ca8" - integrity sha512-0ZIR9PasPxGXmRsEF8jsDzndzHDj7tIav+JUmvIFB/WHswliFnquxECT/De7GR4yg99ky/NlRKJT82G1y271bw== - -multimatch@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-5.0.0.tgz#932b800963cea7a31a033328fa1e0c3a1874dbe6" - integrity sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA== - dependencies: - "@types/minimatch" "^3.0.3" - array-differ "^3.0.0" - array-union "^2.1.0" - arrify "^2.0.1" - minimatch "^3.0.4" - -mute-stream@0.0.8, mute-stream@~0.0.4: - version "0.0.8" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" - integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== - -"my-loaders@file:website/plugins/my-loaders": - version "0.0.0" - -mz@^2.7.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" - integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== - dependencies: - any-promise "^1.0.0" - object-assign "^4.0.1" - thenify-all "^1.0.0" - -nanoid@3.3.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" - integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw== - -nanoid@^3.3.4: - version "3.3.4" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" - integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== - -natural-orderby@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/natural-orderby/-/natural-orderby-2.0.3.tgz#8623bc518ba162f8ff1cdb8941d74deb0fdcc016" - integrity sha512-p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q== - -negotiator@0.6.3, negotiator@^0.6.2: - version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" - integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== - -neo-async@^2.6.0, neo-async@^2.6.2: - version "2.6.2" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" - integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== - -nice-try@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== - -no-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" - integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== - dependencies: - lower-case "^2.0.2" - tslib "^2.0.3" - -node-addon-api@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32" - integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA== - -node-domexception@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" - integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== - -node-emoji@^1.10.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.11.0.tgz#69a0150e6946e2f115e9d7ea4df7971e2628301c" - integrity sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A== - dependencies: - lodash "^4.17.21" - -node-fetch@2, node-fetch@2.6.7, node-fetch@^2.2.0, node-fetch@^2.6, node-fetch@^2.6.1, node-fetch@^2.6.6, node-fetch@^2.6.7: - version "2.6.7" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" - integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== - dependencies: - whatwg-url "^5.0.0" - -node-fetch@^3.2.6: - version "3.2.9" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.2.9.tgz#3f6070bf854de20f21b9fe8479f823462e615d7d" - integrity sha512-/2lI+DBecVvVm9tDhjziTVjo2wmTsSxSk58saUYP0P/fRJ3xxtfMDY24+CKTkfm0Dlhyn3CSXNL0SoRiCZ8Rzg== - dependencies: - data-uri-to-buffer "^4.0.0" - fetch-blob "^3.1.4" - formdata-polyfill "^4.0.10" - -node-forge@^1, node-forge@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" - integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== - -node-gyp-build@^4.2.0, node-gyp-build@^4.3.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" - integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== - -node-gyp@^5.0.2: - version "5.1.1" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-5.1.1.tgz#eb915f7b631c937d282e33aed44cb7a025f62a3e" - integrity sha512-WH0WKGi+a4i4DUt2mHnvocex/xPLp9pYt5R6M2JdFB7pJ7Z34hveZ4nDTGTiLXCkitA9T8HFZjhinBCiVHYcWw== - dependencies: - env-paths "^2.2.0" - glob "^7.1.4" - graceful-fs "^4.2.2" - mkdirp "^0.5.1" - nopt "^4.0.1" - npmlog "^4.1.2" - request "^2.88.0" - rimraf "^2.6.3" - semver "^5.7.1" - tar "^4.4.12" - which "^1.3.1" - -node-gyp@^7.1.0, node-gyp@^7.1.2: - version "7.1.2" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-7.1.2.tgz#21a810aebb187120251c3bcec979af1587b188ae" - integrity sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ== - dependencies: - env-paths "^2.2.0" - glob "^7.1.4" - graceful-fs "^4.2.3" - nopt "^5.0.0" - npmlog "^4.1.2" - request "^2.88.2" - rimraf "^3.0.2" - semver "^7.3.2" - tar "^6.0.2" - which "^2.0.2" - -node-pagerduty@^1.3.6: - version "1.3.6" - resolved "https://registry.yarnpkg.com/node-pagerduty/-/node-pagerduty-1.3.6.tgz#596c0c40b1a0f73a87666a937b8ede89a2d06710" - integrity sha512-tcbxlmiK1FfaqPGYWIeBdePRD/5TLHe11SP8aei9QsWDuTCUN20HubRRO6YVlm7olUV8TUisFLXs3KtgMn8NOQ== - dependencies: - deepmerge "4.2.2" - g "^2.0.1" - npm "^7.0.6" - query-string "6.13.6" - request "2.88.0" - request-promise-native "1.0.5" - -node-releases@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" - integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== - -nopt@^4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" - integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== - dependencies: - abbrev "1" - osenv "^0.1.4" - -nopt@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" - integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== - dependencies: - abbrev "1" - -normalize-package-data@^2.0.0, normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-package-data@^3.0.0, normalize-package-data@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" - integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== - dependencies: - hosted-git-info "^4.0.1" - is-core-module "^2.5.0" - semver "^7.3.4" - validate-npm-package-license "^3.0.1" - -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -normalize-range@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" - integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== - -normalize-url@^4.1.0: - version "4.5.1" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" - integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== - -normalize-url@^6.0.1, normalize-url@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" - integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== - -npm-audit-report@^2.1.5: - version "2.1.5" - resolved "https://registry.yarnpkg.com/npm-audit-report/-/npm-audit-report-2.1.5.tgz#a5b8850abe2e8452fce976c8960dd432981737b5" - integrity sha512-YB8qOoEmBhUH1UJgh1xFAv7Jg1d+xoNhsDYiFQlEFThEBui0W1vIz2ZK6FVg4WZjwEdl7uBQlm1jy3MUfyHeEw== - dependencies: - chalk "^4.0.0" - -npm-bundled@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz#944c78789bd739035b70baa2ca5cc32b8d860bc1" - integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== - dependencies: - npm-normalize-package-bin "^1.0.1" - -npm-install-checks@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-4.0.0.tgz#a37facc763a2fde0497ef2c6d0ac7c3fbe00d7b4" - integrity sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w== - dependencies: - semver "^7.1.1" - -npm-lifecycle@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/npm-lifecycle/-/npm-lifecycle-3.1.5.tgz#9882d3642b8c82c815782a12e6a1bfeed0026309" - integrity sha512-lDLVkjfZmvmfvpvBzA4vzee9cn+Me4orq0QF8glbswJVEbIcSNWib7qGOffolysc3teCqbbPZZkzbr3GQZTL1g== - dependencies: - byline "^5.0.0" - graceful-fs "^4.1.15" - node-gyp "^5.0.2" - resolve-from "^4.0.0" - slide "^1.1.6" - uid-number "0.0.6" - umask "^1.1.0" - which "^1.3.1" - -npm-normalize-package-bin@^1.0.0, npm-normalize-package-bin@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" - integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== - -npm-package-arg@^8.0.0, npm-package-arg@^8.0.1, npm-package-arg@^8.1.0, npm-package-arg@^8.1.1, npm-package-arg@^8.1.2, npm-package-arg@^8.1.5: - version "8.1.5" - resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.5.tgz#3369b2d5fe8fdc674baa7f1786514ddc15466e44" - integrity sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q== - dependencies: - hosted-git-info "^4.0.1" - semver "^7.3.4" - validate-npm-package-name "^3.0.0" - -npm-packlist@^2.1.4: - version "2.2.2" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-2.2.2.tgz#076b97293fa620f632833186a7a8f65aaa6148c8" - integrity sha512-Jt01acDvJRhJGthnUJVF/w6gumWOZxO7IkpY/lsX9//zqQgnF7OJaxgQXcerd4uQOLu7W5bkb4mChL9mdfm+Zg== - dependencies: - glob "^7.1.6" - ignore-walk "^3.0.3" - npm-bundled "^1.1.1" - npm-normalize-package-bin "^1.0.1" - -npm-pick-manifest@^6.0.0, npm-pick-manifest@^6.1.0, npm-pick-manifest@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz#7b5484ca2c908565f43b7f27644f36bb816f5148" - integrity sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA== - dependencies: - npm-install-checks "^4.0.0" - npm-normalize-package-bin "^1.0.1" - npm-package-arg "^8.1.2" - semver "^7.3.4" - -npm-profile@^5.0.3: - version "5.0.4" - resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-5.0.4.tgz#73e5bd1d808edc2c382d7139049cc367ac43161b" - integrity sha512-OKtU7yoAEBOnc8zJ+/uo5E4ugPp09sopo+6y1njPp+W99P8DvQon3BJYmpvyK2Bf1+3YV5LN1bvgXRoZ1LUJBA== - dependencies: - npm-registry-fetch "^11.0.0" - -npm-registry-fetch@^11.0.0: - version "11.0.0" - resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz#68c1bb810c46542760d62a6a965f85a702d43a76" - integrity sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA== - dependencies: - make-fetch-happen "^9.0.1" - minipass "^3.1.3" - minipass-fetch "^1.3.0" - minipass-json-stream "^1.0.1" - minizlib "^2.0.0" - npm-package-arg "^8.0.0" - -npm-registry-fetch@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-9.0.0.tgz#86f3feb4ce00313bc0b8f1f8f69daae6face1661" - integrity sha512-PuFYYtnQ8IyVl6ib9d3PepeehcUeHN9IO5N/iCRhyg9tStQcqGQBRVHmfmMWPDERU3KwZoHFvbJ4FPXPspvzbA== - dependencies: - "@npmcli/ci-detect" "^1.0.0" - lru-cache "^6.0.0" - make-fetch-happen "^8.0.9" - minipass "^3.1.3" - minipass-fetch "^1.3.0" - minipass-json-stream "^1.0.1" - minizlib "^2.0.0" - npm-package-arg "^8.0.0" - -npm-run-all@^4.1.5: - version "4.1.5" - resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" - integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== - dependencies: - ansi-styles "^3.2.1" - chalk "^2.4.1" - cross-spawn "^6.0.5" - memorystream "^0.3.1" - minimatch "^3.0.4" - pidtree "^0.3.0" - read-pkg "^3.0.0" - shell-quote "^1.6.1" - string.prototype.padend "^3.0.0" - -npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -npm-to-yarn@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/npm-to-yarn/-/npm-to-yarn-1.0.1.tgz#6cdb95114c4ff0be50a7a2381d4d16131a5f52df" - integrity sha512-bp8T8oNMfLW+N/fE0itFfSu7RReytwhqNd9skbkfHfzGYC+5CCdzS2HnaXz6JiG4AlK2eA0qlT6NJN1SoFvcWQ== - -npm-user-validate@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/npm-user-validate/-/npm-user-validate-1.0.1.tgz#31428fc5475fe8416023f178c0ab47935ad8c561" - integrity sha512-uQwcd/tY+h1jnEaze6cdX/LrhWhoBxfSknxentoqmIuStxUExxjWd3ULMLFPiFUrZKbOVMowH6Jq2FRWfmhcEw== - -npm@^7.0.6: - version "7.24.2" - resolved "https://registry.yarnpkg.com/npm/-/npm-7.24.2.tgz#861117af8241bea592289f22407230e5300e59ca" - integrity sha512-120p116CE8VMMZ+hk8IAb1inCPk4Dj3VZw29/n2g6UI77urJKVYb7FZUDW8hY+EBnfsjI/2yrobBgFyzo7YpVQ== - dependencies: - "@isaacs/string-locale-compare" "^1.1.0" - "@npmcli/arborist" "^2.9.0" - "@npmcli/ci-detect" "^1.2.0" - "@npmcli/config" "^2.3.0" - "@npmcli/map-workspaces" "^1.0.4" - "@npmcli/package-json" "^1.0.1" - "@npmcli/run-script" "^1.8.6" - abbrev "~1.1.1" - ansicolors "~0.3.2" - ansistyles "~0.1.3" - archy "~1.0.0" - cacache "^15.3.0" - chalk "^4.1.2" - chownr "^2.0.0" - cli-columns "^3.1.2" - cli-table3 "^0.6.0" - columnify "~1.5.4" - fastest-levenshtein "^1.0.12" - glob "^7.2.0" - graceful-fs "^4.2.8" - hosted-git-info "^4.0.2" - ini "^2.0.0" - init-package-json "^2.0.5" - is-cidr "^4.0.2" - json-parse-even-better-errors "^2.3.1" - libnpmaccess "^4.0.2" - libnpmdiff "^2.0.4" - libnpmexec "^2.0.1" - libnpmfund "^1.1.0" - libnpmhook "^6.0.2" - libnpmorg "^2.0.2" - libnpmpack "^2.0.1" - libnpmpublish "^4.0.1" - libnpmsearch "^3.1.1" - libnpmteam "^2.0.3" - libnpmversion "^1.2.1" - make-fetch-happen "^9.1.0" - minipass "^3.1.3" - minipass-pipeline "^1.2.4" - mkdirp "^1.0.4" - mkdirp-infer-owner "^2.0.0" - ms "^2.1.2" - node-gyp "^7.1.2" - nopt "^5.0.0" - npm-audit-report "^2.1.5" - npm-install-checks "^4.0.0" - npm-package-arg "^8.1.5" - npm-pick-manifest "^6.1.1" - npm-profile "^5.0.3" - npm-registry-fetch "^11.0.0" - npm-user-validate "^1.0.1" - npmlog "^5.0.1" - opener "^1.5.2" - pacote "^11.3.5" - parse-conflict-json "^1.1.1" - qrcode-terminal "^0.12.0" - read "~1.0.7" - read-package-json "^4.1.1" - read-package-json-fast "^2.0.3" - readdir-scoped-modules "^1.1.0" - rimraf "^3.0.2" - semver "^7.3.5" - ssri "^8.0.1" - tar "^6.1.11" - text-table "~0.2.0" - tiny-relative-date "^1.3.0" - treeverse "^1.0.4" - validate-npm-package-name "~3.0.0" - which "^2.0.2" - write-file-atomic "^3.0.3" - -npmlog@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" - integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== - dependencies: - are-we-there-yet "~1.1.2" - console-control-strings "~1.1.0" - gauge "~2.7.3" - set-blocking "~2.0.0" - -npmlog@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" - integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== - dependencies: - are-we-there-yet "^2.0.0" - console-control-strings "^1.1.0" - gauge "^3.0.0" - set-blocking "^2.0.0" - -nprogress@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/nprogress/-/nprogress-0.2.0.tgz#cb8f34c53213d895723fcbab907e9422adbcafb1" - integrity sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA== - -nth-check@^1.0.2, nth-check@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" - integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== - dependencies: - boolbase "~1.0.0" - -nth-check@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" - integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== - dependencies: - boolbase "^1.0.0" - -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== - -oauth-sign@~0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" - integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== - -object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== - -object-hash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" - integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== - -object-inspect@^1.12.0, object-inspect@^1.9.0: - version "1.12.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" - integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== - -object-is@^1.0.1: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" - integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - -object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object-treeify@^1.1.33: - version "1.1.33" - resolved "https://registry.yarnpkg.com/object-treeify/-/object-treeify-1.1.33.tgz#f06fece986830a3cba78ddd32d4c11d1f76cdf40" - integrity sha512-EFVjAYfzWqWsBMRHPMAXLCDIJnpMhdWAqR7xG6M6a2cs6PMFpl/+Z20w9zDW4vkxOFfddegBKq9Rehd0bxWE7A== - -object.assign@^4.1.0, object.assign@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" - integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== - dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - has-symbols "^1.0.1" - object-keys "^1.1.1" - -object.entries@^1.1.2: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" - integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - -object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0: - version "2.1.4" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz#7965e6437a57278b587383831a9b829455a4bc37" - integrity sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ== - dependencies: - array.prototype.reduce "^1.0.4" - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.1" - -object.values@^1.1.0, object.values@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" - integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - -obuf@^1.0.0, obuf@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" - integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== - -on-finished@2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" - integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== - dependencies: - ee-first "1.1.1" - -on-headers@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== - dependencies: - wrappy "1" - -one-time@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/one-time/-/one-time-1.0.0.tgz#e06bc174aed214ed58edede573b433bbf827cb45" - integrity sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g== - dependencies: - fn.name "1.x.x" - -onetime@^5.1.0, onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -open@^8.0.9, open@^8.4.0: - version "8.4.0" - resolved "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8" - integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== - dependencies: - define-lazy-prop "^2.0.0" - is-docker "^2.1.1" - is-wsl "^2.2.0" - -opener@^1.5.2: - version "1.5.2" - resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" - integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== - -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== - 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.3" - -ora@^5.4.1: - version "5.4.1" - resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" - integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== - dependencies: - bl "^4.1.0" - chalk "^4.1.0" - cli-cursor "^3.1.0" - cli-spinners "^2.5.0" - is-interactive "^1.0.0" - is-unicode-supported "^0.1.0" - log-symbols "^4.1.0" - strip-ansi "^6.0.0" - wcwidth "^1.0.1" - -os-homedir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - integrity sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== - -os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== - -osenv@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" - integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.0" - -p-cancelable@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" - integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== - -p-limit@^1.1.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" - integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== - dependencies: - p-try "^1.0.0" - -p-limit@^2.0.0, p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-limit@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-locate@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" - integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== - dependencies: - p-limit "^1.1.0" - -p-locate@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== - dependencies: - p-limit "^2.0.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-locate@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" - integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== - dependencies: - p-limit "^3.0.2" - -p-map-series@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-2.1.0.tgz#7560d4c452d9da0c07e692fdbfe6e2c81a2a91f2" - integrity sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q== - -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - -p-pipe@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-pipe/-/p-pipe-3.1.0.tgz#48b57c922aa2e1af6a6404cb7c6bf0eb9cc8e60e" - integrity sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw== - -p-queue@^6.6.2: - version "6.6.2" - resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426" - integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== - dependencies: - eventemitter3 "^4.0.4" - p-timeout "^3.2.0" - -p-reduce@^2.0.0, p-reduce@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-2.1.0.tgz#09408da49507c6c274faa31f28df334bc712b64a" - integrity sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw== - -p-retry@^4.5.0: - version "4.6.2" - resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16" - integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== - dependencies: - "@types/retry" "0.12.0" - retry "^0.13.1" - -p-timeout@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" - integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== - dependencies: - p-finally "^1.0.0" - -p-try@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" - integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -p-waterfall@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/p-waterfall/-/p-waterfall-2.1.1.tgz#63153a774f472ccdc4eb281cdb2967fcf158b2ee" - integrity sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw== - dependencies: - p-reduce "^2.0.0" - -package-json@^6.3.0: - version "6.5.0" - resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" - integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== - dependencies: - got "^9.6.0" - registry-auth-token "^4.0.0" - registry-url "^5.0.0" - semver "^6.2.0" - -pacote@^11.1.11, pacote@^11.2.6, pacote@^11.3.0, pacote@^11.3.1, pacote@^11.3.5: - version "11.3.5" - resolved "https://registry.yarnpkg.com/pacote/-/pacote-11.3.5.tgz#73cf1fc3772b533f575e39efa96c50be8c3dc9d2" - integrity sha512-fT375Yczn4zi+6Hkk2TBe1x1sP8FgFsEIZ2/iWaXY2r/NkhDJfxbcn5paz1+RTFCyNf+dPnaoBDJoAxXSU8Bkg== - dependencies: - "@npmcli/git" "^2.1.0" - "@npmcli/installed-package-contents" "^1.0.6" - "@npmcli/promise-spawn" "^1.2.0" - "@npmcli/run-script" "^1.8.2" - cacache "^15.0.5" - chownr "^2.0.0" - fs-minipass "^2.1.0" - infer-owner "^1.0.4" - minipass "^3.1.3" - mkdirp "^1.0.3" - npm-package-arg "^8.0.1" - npm-packlist "^2.1.4" - npm-pick-manifest "^6.0.0" - npm-registry-fetch "^11.0.0" - promise-retry "^2.0.1" - read-package-json-fast "^2.0.1" - rimraf "^3.0.2" - ssri "^8.0.1" - tar "^6.1.0" - -pako@^2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d" - integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg== - -param-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" - integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== - dependencies: - dot-case "^3.0.4" - tslib "^2.0.3" - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parent-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-2.0.0.tgz#fa71f88ff1a50c27e15d8ff74e0e3a9523bf8708" - integrity sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg== - dependencies: - callsites "^3.1.0" - -parse-conflict-json@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/parse-conflict-json/-/parse-conflict-json-1.1.1.tgz#54ec175bde0f2d70abf6be79e0e042290b86701b" - integrity sha512-4gySviBiW5TRl7XHvp1agcS7SOe0KZOjC//71dzZVWJrY9hCrgtvl5v3SyIxCZ4fZF47TxD9nfzmxcx76xmbUw== - dependencies: - json-parse-even-better-errors "^2.3.0" - just-diff "^3.0.1" - just-diff-apply "^3.0.0" - -parse-entities@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8" - 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" - -parse-json@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" - integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== - dependencies: - error-ex "^1.3.1" - json-parse-better-errors "^1.0.1" - -parse-json@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - 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" - -parse-numeric-range@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz#7c63b61190d61e4d53a1197f0c83c47bb670ffa3" - integrity sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ== - -parse-path@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-4.0.4.tgz#4bf424e6b743fb080831f03b536af9fc43f0ffea" - integrity sha512-Z2lWUis7jlmXC1jeOG9giRO2+FsuyNipeQ43HAjqAZjwSe3SEf+q/84FGPHoso3kyntbxa4c4i77t3m6fGf8cw== - dependencies: - is-ssh "^1.3.0" - protocols "^1.4.0" - qs "^6.9.4" - query-string "^6.13.8" - -parse-url@^6.0.0: - version "6.0.5" - resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-6.0.5.tgz#4acab8982cef1846a0f8675fa686cef24b2f6f9b" - integrity sha512-e35AeLTSIlkw/5GFq70IN7po8fmDUjpDPY1rIK+VubRfsUvBonjQ+PBZG+vWMACnQSmNlvl524IucoDmcioMxA== - dependencies: - is-ssh "^1.3.0" - normalize-url "^6.1.0" - parse-path "^4.0.0" - protocols "^1.4.0" - -parse5-htmlparser2-tree-adapter@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz#23c2cc233bcf09bb7beba8b8a69d46b08c62c2f1" - integrity sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g== - dependencies: - domhandler "^5.0.2" - parse5 "^7.0.0" - -parse5@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178" - integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== - -parse5@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" - integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== - -parse5@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.0.0.tgz#51f74a5257f5fcc536389e8c2d0b3802e1bfa91a" - integrity sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g== - dependencies: - entities "^4.3.0" - -parseurl@~1.3.2, parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== - -pascal-case@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" - integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - -password-prompt@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/password-prompt/-/password-prompt-1.1.2.tgz#85b2f93896c5bd9e9f2d6ff0627fa5af3dc00923" - integrity sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA== - dependencies: - ansi-escapes "^3.1.0" - cross-spawn "^6.0.5" - -path-browserify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" - integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== - -path-is-inside@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" - integrity sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w== - -path-key@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== - -path-to-regexp@2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.2.1.tgz#90b617025a16381a879bc82a38d4e8bdeb2bcf45" - integrity sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ== - -path-to-regexp@^1.7.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a" - integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== - dependencies: - isarray "0.0.1" - -path-type@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" - integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== - dependencies: - pify "^3.0.0" - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pathval@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" - integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== - -pause-stream@0.0.11: - version "0.0.11" - resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" - integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== - dependencies: - through "~2.3" - -performance-now@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== - -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -pidtree@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" - integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== - -pify@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== - -pify@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" - integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== - -pify@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== - -pify@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f" - integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== - -pkg-dir@^4.1.0, pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -pkg-up@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" - integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== - dependencies: - find-up "^3.0.0" - -pluralize@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" - integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== - -postcss-calc@^8.2.3: - version "8.2.4" - resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5" - integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q== - dependencies: - postcss-selector-parser "^6.0.9" - postcss-value-parser "^4.2.0" - -postcss-colormin@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.0.tgz#3cee9e5ca62b2c27e84fce63affc0cfb5901956a" - integrity sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg== - dependencies: - browserslist "^4.16.6" - caniuse-api "^3.0.0" - colord "^2.9.1" - postcss-value-parser "^4.2.0" - -postcss-convert-values@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz#31586df4e184c2e8890e8b34a0b9355313f503ab" - integrity sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g== - dependencies: - browserslist "^4.20.3" - postcss-value-parser "^4.2.0" - -postcss-discard-comments@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696" - integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== - -postcss-discard-duplicates@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848" - integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== - -postcss-discard-empty@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c" - integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A== - -postcss-discard-overridden@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e" - integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== - -postcss-discard-unused@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-5.1.0.tgz#8974e9b143d887677304e558c1166d3762501142" - integrity sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw== - dependencies: - postcss-selector-parser "^6.0.5" - -postcss-loader@^6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-6.2.1.tgz#0895f7346b1702103d30fdc66e4d494a93c008ef" - integrity sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q== - dependencies: - cosmiconfig "^7.0.0" - klona "^2.0.5" - semver "^7.3.5" - -postcss-merge-idents@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-5.1.1.tgz#7753817c2e0b75d0853b56f78a89771e15ca04a1" - integrity sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw== - dependencies: - cssnano-utils "^3.1.0" - postcss-value-parser "^4.2.0" - -postcss-merge-longhand@^5.1.6: - version "5.1.6" - resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.6.tgz#f378a8a7e55766b7b644f48e5d8c789ed7ed51ce" - integrity sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw== - dependencies: - postcss-value-parser "^4.2.0" - stylehacks "^5.1.0" - -postcss-merge-rules@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz#7049a14d4211045412116d79b751def4484473a5" - integrity sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ== - dependencies: - browserslist "^4.16.6" - caniuse-api "^3.0.0" - cssnano-utils "^3.1.0" - postcss-selector-parser "^6.0.5" - -postcss-minify-font-values@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b" - integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-minify-gradients@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c" - integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw== - dependencies: - colord "^2.9.1" - cssnano-utils "^3.1.0" - postcss-value-parser "^4.2.0" - -postcss-minify-params@^5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.3.tgz#ac41a6465be2db735099bbd1798d85079a6dc1f9" - integrity sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg== - dependencies: - browserslist "^4.16.6" - cssnano-utils "^3.1.0" - postcss-value-parser "^4.2.0" - -postcss-minify-selectors@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6" - integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== - dependencies: - postcss-selector-parser "^6.0.5" - -postcss-modules-extract-imports@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" - integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== - -postcss-modules-local-by-default@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c" - integrity sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== - dependencies: - icss-utils "^5.0.0" - postcss-selector-parser "^6.0.2" - postcss-value-parser "^4.1.0" - -postcss-modules-scope@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" - integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== - dependencies: - postcss-selector-parser "^6.0.4" - -postcss-modules-values@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" - integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== - dependencies: - icss-utils "^5.0.0" - -postcss-normalize-charset@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed" - integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg== - -postcss-normalize-display-values@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8" - integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-normalize-positions@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92" - integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-normalize-repeat-style@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2" - integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-normalize-string@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228" - integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-normalize-timing-functions@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb" - integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-normalize-unicode@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz#3d23aede35e160089a285e27bf715de11dc9db75" - integrity sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ== - dependencies: - browserslist "^4.16.6" - postcss-value-parser "^4.2.0" - -postcss-normalize-url@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc" - integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew== - dependencies: - normalize-url "^6.0.1" - postcss-value-parser "^4.2.0" - -postcss-normalize-whitespace@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa" - integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-ordered-values@^5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz#b6fd2bd10f937b23d86bc829c69e7732ce76ea38" - integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ== - dependencies: - cssnano-utils "^3.1.0" - postcss-value-parser "^4.2.0" - -postcss-reduce-idents@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-5.2.0.tgz#c89c11336c432ac4b28792f24778859a67dfba95" - integrity sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-reduce-initial@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz#fc31659ea6e85c492fb2a7b545370c215822c5d6" - integrity sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw== - dependencies: - browserslist "^4.16.6" - caniuse-api "^3.0.0" - -postcss-reduce-transforms@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9" - integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ== - dependencies: - postcss-value-parser "^4.2.0" - -postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: - version "6.0.10" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d" - integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w== - dependencies: - cssesc "^3.0.0" - util-deprecate "^1.0.2" - -postcss-sort-media-queries@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/postcss-sort-media-queries/-/postcss-sort-media-queries-4.2.1.tgz#a99bae69ef1098ee3b64a5fa94d258ec240d0355" - integrity sha512-9VYekQalFZ3sdgcTjXMa0dDjsfBVHXlraYJEMiOJ/2iMmI2JGCMavP16z3kWOaRu8NSaJCTgVpB/IVpH5yT9YQ== - dependencies: - sort-css-media-queries "2.0.4" - -postcss-svgo@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d" - integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA== - dependencies: - postcss-value-parser "^4.2.0" - svgo "^2.7.0" - -postcss-unique-selectors@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6" - integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA== - dependencies: - postcss-selector-parser "^6.0.5" - -postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" - integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== - -postcss-zindex@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-5.1.0.tgz#4a5c7e5ff1050bd4c01d95b1847dfdcc58a496ff" - integrity sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A== - -postcss@^8.3.11, postcss@^8.3.5, postcss@^8.4.12, postcss@^8.4.7: - version "8.4.14" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" - integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== - dependencies: - nanoid "^3.3.4" - picocolors "^1.0.0" - source-map-js "^1.0.2" - -prelude-ls@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== - -prepend-http@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" - integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== - -prettier-linter-helpers@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" - integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== - dependencies: - fast-diff "^1.1.2" - -prettier-plugin-organize-imports@^2.3.4: - version "2.3.4" - resolved "https://registry.yarnpkg.com/prettier-plugin-organize-imports/-/prettier-plugin-organize-imports-2.3.4.tgz#65473861ae5ab7960439fff270a2258558fbe9ba" - integrity sha512-R8o23sf5iVL/U71h9SFUdhdOEPsi3nm42FD/oDYIZ2PQa4TNWWuWecxln6jlIQzpZTDMUeO1NicJP6lLn2TtRw== - -prettier@^2.4.1, prettier@^2.5.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" - integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== - -pretty-error@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" - integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== - dependencies: - lodash "^4.17.20" - renderkid "^3.0.0" - -pretty-time@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/pretty-time/-/pretty-time-1.1.0.tgz#ffb7429afabb8535c346a34e41873adf3d74dd0e" - integrity sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA== - -prism-react-renderer@^1.2.1, prism-react-renderer@^1.3.1: - version "1.3.5" - resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-1.3.5.tgz#786bb69aa6f73c32ba1ee813fbe17a0115435085" - integrity sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg== - -prismjs@^1.27.0: - version "1.28.0" - resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.28.0.tgz#0d8f561fa0f7cf6ebca901747828b149147044b6" - integrity sha512-8aaXdYvl1F7iC7Xm1spqSaY/OJBpYW3v+KJ+F17iYxvdc8sfjW194COK5wVhMZX45tGteiBQgdvD/nhxcRwylw== - -proc-log@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-1.0.0.tgz#0d927307401f69ed79341e83a0b2c9a13395eb77" - integrity sha512-aCk8AO51s+4JyuYGg3Q/a6gnrlDO09NpVWePtjp7xwphcoQ04x5WAfCyugcsbLooWcMJ87CLkD4+604IckEdhg== - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -progress@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" - integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== - -promise-all-reject-late@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz#f8ebf13483e5ca91ad809ccc2fcf25f26f8643c2" - integrity sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw== - -promise-call-limit@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-call-limit/-/promise-call-limit-1.0.1.tgz#4bdee03aeb85674385ca934da7114e9bcd3c6e24" - integrity sha512-3+hgaa19jzCGLuSCbieeRsu5C2joKfYn8pY6JAuXFRVfF4IO+L7UPpFWNTeWT9pM7uhskvbPPd/oEOktCn317Q== - -promise-inflight@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== - -promise-retry@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" - integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== - dependencies: - err-code "^2.0.2" - retry "^0.12.0" - -promise@^7.1.1: - version "7.3.1" - resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" - integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== - dependencies: - asap "~2.0.3" - -prompts@^2.4.1, prompts@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" - integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" - -promzard@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/promzard/-/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee" - integrity sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw== - dependencies: - read "1" - -prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: - version "15.8.1" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" - integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== - dependencies: - loose-envify "^1.4.0" - object-assign "^4.1.1" - react-is "^16.13.1" - -property-information@^5.0.0, property-information@^5.3.0: - version "5.6.0" - resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69" - integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA== - dependencies: - xtend "^4.0.0" - -proto-list@~1.2.1: - version "1.2.4" - resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" - integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== - -proto3-json-serializer@^0.1.8: - version "0.1.9" - resolved "https://registry.yarnpkg.com/proto3-json-serializer/-/proto3-json-serializer-0.1.9.tgz#705ddb41b009dd3e6fcd8123edd72926abf65a34" - integrity sha512-A60IisqvnuI45qNRygJjrnNjX2TMdQGMY+57tR3nul3ZgO2zXkR9OGR8AXxJhkqx84g0FTnrfi3D5fWMSdANdQ== - dependencies: - protobufjs "^6.11.2" - -protobufjs@6.11.3, protobufjs@^6.11.2, protobufjs@^6.11.3: - version "6.11.3" - resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74" - integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg== - dependencies: - "@protobufjs/aspromise" "^1.1.2" - "@protobufjs/base64" "^1.1.2" - "@protobufjs/codegen" "^2.0.4" - "@protobufjs/eventemitter" "^1.1.0" - "@protobufjs/fetch" "^1.1.0" - "@protobufjs/float" "^1.0.2" - "@protobufjs/inquire" "^1.1.0" - "@protobufjs/path" "^1.1.2" - "@protobufjs/pool" "^1.1.0" - "@protobufjs/utf8" "^1.1.0" - "@types/long" "^4.0.1" - "@types/node" ">=13.7.0" - long "^4.0.0" - -protobufjs@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.0.0.tgz#8c678e1351fd926178fce5a4213913e8d990974f" - integrity sha512-ffNIEm+quOcYtQvHdW406v1NQmZSuqVklxsXk076BtuFnlYZfigLU+JOMrTD8TUOyqHYbRI/fSVNvgd25YeN3w== - dependencies: - "@protobufjs/aspromise" "^1.1.2" - "@protobufjs/base64" "^1.1.2" - "@protobufjs/codegen" "^2.0.4" - "@protobufjs/eventemitter" "^1.1.0" - "@protobufjs/fetch" "^1.1.0" - "@protobufjs/float" "^1.0.2" - "@protobufjs/inquire" "^1.1.0" - "@protobufjs/path" "^1.1.2" - "@protobufjs/pool" "^1.1.0" - "@protobufjs/utf8" "^1.1.0" - "@types/long" "^4.0.1" - "@types/node" ">=13.7.0" - long "^5.0.0" - -protocols@^1.4.0: - version "1.4.8" - resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.8.tgz#48eea2d8f58d9644a4a32caae5d5db290a075ce8" - integrity sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg== - -protocols@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.1.tgz#8f155da3fc0f32644e83c5782c8e8212ccf70a86" - integrity sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q== - -proxy-addr@~2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" - integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== - dependencies: - forwarded "0.2.0" - ipaddr.js "1.9.1" - -ps-tree@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" - integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== - dependencies: - event-stream "=3.3.4" - -psl@^1.1.24, psl@^1.1.28, psl@^1.1.33: - version "1.9.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" - integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -punycode@^1.3.2, punycode@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== - -punycode@^2.1.0, punycode@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== - -pupa@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62" - integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== - dependencies: - escape-goat "^2.0.0" - -pure-color@^1.2.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/pure-color/-/pure-color-1.3.0.tgz#1fe064fb0ac851f0de61320a8bf796836422f33e" - integrity sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA== - -q@^1.1.2, q@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" - integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== - -qrcode-terminal@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz#bb5b699ef7f9f0505092a3748be4464fe71b5819" - integrity sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ== - -qs@6.10.3: - version "6.10.3" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.3.tgz#d6cde1b2ffca87b5aa57889816c5f81535e22e8e" - integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ== - dependencies: - side-channel "^1.0.4" - -qs@^6.9.4: - version "6.11.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" - integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== - dependencies: - side-channel "^1.0.4" - -qs@~6.5.2: - version "6.5.3" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" - integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== - -query-string@6.13.6: - version "6.13.6" - resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.13.6.tgz#e5ac7c74f2a5da43fbca0b883b4f0bafba439966" - integrity sha512-/WWZ7d9na6s2wMEGdVCVgKWE9Rt7nYyNIf7k8xmHXcesPMlEzicWo3lbYwHyA4wBktI2KrXxxZeACLbE84hvSQ== - dependencies: - decode-uri-component "^0.2.0" - split-on-first "^1.0.0" - strict-uri-encode "^2.0.0" - -query-string@^6.13.8: - version "6.14.1" - resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.14.1.tgz#7ac2dca46da7f309449ba0f86b1fd28255b0c86a" - 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" - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -queue@6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/queue/-/queue-6.0.2.tgz#b91525283e2315c7553d2efa18d83e76432fed65" - integrity sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA== - dependencies: - inherits "~2.0.3" - -quick-lru@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" - integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== - -randombytes@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -range-parser@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" - integrity sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A== - -range-parser@^1.2.1, range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== - -raw-body@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" - 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" - -rc@1.2.8, rc@^1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - -react-base16-styling@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/react-base16-styling/-/react-base16-styling-0.6.0.tgz#ef2156d66cf4139695c8a167886cb69ea660792c" - integrity sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ== - dependencies: - base16 "^1.0.0" - lodash.curry "^4.0.1" - lodash.flow "^3.3.0" - pure-color "^1.2.0" - -react-dev-utils@^12.0.0: - version "12.0.1" - resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-12.0.1.tgz#ba92edb4a1f379bd46ccd6bcd4e7bc398df33e73" - 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" - -react-dom@^17.0.1: - version "17.0.2" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" - integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== - dependencies: - loose-envify "^1.1.0" - object-assign "^4.1.1" - scheduler "^0.20.2" - -react-error-overlay@^6.0.11: - version "6.0.11" - resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.11.tgz#92835de5841c5cf08ba00ddd2d677b6d17ff9adb" - integrity sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg== - -react-fast-compare@^3.0.1, react-fast-compare@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb" - integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== - -react-helmet-async@*, react-helmet-async@^1.2.3: - version "1.3.0" - resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.3.0.tgz#7bd5bf8c5c69ea9f02f6083f14ce33ef545c222e" - integrity sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg== - dependencies: - "@babel/runtime" "^7.12.5" - invariant "^2.2.4" - prop-types "^15.7.2" - react-fast-compare "^3.2.0" - shallowequal "^1.1.0" - -react-icons@^4.3.1: - version "4.4.0" - resolved "https://registry.yarnpkg.com/react-icons/-/react-icons-4.4.0.tgz#a13a8a20c254854e1ec9aecef28a95cdf24ef703" - integrity sha512-fSbvHeVYo/B5/L4VhB7sBA1i2tS8MkT0Hb9t2H1AVPkwGfVHLJCqyr2Py9dKMxsyM63Eng1GkdZfbWj+Fmv8Rg== - -react-is@^16.13.1, react-is@^16.6.0, react-is@^16.7.0: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" - integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== - -react-is@^18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" - integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== - -react-json-view@^1.21.3: - version "1.21.3" - resolved "https://registry.yarnpkg.com/react-json-view/-/react-json-view-1.21.3.tgz#f184209ee8f1bf374fb0c41b0813cff54549c475" - integrity sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw== - dependencies: - flux "^4.0.1" - react-base16-styling "^0.6.0" - react-lifecycles-compat "^3.0.4" - react-textarea-autosize "^8.3.2" - -react-lifecycles-compat@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" - integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== - -react-loadable-ssr-addon-v5-slorber@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/react-loadable-ssr-addon-v5-slorber/-/react-loadable-ssr-addon-v5-slorber-1.0.1.tgz#2cdc91e8a744ffdf9e3556caabeb6e4278689883" - integrity sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A== - dependencies: - "@babel/runtime" "^7.10.3" - -react-native-url-polyfill@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/react-native-url-polyfill/-/react-native-url-polyfill-1.3.0.tgz#c1763de0f2a8c22cc3e959b654c8790622b6ef6a" - integrity sha512-w9JfSkvpqqlix9UjDvJjm1EjSt652zVQ6iwCIj1cVVkwXf4jQhQgTNXY6EVTwuAmUjg6BC6k9RHCBynoLFo3IQ== - dependencies: - whatwg-url-without-unicode "8.0.0-3" - -react-player@^2.10.1: - version "2.10.1" - resolved "https://registry.yarnpkg.com/react-player/-/react-player-2.10.1.tgz#f2ee3ec31393d7042f727737545414b951ffc7e4" - integrity sha512-ova0jY1Y1lqLYxOehkzbNEju4rFXYVkr5rdGD71nsiG4UKPzRXQPTd3xjoDssheoMNjZ51mjT5ysTrdQ2tEvsg== - dependencies: - deepmerge "^4.0.0" - load-script "^1.0.0" - memoize-one "^5.1.1" - prop-types "^15.7.2" - react-fast-compare "^3.0.1" - -react-router-config@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/react-router-config/-/react-router-config-5.1.1.tgz#0f4263d1a80c6b2dc7b9c1902c9526478194a988" - integrity sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg== - dependencies: - "@babel/runtime" "^7.1.2" - -react-router-dom@^5.2.0: - version "5.3.3" - resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.3.3.tgz#8779fc28e6691d07afcaf98406d3812fe6f11199" - integrity sha512-Ov0tGPMBgqmbu5CDmN++tv2HQ9HlWDuWIIqn4b88gjlAN5IHI+4ZUZRcpz9Hl0azFIwihbLDYw1OiHGRo7ZIng== - dependencies: - "@babel/runtime" "^7.12.13" - history "^4.9.0" - loose-envify "^1.3.1" - prop-types "^15.6.2" - react-router "5.3.3" - tiny-invariant "^1.0.2" - tiny-warning "^1.0.0" - -react-router@5.3.3, react-router@^5.2.0: - version "5.3.3" - resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.3.3.tgz#8e3841f4089e728cf82a429d92cdcaa5e4a3a288" - integrity sha512-mzQGUvS3bM84TnbtMYR8ZjKnuPJ71IjSzR+DE6UkUqvN4czWIqEs17yLL8xkAycv4ev0AiN+IGrWu88vJs/p2w== - dependencies: - "@babel/runtime" "^7.12.13" - history "^4.9.0" - hoist-non-react-statics "^3.1.0" - loose-envify "^1.3.1" - mini-create-react-context "^0.4.0" - path-to-regexp "^1.7.0" - prop-types "^15.6.2" - react-is "^16.6.0" - tiny-invariant "^1.0.2" - tiny-warning "^1.0.0" - -react-spring@^9.3.2: - version "9.5.2" - resolved "https://registry.yarnpkg.com/react-spring/-/react-spring-9.5.2.tgz#b9929ad2806e56e6408b27189ec9cdf1dc003873" - integrity sha512-OGWNgKi2TSjpqsK67NCUspaCgEvWcG7HcpO9KAaDLFzFGNxWdGdN3YTXhhWUqCsLAx9I6LxPzmRuUPsMNqTgrw== - dependencies: - "@react-spring/core" "~9.5.2" - "@react-spring/konva" "~9.5.2" - "@react-spring/native" "~9.5.2" - "@react-spring/three" "~9.5.2" - "@react-spring/web" "~9.5.2" - "@react-spring/zdog" "~9.5.2" - -react-textarea-autosize@^8.3.2: - version "8.3.4" - resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.4.tgz#270a343de7ad350534141b02c9cb78903e553524" - integrity sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ== - dependencies: - "@babel/runtime" "^7.10.2" - use-composed-ref "^1.3.0" - use-latest "^1.2.1" - -react-transition-group@^4.4.2: - version "4.4.2" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.2.tgz#8b59a56f09ced7b55cbd53c36768b922890d5470" - integrity sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg== - dependencies: - "@babel/runtime" "^7.5.5" - dom-helpers "^5.0.1" - loose-envify "^1.4.0" - prop-types "^15.6.2" - -react@^17.0.1: - version "17.0.2" - resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" - integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== - dependencies: - loose-envify "^1.1.0" - object-assign "^4.1.1" - -read-cmd-shim@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-2.0.0.tgz#4a50a71d6f0965364938e9038476f7eede3928d9" - integrity sha512-HJpV9bQpkl6KwjxlJcBoqu9Ba0PQg8TqSNIOrulGt54a0uup0HtevreFHzYzkm0lpnleRdNBzXznKrgxglEHQw== - -read-package-json-fast@^2.0.1, read-package-json-fast@^2.0.2, read-package-json-fast@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz#323ca529630da82cb34b36cc0b996693c98c2b83" - integrity sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ== - dependencies: - json-parse-even-better-errors "^2.3.0" - npm-normalize-package-bin "^1.0.1" - -read-package-json@^2.0.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.1.2.tgz#6992b2b66c7177259feb8eaac73c3acd28b9222a" - integrity sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA== - dependencies: - glob "^7.1.1" - json-parse-even-better-errors "^2.3.0" - normalize-package-data "^2.0.0" - npm-normalize-package-bin "^1.0.0" - -read-package-json@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-3.0.1.tgz#c7108f0b9390257b08c21e3004d2404c806744b9" - integrity sha512-aLcPqxovhJTVJcsnROuuzQvv6oziQx4zd3JvG0vGCL5MjTONUc4uJ90zCBC6R7W7oUKBNoR/F8pkyfVwlbxqng== - dependencies: - glob "^7.1.1" - json-parse-even-better-errors "^2.3.0" - normalize-package-data "^3.0.0" - npm-normalize-package-bin "^1.0.0" - -read-package-json@^4.1.1: - version "4.1.2" - resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-4.1.2.tgz#b444d047de7c75d4a160cb056d00c0693c1df703" - integrity sha512-Dqer4pqzamDE2O4M55xp1qZMuLPqi4ldk2ya648FOMHRjwMzFhuxVrG04wd0c38IsvkVdr3vgHI6z+QTPdAjrQ== - dependencies: - glob "^7.1.1" - json-parse-even-better-errors "^2.3.0" - normalize-package-data "^3.0.0" - npm-normalize-package-bin "^1.0.0" - -read-package-tree@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/read-package-tree/-/read-package-tree-5.3.1.tgz#a32cb64c7f31eb8a6f31ef06f9cedf74068fe636" - integrity sha512-mLUDsD5JVtlZxjSlPPx1RETkNjjvQYuweKwNVt1Sn8kP5Jh44pvYuUHCp6xSVDZWbNxVxG5lyZJ921aJH61sTw== - dependencies: - read-package-json "^2.0.0" - readdir-scoped-modules "^1.0.0" - util-promisify "^2.1.0" - -read-pkg-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" - integrity sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw== - dependencies: - find-up "^2.0.0" - read-pkg "^3.0.0" - -read-pkg-up@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== - dependencies: - find-up "^4.1.0" - read-pkg "^5.2.0" - type-fest "^0.8.1" - -read-pkg@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" - integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== - dependencies: - load-json-file "^4.0.0" - normalize-package-data "^2.3.2" - path-type "^3.0.0" - -read-pkg@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - dependencies: - "@types/normalize-package-data" "^2.4.0" - normalize-package-data "^2.5.0" - parse-json "^5.0.0" - type-fest "^0.6.0" - -read@1, read@^1.0.7, read@~1.0.1, read@~1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" - integrity sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ== - dependencies: - mute-stream "~0.0.4" - -readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@~2.3.6: - version "2.3.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== - 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" - -readdir-scoped-modules@^1.0.0, readdir-scoped-modules@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309" - integrity sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw== - dependencies: - debuglog "^1.0.1" - dezalgo "^1.0.0" - graceful-fs "^4.1.2" - once "^1.3.0" - -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - -reading-time@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/reading-time/-/reading-time-1.5.0.tgz#d2a7f1b6057cb2e169beaf87113cc3411b5bc5bb" - integrity sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg== - -readline-sync@^1.4.10: - version "1.4.10" - resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.10.tgz#41df7fbb4b6312d673011594145705bf56d8873b" - integrity sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw== - -rechoir@^0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== - dependencies: - resolve "^1.1.6" - -recursive-readdir@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f" - integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg== - dependencies: - minimatch "3.0.4" - -redent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" - integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== - dependencies: - indent-string "^4.0.0" - strip-indent "^3.0.0" - -redeyed@~2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-2.1.1.tgz#8984b5815d99cb220469c99eeeffe38913e6cc0b" - integrity sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ== - dependencies: - esprima "~4.0.0" - -regenerate-unicode-properties@^10.0.1: - version "10.0.1" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz#7f442732aa7934a3740c779bb9b3340dccc1fb56" - integrity sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw== - dependencies: - regenerate "^1.4.2" - -regenerate@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" - integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== - -regenerator-runtime@^0.13.4: - version "0.13.9" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" - integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== - -regenerator-transform@^0.15.0: - version "0.15.0" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.0.tgz#cbd9ead5d77fae1a48d957cf889ad0586adb6537" - integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg== - dependencies: - "@babel/runtime" "^7.8.4" - -regexp-tree@^0.1.23, regexp-tree@~0.1.1: - version "0.1.24" - resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.24.tgz#3d6fa238450a4d66e5bc9c4c14bb720e2196829d" - integrity sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw== - -regexp.prototype.flags@^1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" - integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - functions-have-names "^1.2.2" - -regexpp@^3.1.0, regexpp@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" - integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== - -regexpu-core@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.1.0.tgz#2f8504c3fd0ebe11215783a41541e21c79942c6d" - integrity sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA== - dependencies: - regenerate "^1.4.2" - regenerate-unicode-properties "^10.0.1" - regjsgen "^0.6.0" - regjsparser "^0.8.2" - unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.0.0" - -registry-auth-token@^4.0.0: - version "4.2.2" - resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.2.tgz#f02d49c3668884612ca031419491a13539e21fac" - integrity sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg== - dependencies: - rc "1.2.8" - -registry-url@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" - integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== - dependencies: - rc "^1.2.8" - -regjsgen@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.6.0.tgz#83414c5354afd7d6627b16af5f10f41c4e71808d" - integrity sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA== - -regjsparser@^0.8.2: - version "0.8.4" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.8.4.tgz#8a14285ffcc5de78c5b95d62bbf413b6bc132d5f" - integrity sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA== - dependencies: - jsesc "~0.5.0" - -rehype-katex@5: - version "5.0.0" - resolved "https://registry.yarnpkg.com/rehype-katex/-/rehype-katex-5.0.0.tgz#b556f24fde918f28ba1cb642ea71c7e82f3373d7" - integrity sha512-ksSuEKCql/IiIadOHiKRMjypva9BLhuwQNascMqaoGLDVd0k2NlE2wMvgZ3rpItzRKCd6vs8s7MFbb8pcR0AEg== - dependencies: - "@types/katex" "^0.11.0" - hast-util-to-text "^2.0.0" - katex "^0.13.0" - rehype-parse "^7.0.0" - unified "^9.0.0" - unist-util-visit "^2.0.0" - -rehype-parse@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/rehype-parse/-/rehype-parse-6.0.2.tgz#aeb3fdd68085f9f796f1d3137ae2b85a98406964" - integrity sha512-0S3CpvpTAgGmnz8kiCyFLGuW5yA4OQhyNTm/nwPopZ7+PI11WnGl1TTWTGv/2hPEe/g2jRLlhVVSsoDH8waRug== - dependencies: - hast-util-from-parse5 "^5.0.0" - parse5 "^5.0.0" - xtend "^4.0.0" - -rehype-parse@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/rehype-parse/-/rehype-parse-7.0.1.tgz#58900f6702b56767814afc2a9efa2d42b1c90c57" - integrity sha512-fOiR9a9xH+Le19i4fGzIEowAbwG7idy2Jzs4mOrFWBSJ0sNUgy0ev871dwWnbOo371SjgjG4pwzrbgSVrKxecw== - dependencies: - hast-util-from-parse5 "^6.0.0" - parse5 "^6.0.0" - -relateurl@^0.2.7: - version "0.2.7" - resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" - integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== - -remark-admonitions@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/remark-admonitions/-/remark-admonitions-1.2.1.tgz#87caa1a442aa7b4c0cafa04798ed58a342307870" - integrity sha512-Ji6p68VDvD+H1oS95Fdx9Ar5WA2wcDA4kwrrhVU7fGctC6+d3uiMICu7w7/2Xld+lnU7/gi+432+rRbup5S8ow== - dependencies: - rehype-parse "^6.0.2" - unified "^8.4.2" - unist-util-visit "^2.0.1" - -remark-emoji@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/remark-emoji/-/remark-emoji-2.2.0.tgz#1c702090a1525da5b80e15a8f963ef2c8236cac7" - integrity sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w== - dependencies: - emoticon "^3.2.0" - node-emoji "^1.10.0" - unist-util-visit "^2.0.3" - -remark-footnotes@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/remark-footnotes/-/remark-footnotes-2.0.0.tgz#9001c4c2ffebba55695d2dd80ffb8b82f7e6303f" - integrity sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ== - -remark-math@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/remark-math/-/remark-math-3.0.1.tgz#85a02a15b15cad34b89a27244d4887b3a95185bb" - integrity sha512-epT77R/HK0x7NqrWHdSV75uNLwn8g9qTyMqCRCDujL0vj/6T6+yhdrR7mjELWtkse+Fw02kijAaBuVcHBor1+Q== - -remark-mdx@1.6.22: - version "1.6.22" - resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-1.6.22.tgz#06a8dab07dcfdd57f3373af7f86bd0e992108bbd" - integrity sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ== - dependencies: - "@babel/core" "7.12.9" - "@babel/helper-plugin-utils" "7.10.4" - "@babel/plugin-proposal-object-rest-spread" "7.12.1" - "@babel/plugin-syntax-jsx" "7.12.1" - "@mdx-js/util" "1.6.22" - is-alphabetical "1.0.4" - remark-parse "8.0.3" - unified "9.2.0" - -remark-parse@8.0.3: - version "8.0.3" - resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-8.0.3.tgz#9c62aa3b35b79a486454c690472906075f40c7e1" - integrity sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q== - dependencies: - ccount "^1.0.0" - collapse-white-space "^1.0.2" - is-alphabetical "^1.0.0" - is-decimal "^1.0.0" - is-whitespace-character "^1.0.0" - is-word-character "^1.0.0" - markdown-escapes "^1.0.0" - parse-entities "^2.0.0" - repeat-string "^1.5.4" - state-toggle "^1.0.0" - trim "0.0.1" - trim-trailing-lines "^1.0.0" - unherit "^1.0.4" - unist-util-remove-position "^2.0.0" - vfile-location "^3.0.0" - xtend "^4.0.1" - -remark-squeeze-paragraphs@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz#76eb0e085295131c84748c8e43810159c5653ead" - integrity sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw== - dependencies: - mdast-squeeze-paragraphs "^4.0.0" - -renderkid@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" - integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== - dependencies: - css-select "^4.1.3" - dom-converter "^0.2.0" - htmlparser2 "^6.1.0" - lodash "^4.17.21" - strip-ansi "^6.0.1" - -repeat-string@^1.0.0, repeat-string@^1.5.4, repeat-string@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== - -request-promise-core@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" - integrity sha512-paa/JFJUwUCx5ksokBlaGIXAvIDB+izsRU6FpHrlezFU2fj8555sKN4r+wPyql5d5Bp1ya/vrUPfVqM51v2H0g== - dependencies: - lodash "^4.13.1" - -request-promise-native@1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" - integrity sha512-Y75hrP+fdfWTg8R9rGNFmLi2JsZ3LlmHa+HcljiXY88NU86TaChwfkhsPN+pdojFluO2Qr0Jb+lV/aCkYpeAyw== - dependencies: - request-promise-core "1.1.1" - stealthy-require "^1.1.0" - tough-cookie ">=2.3.3" - -request@2.88.0: - version "2.88.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" - integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== - dependencies: - aws-sign2 "~0.7.0" - aws4 "^1.8.0" - caseless "~0.12.0" - combined-stream "~1.0.6" - extend "~3.0.2" - forever-agent "~0.6.1" - form-data "~2.3.2" - har-validator "~5.1.0" - http-signature "~1.2.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.19" - oauth-sign "~0.9.0" - performance-now "^2.1.0" - qs "~6.5.2" - safe-buffer "^5.1.2" - tough-cookie "~2.4.3" - tunnel-agent "^0.6.0" - uuid "^3.3.2" - -request@^2.88.0, request@^2.88.2: - version "2.88.2" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" - integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== - dependencies: - aws-sign2 "~0.7.0" - aws4 "^1.8.0" - caseless "~0.12.0" - combined-stream "~1.0.6" - extend "~3.0.2" - forever-agent "~0.6.1" - form-data "~2.3.2" - har-validator "~5.1.3" - http-signature "~1.2.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.19" - oauth-sign "~0.9.0" - performance-now "^2.1.0" - qs "~6.5.2" - safe-buffer "^5.1.2" - tough-cookie "~2.5.0" - tunnel-agent "^0.6.0" - uuid "^3.3.2" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - -require-from-string@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" - integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== - -"require-like@>= 0.1.1": - version "0.1.2" - resolved "https://registry.yarnpkg.com/require-like/-/require-like-0.1.2.tgz#ad6f30c13becd797010c468afa775c0c0a6b47fa" - integrity sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A== - -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== - -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve-global@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/resolve-global/-/resolve-global-1.0.0.tgz#a2a79df4af2ca3f49bf77ef9ddacd322dad19255" - integrity sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw== - dependencies: - global-dirs "^0.1.1" - -resolve-pathname@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd" - integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng== - -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.0, resolve@^1.3.2: - version "1.22.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== - dependencies: - is-core-module "^2.9.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -responselike@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" - integrity sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ== - dependencies: - lowercase-keys "^1.0.0" - -restore-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" - integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== - dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" - -retry-request@^4.0.0: - version "4.2.2" - resolved "https://registry.yarnpkg.com/retry-request/-/retry-request-4.2.2.tgz#b7d82210b6d2651ed249ba3497f07ea602f1a903" - integrity sha512-xA93uxUD/rogV7BV59agW/JHPGXeREMWiZc9jhcwY4YdZ7QOtC7qbomYg0n4wyk2lJhggjvKvhNX8wln/Aldhg== - dependencies: - debug "^4.1.1" - extend "^3.0.2" - -retry@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" - integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== - -retry@^0.13.1: - version "0.13.1" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" - integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== - -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== - -rimraf@^2.6.3: - version "2.7.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== - dependencies: - glob "^7.1.3" - -rimraf@^3.0.0, rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -rpc-websockets@^7.4.2, rpc-websockets@^7.5.0: - version "7.5.0" - resolved "https://registry.yarnpkg.com/rpc-websockets/-/rpc-websockets-7.5.0.tgz#bbeb87572e66703ff151e50af1658f98098e2748" - integrity sha512-9tIRi1uZGy7YmDjErf1Ax3wtqdSSLIlnmL5OtOzgd5eqPKbsPpwDP5whUDO2LQay3Xp0CcHlcNSGzacNRluBaQ== - dependencies: - "@babel/runtime" "^7.17.2" - eventemitter3 "^4.0.7" - uuid "^8.3.2" - ws "^8.5.0" - optionalDependencies: - bufferutil "^4.0.1" - utf-8-validate "^5.0.2" - -rtl-detect@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/rtl-detect/-/rtl-detect-1.0.4.tgz#40ae0ea7302a150b96bc75af7d749607392ecac6" - integrity sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ== - -rtlcss@^3.5.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/rtlcss/-/rtlcss-3.5.0.tgz#c9eb91269827a102bac7ae3115dd5d049de636c3" - integrity sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A== - dependencies: - find-up "^5.0.0" - picocolors "^1.0.0" - postcss "^8.3.11" - strip-json-comments "^3.1.1" - -run-async@^2.4.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" - integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== - -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -rxjs@^6.6.0: - version "6.6.7" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" - integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== - dependencies: - tslib "^1.9.0" - -rxjs@^7.1.0, rxjs@^7.5.4, rxjs@^7.5.5: - version "7.5.6" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc" - integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw== - dependencies: - tslib "^2.1.0" - -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@^5.2.1, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-regex@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-2.1.1.tgz#f7128f00d056e2fe5c11e81a1324dd974aadced2" - integrity sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A== - dependencies: - regexp-tree "~0.1.1" - -safe-stable-stringify@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz#ab67cbe1fe7d40603ca641c5e765cb942d04fc73" - integrity sha512-kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg== - -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sax@^1.2.4, sax@~1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== - -scheduler@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" - integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== - dependencies: - loose-envify "^1.1.0" - object-assign "^4.1.1" - -schema-utils@2.7.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" - integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== - dependencies: - "@types/json-schema" "^7.0.4" - ajv "^6.12.2" - ajv-keywords "^3.4.1" - -schema-utils@^2.6.5: - version "2.7.1" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" - integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== - dependencies: - "@types/json-schema" "^7.0.5" - ajv "^6.12.4" - ajv-keywords "^3.5.2" - -schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" - integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== - dependencies: - "@types/json-schema" "^7.0.8" - ajv "^6.12.5" - ajv-keywords "^3.5.2" - -schema-utils@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.0.0.tgz#60331e9e3ae78ec5d16353c467c34b3a0a1d3df7" - integrity sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg== - dependencies: - "@types/json-schema" "^7.0.9" - ajv "^8.8.0" - ajv-formats "^2.1.1" - ajv-keywords "^5.0.0" - -secp256k1@^4.0.2: - version "4.0.3" - resolved "https://registry.yarnpkg.com/secp256k1/-/secp256k1-4.0.3.tgz#c4559ecd1b8d3c1827ed2d1b94190d69ce267303" - integrity sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA== - dependencies: - elliptic "^6.5.4" - node-addon-api "^2.0.0" - node-gyp-build "^4.2.0" - -section-matter@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/section-matter/-/section-matter-1.0.0.tgz#e9041953506780ec01d59f292a19c7b850b84167" - integrity sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA== - dependencies: - extend-shallow "^2.0.1" - kind-of "^6.0.0" - -select-hose@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" - integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== - -selfsigned@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.0.1.tgz#8b2df7fa56bf014d19b6007655fff209c0ef0a56" - integrity sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ== - dependencies: - node-forge "^1" - -semver-diff@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" - integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== - dependencies: - semver "^6.3.0" - -"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.6.0, semver@^5.7.1: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" - integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== - -semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.1.1, semver@^7.1.3, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7: - version "7.3.7" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" - integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== - dependencies: - lru-cache "^6.0.0" - -send@0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" - 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" - -serialize-javascript@6.0.0, serialize-javascript@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" - integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== - dependencies: - randombytes "^2.1.0" - -serve-handler@^6.1.3: - version "6.1.3" - resolved "https://registry.yarnpkg.com/serve-handler/-/serve-handler-6.1.3.tgz#1bf8c5ae138712af55c758477533b9117f6435e8" - integrity sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w== - dependencies: - bytes "3.0.0" - content-disposition "0.5.2" - fast-url-parser "1.1.3" - mime-types "2.1.18" - minimatch "3.0.4" - path-is-inside "1.0.2" - path-to-regexp "2.2.1" - range-parser "1.2.0" - -serve-index@^1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" - integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== - dependencies: - accepts "~1.3.4" - batch "0.6.1" - debug "2.6.9" - escape-html "~1.0.3" - http-errors "~1.6.2" - mime-types "~2.1.17" - parseurl "~1.3.2" - -serve-static@1.15.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== - dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "0.18.0" - -set-blocking@^2.0.0, set-blocking@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== - -setimmediate@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== - -setprototypeof@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" - integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== - -setprototypeof@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" - integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== - -shallow-clone@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" - integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== - dependencies: - kind-of "^6.0.2" - -shallowequal@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" - integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== - -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== - dependencies: - shebang-regex "^1.0.0" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shell-quote@^1.6.1, shell-quote@^1.7.3: - version "1.7.3" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" - integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== - -shelljs@^0.8.5: - version "0.8.5" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" - integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== - dependencies: - glob "^7.0.0" - interpret "^1.0.0" - rechoir "^0.6.2" - -shiki@^0.10.1: - version "0.10.1" - resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.10.1.tgz#6f9a16205a823b56c072d0f1a0bcd0f2646bef14" - integrity sha512-VsY7QJVzU51j5o1+DguUd+6vmCmZ5v/6gYu4vyYAhzjuNQU6P/vmSy4uQaOhvje031qQMiW0d2BwgMH52vqMng== - dependencies: - jsonc-parser "^3.0.0" - vscode-oniguruma "^1.6.1" - vscode-textmate "5.2.0" - -shx@^0.3.4: - version "0.3.4" - resolved "https://registry.yarnpkg.com/shx/-/shx-0.3.4.tgz#74289230b4b663979167f94e1935901406e40f02" - integrity sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g== - dependencies: - minimist "^1.2.3" - shelljs "^0.8.5" - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - -signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -simple-swizzle@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" - integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== - dependencies: - is-arrayish "^0.3.1" - -sirv@^1.0.7: - version "1.0.19" - resolved "https://registry.yarnpkg.com/sirv/-/sirv-1.0.19.tgz#1d73979b38c7fe91fcba49c85280daa9c2363b49" - integrity sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ== - dependencies: - "@polka/url" "^1.0.0-next.20" - mrmime "^1.0.0" - totalist "^1.0.0" - -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== - -sitemap@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/sitemap/-/sitemap-7.1.1.tgz#eeed9ad6d95499161a3eadc60f8c6dce4bea2bef" - integrity sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg== - dependencies: - "@types/node" "^17.0.5" - "@types/sax" "^1.2.1" - arg "^5.0.0" - sax "^1.2.4" - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -slash@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" - integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== - -slice-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" - integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" - -slide@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" - integrity sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw== - -smart-buffer@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" - integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== - -snake-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" - integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== - dependencies: - dot-case "^3.0.4" - tslib "^2.0.3" - -sockjs@^0.3.24: - version "0.3.24" - resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" - integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== - dependencies: - faye-websocket "^0.11.3" - uuid "^8.3.2" - websocket-driver "^0.7.4" - -socks-proxy-agent@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz#032fb583048a29ebffec2e6a73fca0761f48177e" - integrity sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ== - dependencies: - agent-base "^6.0.2" - debug "4" - socks "^2.3.3" - -socks-proxy-agent@^6.0.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz#2687a31f9d7185e38d530bef1944fe1f1496d6ce" - integrity sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ== - dependencies: - agent-base "^6.0.2" - debug "^4.3.3" - socks "^2.6.2" - -socks@^2.3.3, socks@^2.6.2: - version "2.7.0" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.0.tgz#f9225acdb841e874dca25f870e9130990f3913d0" - integrity sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA== - dependencies: - ip "^2.0.0" - smart-buffer "^4.2.0" - -sort-css-media-queries@2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/sort-css-media-queries/-/sort-css-media-queries-2.0.4.tgz#b2badfa519cb4a938acbc6d3aaa913d4949dc908" - integrity sha512-PAIsEK/XupCQwitjv7XxoMvYhT7EAfyzI3hsy/MyDgTvc+Ft55ctdkctJLOy6cQejaIC+zjpUL4djFVm2ivOOw== - -sort-keys@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" - integrity sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg== - dependencies: - is-plain-obj "^1.0.0" - -sort-keys@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-4.2.0.tgz#6b7638cee42c506fff8c1cecde7376d21315be18" - integrity sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg== - dependencies: - is-plain-obj "^2.0.0" - -source-map-js@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== - -source-map-support@^0.5.6, source-map-support@~0.5.20: - version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.5.0, source-map@^0.5.7: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== - -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -space-separated-tokens@^1.0.0: - version "1.1.5" - resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" - integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== - -spdx-correct@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" - integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.11" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz#50c0d8c40a14ec1bf449bae69a0ea4685a9d9f95" - integrity sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g== - -spdy-transport@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" - integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== - dependencies: - debug "^4.1.0" - detect-node "^2.0.4" - hpack.js "^2.1.6" - obuf "^1.1.2" - readable-stream "^3.0.6" - wbuf "^1.7.3" - -spdy@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" - integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== - dependencies: - debug "^4.1.0" - handle-thing "^2.0.0" - http-deceiver "^1.2.7" - select-hose "^2.0.0" - spdy-transport "^3.0.0" - -split-on-first@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" - integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== - -split2@^3.0.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" - integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== - dependencies: - readable-stream "^3.0.0" - -split@0.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" - integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== - dependencies: - through "2" - -split@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" - integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== - dependencies: - through "2" - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== - -sshpk@^1.7.0: - version "1.17.0" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" - integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== - dependencies: - asn1 "~0.2.3" - assert-plus "^1.0.0" - bcrypt-pbkdf "^1.0.0" - dashdash "^1.12.0" - ecc-jsbn "~0.1.1" - getpass "^0.1.1" - jsbn "~0.1.0" - safer-buffer "^2.0.2" - tweetnacl "~0.14.0" - -ssri@^8.0.0, ssri@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" - integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== - dependencies: - minipass "^3.1.1" - -stable@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" - integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== - -stack-trace@0.0.x: - version "0.0.10" - resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" - integrity sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg== - -start-server-and-test@^1.14.0: - version "1.14.0" - resolved "https://registry.yarnpkg.com/start-server-and-test/-/start-server-and-test-1.14.0.tgz#c57f04f73eac15dd51733b551d775b40837fdde3" - integrity sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw== - dependencies: - bluebird "3.7.2" - check-more-types "2.24.0" - debug "4.3.2" - execa "5.1.1" - lazy-ass "1.6.0" - ps-tree "1.2.0" - wait-on "6.0.0" - -state-toggle@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe" - integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ== - -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== - -"statuses@>= 1.4.0 < 2": - version "1.5.0" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== - -std-env@^3.0.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.1.1.tgz#1f19c4d3f6278c52efd08a94574a2a8d32b7d092" - integrity sha512-/c645XdExBypL01TpFKiG/3RAa/Qmu+zRi0MwAmrdEkwHNuN0ebo8ccAXBBDa5Z0QOJgBskUIbuCK91x0sCVEw== - -stealthy-require@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" - integrity sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g== - -stream-combiner@~0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" - integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== - dependencies: - duplexer "~0.1.1" - -stream-shift@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" - integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== - -strict-uri-encode@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" - integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== - -string-width@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw== - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - 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" - -string-width@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== - dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" - -string-width@^5.0.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" - integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== - dependencies: - eastasianwidth "^0.2.0" - emoji-regex "^9.2.2" - strip-ansi "^7.0.1" - -string.prototype.padend@^3.0.0: - version "3.1.3" - resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz#997a6de12c92c7cb34dc8a201a6c53d9bd88a5f1" - integrity sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - -string.prototype.trimend@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" - integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.19.5" - -string.prototype.trimstart@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" - integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.19.5" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -stringify-object@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" - integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== - dependencies: - get-own-enumerable-property-symbols "^3.0.0" - is-obj "^1.0.1" - is-regexp "^1.0.0" - -stringify-package@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/stringify-package/-/stringify-package-1.0.1.tgz#e5aa3643e7f74d0f28628b72f3dad5cecfc3ba85" - integrity sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg== - -strip-ansi@^3.0.0, strip-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== - dependencies: - ansi-regex "^2.0.0" - -strip-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow== - dependencies: - ansi-regex "^3.0.0" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" - integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== - dependencies: - ansi-regex "^6.0.1" - -strip-bom-string@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" - integrity sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g== - -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== - -strip-bom@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-indent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== - dependencies: - min-indent "^1.0.0" - -strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== - -strong-log-transformer@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz#0f5ed78d325e0421ac6f90f7f10e691d6ae3ae10" - integrity sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA== - dependencies: - duplexer "^0.1.1" - minimist "^1.2.0" - through "^2.3.4" - -style-to-object@0.3.0, style-to-object@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46" - integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA== - dependencies: - inline-style-parser "0.1.1" - -stylehacks@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.0.tgz#a40066490ca0caca04e96c6b02153ddc39913520" - integrity sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q== - dependencies: - browserslist "^4.16.6" - postcss-selector-parser "^6.0.4" - -stylis@4.0.13: - version "4.0.13" - resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.13.tgz#f5db332e376d13cc84ecfe5dace9a2a51d954c91" - integrity sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag== - -superstruct@^0.14.2: - version "0.14.2" - resolved "https://registry.yarnpkg.com/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" - integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ== - -superstruct@^0.15.2: - version "0.15.5" - resolved "https://registry.yarnpkg.com/superstruct/-/superstruct-0.15.5.tgz#0f0a8d3ce31313f0d84c6096cd4fa1bfdedc9dab" - integrity sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ== - -superstruct@^0.8.3: - version "0.8.4" - resolved "https://registry.yarnpkg.com/superstruct/-/superstruct-0.8.4.tgz#478a19649f6b02c6319c02044db6a1f5863c391f" - integrity sha512-48Ors8IVWZm/tMr8r0Si6+mJiB7mkD7jqvIzktjJ4+EnP5tBp0qOpiM1J8sCUorKx+TXWrfb3i1UcjdD1YK/wA== - dependencies: - kind-of "^6.0.2" - tiny-invariant "^1.0.6" - -supports-color@8.1.1, supports-color@^8.0.0, supports-color@^8.1.1: - version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.0.0, supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-hyperlinks@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" - integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== - dependencies: - has-flag "^4.0.0" - supports-color "^7.0.0" - -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -svg-parser@^2.0.2, svg-parser@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" - integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== - -svgo@^1.2.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" - integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== - dependencies: - chalk "^2.4.1" - coa "^2.0.2" - css-select "^2.0.0" - css-select-base-adapter "^0.1.1" - css-tree "1.0.0-alpha.37" - csso "^4.0.2" - js-yaml "^3.13.1" - mkdirp "~0.5.1" - object.values "^1.1.0" - sax "~1.2.4" - stable "^0.1.8" - unquote "~1.1.1" - util.promisify "~1.0.0" - -svgo@^2.7.0, svgo@^2.8.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" - 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" - -table@^6.0.9: - version "6.8.0" - resolved "https://registry.yarnpkg.com/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca" - integrity sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA== - 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" - -tapable@^1.0.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" - integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== - -tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" - integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== - -tar-fs@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" - 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" - -tar-stream@^2.1.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" - 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" - -tar@^4.4.12: - version "4.4.19" - resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.19.tgz#2e4d7263df26f2b914dee10c825ab132123742f3" - integrity sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA== - dependencies: - chownr "^1.1.4" - fs-minipass "^1.2.7" - minipass "^2.9.0" - minizlib "^1.3.3" - mkdirp "^0.5.5" - safe-buffer "^5.2.1" - yallist "^3.1.1" - -tar@^6.0.2, tar@^6.1.0, tar@^6.1.11: - version "6.1.11" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" - integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== - dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^3.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" - -temp-dir@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" - integrity sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ== - -temp-write@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/temp-write/-/temp-write-4.0.0.tgz#cd2e0825fc826ae72d201dc26eef3bf7e6fc9320" - integrity sha512-HIeWmj77uOOHb0QX7siN3OtwV3CTntquin6TNVg6SHOqCP3hYKmox90eeFOGaY1MqJ9WYDDjkyZrW6qS5AWpbw== - dependencies: - graceful-fs "^4.1.15" - is-stream "^2.0.0" - make-dir "^3.0.0" - temp-dir "^1.0.0" - uuid "^3.3.2" - -terser-webpack-plugin@^5.1.3, terser-webpack-plugin@^5.3.1: - version "5.3.3" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.3.tgz#8033db876dd5875487213e87c627bca323e5ed90" - integrity sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ== - dependencies: - "@jridgewell/trace-mapping" "^0.3.7" - jest-worker "^27.4.5" - schema-utils "^3.1.1" - serialize-javascript "^6.0.0" - terser "^5.7.2" - -terser@^5.10.0, terser@^5.7.2: - version "5.14.2" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.14.2.tgz#9ac9f22b06994d736174f4091aa368db896f1c10" - integrity sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA== - dependencies: - "@jridgewell/source-map" "^0.3.2" - acorn "^8.5.0" - commander "^2.20.0" - source-map-support "~0.5.20" - -text-encoding-utf-8@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13" - integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg== - -text-extensions@^1.0.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" - integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== - -text-hex@1.0.x: - version "1.0.0" - resolved "https://registry.yarnpkg.com/text-hex/-/text-hex-1.0.0.tgz#69dc9c1b17446ee79a92bf5b884bb4b9127506f5" - integrity sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg== - -text-table@^0.2.0, text-table@~0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== - -thenify-all@^1.0.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" - integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== - dependencies: - thenify ">= 3.1.0 < 4" - -"thenify@>= 3.1.0 < 4": - version "3.3.1" - resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" - integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== - dependencies: - any-promise "^1.0.0" - -through2@^2.0.0: - version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - -through2@^4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" - integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== - dependencies: - readable-stream "3" - -through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@~2.3, through@~2.3.1: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - -thunky@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" - integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== - -tiny-invariant@^1.0.2, tiny-invariant@^1.0.6, tiny-invariant@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.2.0.tgz#a1141f86b672a9148c72e978a19a73b9b94a15a9" - integrity sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg== - -tiny-relative-date@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz#fa08aad501ed730f31cc043181d995c39a935e07" - integrity sha512-MOQHpzllWxDCHHaDno30hhLfbouoYlOI8YlMNtvKe1zXbjEVhbcEovQxvZrPvtiYW630GQDoMMarCnjfyfHA+A== - -tiny-warning@^1.0.0, tiny-warning@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" - integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== - -tmp@^0.0.33: - version "0.0.33" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== - dependencies: - os-tmpdir "~1.0.2" - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - -to-readable-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" - integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -toidentifier@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" - integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== - -toml@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" - integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== - -totalist@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/totalist/-/totalist-1.1.0.tgz#a4d65a3e546517701e3e5c37a47a70ac97fe56df" - integrity sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g== - -tough-cookie@>=2.3.3: - version "4.0.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" - integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== - dependencies: - psl "^1.1.33" - punycode "^2.1.1" - universalify "^0.1.2" - -tough-cookie@~2.4.3: - version "2.4.3" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" - integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== - dependencies: - psl "^1.1.24" - punycode "^1.4.1" - -tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - dependencies: - psl "^1.1.28" - punycode "^2.1.1" - -tr46@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" - integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== - dependencies: - punycode "^2.1.1" - -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - -traverse-chain@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/traverse-chain/-/traverse-chain-0.1.0.tgz#61dbc2d53b69ff6091a12a168fd7d433107e40f1" - integrity sha512-up6Yvai4PYKhpNp5PkYtx50m3KbwQrqDwbuZP/ItyL64YEWHAvH6Md83LFLV/GRSk/BoUVwwgUzX6SOQSbsfAg== - -treeverse@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/treeverse/-/treeverse-1.0.4.tgz#a6b0ebf98a1bca6846ddc7ecbc900df08cb9cd5f" - integrity sha512-whw60l7r+8ZU8Tu/Uc2yxtc4ZTZbR/PF3u1IPNKGQ6p8EICLb3Z2lAgoqw9bqYd8IkgnsaOcLzYHFckjqNsf0g== - -trim-newlines@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" - integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== - -trim-trailing-lines@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz#bd4abbec7cc880462f10b2c8b5ce1d8d1ec7c2c0" - integrity sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ== - -trim@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" - integrity sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ== - -triple-beam@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" - integrity sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw== - -trough@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" - integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== - -ts-mocha@^9.0.2: - version "9.0.2" - resolved "https://registry.yarnpkg.com/ts-mocha/-/ts-mocha-9.0.2.tgz#c1ef0248874d04a0f26dd9bd8d88e617a8d82ab1" - integrity sha512-WyQjvnzwrrubl0JT7EC1yWmNpcsU3fOuBFfdps30zbmFBgKniSaSOyZMZx+Wq7kytUs5CY+pEbSYEbGfIKnXTw== - dependencies: - ts-node "7.0.1" - optionalDependencies: - tsconfig-paths "^3.5.0" - -ts-morph@^13.0.3: - version "13.0.3" - resolved "https://registry.yarnpkg.com/ts-morph/-/ts-morph-13.0.3.tgz#c0c51d1273ae2edb46d76f65161eb9d763444c1d" - integrity sha512-pSOfUMx8Ld/WUreoSzvMFQG5i9uEiWIsBYjpU9+TTASOeUa89j5HykomeqVULm1oqWtBdleI3KEFRLrlA3zGIw== - dependencies: - "@ts-morph/common" "~0.12.3" - code-block-writer "^11.0.0" - -ts-node@7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-7.0.1.tgz#9562dc2d1e6d248d24bc55f773e3f614337d9baf" - integrity sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw== - dependencies: - arrify "^1.0.0" - buffer-from "^1.1.0" - diff "^3.1.0" - make-error "^1.1.1" - minimist "^1.2.0" - mkdirp "^0.5.1" - source-map-support "^0.5.6" - yn "^2.0.0" - -ts-node@^10.4.0, ts-node@^10.7.0, ts-node@^10.8.0: - version "10.9.1" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" - integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== - dependencies: - "@cspotcode/source-map-support" "^0.8.0" - "@tsconfig/node10" "^1.0.7" - "@tsconfig/node12" "^1.0.7" - "@tsconfig/node14" "^1.0.0" - "@tsconfig/node16" "^1.0.2" - acorn "^8.4.1" - acorn-walk "^8.1.1" - arg "^4.1.0" - create-require "^1.1.0" - diff "^4.0.1" - make-error "^1.1.1" - v8-compile-cache-lib "^3.0.1" - yn "3.1.1" - -tsconfig-paths@^3.14.1, tsconfig-paths@^3.5.0: - version "3.14.1" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" - integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== - dependencies: - "@types/json5" "^0.0.29" - json5 "^1.0.1" - minimist "^1.2.6" - strip-bom "^3.0.0" - -tslib@2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" - integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== - -tslib@^1.8.1, tslib@^1.9.0: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1, tslib@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" - integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== - -tsutils@^3.21.0: - version "3.21.0" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" - integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== - dependencies: - tslib "^1.8.1" - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== - dependencies: - safe-buffer "^5.0.1" - -tweetnacl@^0.14.3, tweetnacl@~0.14.0: - version "0.14.5" - resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== - -tweetnacl@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596" - integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw== - -type-check@^0.4.0, type-check@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - -type-detect@^4.0.0, type-detect@^4.0.5: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.18.0: - version "0.18.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" - integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== - -type-fest@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" - integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -type-fest@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" - integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ== - -type-fest@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.4.1.tgz#8bdf77743385d8a4f13ba95f610f5ccd68c728f8" - integrity sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw== - -type-fest@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== - -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -type-fest@^2.5.0: - version "2.17.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.17.0.tgz#c677030ce61e5be0c90c077d52571eb73c506ea9" - integrity sha512-U+g3/JVXnOki1kLSc+xZGPRll3Ah9u2VIG6Sn9iH9YX6UkPERmt6O/0fIyTgsd2/whV0+gAaHAg8fz6sG1QzMA== - -type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== - dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" - -typedarray-to-buffer@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" - integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== - dependencies: - is-typedarray "^1.0.0" - -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== - -typedoc@^0.23.3, typedoc@^0.23.8: - version "0.23.9" - resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.23.9.tgz#fd94451abd039513ab4fda58208fa0e5631e080b" - integrity sha512-rvWci2KHwteVUufZjjtIy/4PIHiE66t4VW4Ob6pezV//GHZ9Px0CHE5iq032GZzKONJWnNb+EJsrQv32INRvxA== - dependencies: - lunr "^2.3.9" - marked "^4.0.16" - minimatch "^5.1.0" - shiki "^0.10.1" - -typescript@^4.2.4, typescript@^4.3.2, typescript@^4.6.3, typescript@^4.7, typescript@^4.7.3: - version "4.7.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235" - integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ== - -ua-parser-js@^0.7.30: - version "0.7.31" - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.31.tgz#649a656b191dffab4f21d5e053e27ca17cbff5c6" - integrity sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ== - -uglify-js@^3.1.4: - version "3.16.3" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.16.3.tgz#94c7a63337ee31227a18d03b8a3041c210fd1f1d" - integrity sha512-uVbFqx9vvLhQg0iBaau9Z75AxWJ8tqM9AV890dIZCLApF4rTcyHwmAvLeEdYRs+BzYWu8Iw81F79ah0EfTXbaw== - -uid-number@0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" - integrity sha512-c461FXIljswCuscZn67xq9PpszkPT6RjheWFQTgCyabJrTUozElanb0YEqv2UGgk247YpcJkFBuSGNvBlpXM9w== - -umask@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/umask/-/umask-1.1.0.tgz#f29cebf01df517912bb58ff9c4e50fde8e33320d" - integrity sha512-lE/rxOhmiScJu9L6RTNVgB/zZbF+vGC0/p6D3xnkAePI2o0sMyFG966iR5Ki50OI/0mNi2yaRnxfLsPmEZF/JA== - -unbox-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" - 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" - -unherit@^1.0.4: - version "1.1.3" - resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22" - integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ== - dependencies: - inherits "^2.0.0" - xtend "^4.0.0" - -unicode-canonical-property-names-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" - integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== - -unicode-match-property-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" - integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== - dependencies: - unicode-canonical-property-names-ecmascript "^2.0.0" - unicode-property-aliases-ecmascript "^2.0.0" - -unicode-match-property-value-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714" - integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== - -unicode-property-aliases-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8" - integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ== - -unified@9.2.0: - version "9.2.0" - resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.0.tgz#67a62c627c40589edebbf60f53edfd4d822027f8" - integrity sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg== - 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" - -unified@^8.4.2: - version "8.4.2" - resolved "https://registry.yarnpkg.com/unified/-/unified-8.4.2.tgz#13ad58b4a437faa2751a4a4c6a16f680c500fff1" - integrity sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA== - dependencies: - bail "^1.0.0" - extend "^3.0.0" - is-plain-obj "^2.0.0" - trough "^1.0.0" - vfile "^4.0.0" - -unified@^9.0.0: - version "9.2.2" - resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.2.tgz#67649a1abfc3ab85d2969502902775eb03146975" - 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" - -unique-filename@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" - integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== - dependencies: - unique-slug "^2.0.0" - -unique-slug@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" - integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== - dependencies: - imurmurhash "^0.1.4" - -unique-string@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" - integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== - dependencies: - crypto-random-string "^2.0.0" - -unist-builder@2.0.3, unist-builder@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-2.0.3.tgz#77648711b5d86af0942f334397a33c5e91516436" - integrity sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw== - -unist-util-find-after@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/unist-util-find-after/-/unist-util-find-after-3.0.0.tgz#5c65fcebf64d4f8f496db46fa8fd0fbf354b43e6" - integrity sha512-ojlBqfsBftYXExNu3+hHLfJQ/X1jYY/9vdm4yZWjIbf0VuWF6CRufci1ZyoD/wV2TYMKxXUoNuoqwy+CkgzAiQ== - dependencies: - unist-util-is "^4.0.0" - -unist-util-generated@^1.0.0: - version "1.1.6" - resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.6.tgz#5ab51f689e2992a472beb1b35f2ce7ff2f324d4b" - integrity sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg== - -unist-util-is@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" - integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== - -unist-util-position@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.1.0.tgz#1c42ee6301f8d52f47d14f62bbdb796571fa2d47" - integrity sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA== - -unist-util-remove-position@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz#5d19ca79fdba712301999b2b73553ca8f3b352cc" - integrity sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA== - dependencies: - unist-util-visit "^2.0.0" - -unist-util-remove@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unist-util-remove/-/unist-util-remove-2.1.0.tgz#b0b4738aa7ee445c402fda9328d604a02d010588" - integrity sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q== - dependencies: - unist-util-is "^4.0.0" - -unist-util-stringify-position@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da" - integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g== - dependencies: - "@types/unist" "^2.0.2" - -unist-util-visit-parents@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6" - integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== - dependencies: - "@types/unist" "^2.0.0" - unist-util-is "^4.0.0" - -unist-util-visit@2.0.3, unist-util-visit@^2.0.0, unist-util-visit@^2.0.1, unist-util-visit@^2.0.2, unist-util-visit@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c" - 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" - -universal-user-agent@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee" - integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w== - -universalify@^0.1.0, universalify@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== - -universalify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" - integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== - -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== - -unquote@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" - integrity sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg== - -upath@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" - integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== - -update-browserslist-db@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz#be06a5eedd62f107b7c19eb5bcefb194411abf38" - integrity sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - -update-notifier@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz#4ab0d7c7f36a231dd7316cf7729313f0214d9ad9" - integrity sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw== - dependencies: - boxen "^5.0.0" - chalk "^4.1.0" - configstore "^5.0.1" - has-yarn "^2.1.0" - import-lazy "^2.1.0" - is-ci "^2.0.0" - is-installed-globally "^0.4.0" - is-npm "^5.0.0" - is-yarn-global "^0.3.0" - latest-version "^5.1.0" - pupa "^2.1.1" - semver "^7.3.4" - semver-diff "^3.1.1" - xdg-basedir "^4.0.0" - -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -url-loader@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2" - integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== - dependencies: - loader-utils "^2.0.0" - mime-types "^2.1.27" - schema-utils "^3.0.0" - -url-parse-lax@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" - integrity sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ== - dependencies: - prepend-http "^2.0.0" - -use-composed-ref@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/use-composed-ref/-/use-composed-ref-1.3.0.tgz#3d8104db34b7b264030a9d916c5e94fbe280dbda" - integrity sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ== - -use-isomorphic-layout-effect@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz#497cefb13d863d687b08477d9e5a164ad8c1a6fb" - integrity sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA== - -use-latest@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/use-latest/-/use-latest-1.2.1.tgz#d13dfb4b08c28e3e33991546a2cee53e14038cf2" - integrity sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw== - dependencies: - use-isomorphic-layout-effect "^1.1.1" - -utf-8-validate@^5.0.2: - version "5.0.9" - resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.9.tgz#ba16a822fbeedff1a58918f2a6a6b36387493ea3" - integrity sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q== - dependencies: - node-gyp-build "^4.3.0" - -util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - -util-promisify@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/util-promisify/-/util-promisify-2.1.0.tgz#3c2236476c4d32c5ff3c47002add7c13b9a82a53" - integrity sha512-K+5eQPYs14b3+E+hmE2J6gCZ4JmMl9DbYS6BeP2CHq6WMuNxErxf5B/n0fz85L8zUuoO6rIzNNmIQDu/j+1OcA== - dependencies: - object.getownpropertydescriptors "^2.0.3" - -util.promisify@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" - integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.2" - has-symbols "^1.0.1" - object.getownpropertydescriptors "^2.1.0" - -util@^0.12.0: - version "0.12.4" - resolved "https://registry.yarnpkg.com/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" - integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== - dependencies: - inherits "^2.0.3" - is-arguments "^1.0.4" - is-generator-function "^1.0.7" - is-typed-array "^1.1.3" - safe-buffer "^5.1.2" - which-typed-array "^1.1.2" - -utila@~0.4: - version "0.4.0" - resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" - integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== - -utility-types@^3.10.0: - version "3.10.0" - resolved "https://registry.yarnpkg.com/utility-types/-/utility-types-3.10.0.tgz#ea4148f9a741015f05ed74fd615e1d20e6bed82b" - integrity sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg== - -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== - -uuid@^3.3.2: - version "3.4.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" - integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== - -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - -v8-compile-cache-lib@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" - integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== - -v8-compile-cache@^2.0.3: - version "2.3.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" - integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== - -validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -validate-npm-package-name@^3.0.0, validate-npm-package-name@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" - integrity sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw== - dependencies: - builtins "^1.0.3" - -value-equal@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" - integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw== - -vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== - -verror@1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== - dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" - -vfile-location@^3.0.0, vfile-location@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.2.0.tgz#d8e41fbcbd406063669ebf6c33d56ae8721d0f3c" - integrity sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA== - -vfile-message@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a" - integrity sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ== - dependencies: - "@types/unist" "^2.0.0" - unist-util-stringify-position "^2.0.0" - -vfile@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.1.tgz#03f1dce28fc625c625bc6514350fbdb00fa9e624" - 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" - -vscode-languageserver-textdocument@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.5.tgz#838769940ece626176ec5d5a2aa2d0aa69f5095c" - integrity sha512-1ah7zyQjKBudnMiHbZmxz5bYNM9KKZYz+5VQLj+yr8l+9w3g+WAhCkUkWbhMEdC5u0ub4Ndiye/fDyS8ghIKQg== - -vscode-oniguruma@^1.6.1: - version "1.6.2" - resolved "https://registry.yarnpkg.com/vscode-oniguruma/-/vscode-oniguruma-1.6.2.tgz#aeb9771a2f1dbfc9083c8a7fdd9cccaa3f386607" - integrity sha512-KH8+KKov5eS/9WhofZR8M8dMHWN2gTxjMsG4jd04YhpbPR91fUj7rYQ2/XjeHCJWbg7X++ApRIU9NUwM2vTvLA== - -vscode-textmate@5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-5.2.0.tgz#01f01760a391e8222fe4f33fbccbd1ad71aed74e" - integrity sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ== - -vscode-uri@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.3.tgz#a95c1ce2e6f41b7549f86279d19f47951e4f4d84" - integrity sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA== - -wait-on@6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/wait-on/-/wait-on-6.0.0.tgz#7e9bf8e3d7fe2daecbb7a570ac8ca41e9311c7e7" - integrity sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw== - dependencies: - axios "^0.21.1" - joi "^17.4.0" - lodash "^4.17.21" - minimist "^1.2.5" - rxjs "^7.1.0" - -wait-on@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/wait-on/-/wait-on-6.0.1.tgz#16bbc4d1e4ebdd41c5b4e63a2e16dbd1f4e5601e" - integrity sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw== - dependencies: - axios "^0.25.0" - joi "^17.6.0" - lodash "^4.17.21" - minimist "^1.2.5" - rxjs "^7.5.4" - -walk-up-path@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-1.0.0.tgz#d4745e893dd5fd0dbb58dd0a4c6a33d9c9fec53e" - integrity sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg== - -watchpack@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" - integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== - dependencies: - glob-to-regexp "^0.4.1" - graceful-fs "^4.1.2" - -wbuf@^1.1.0, wbuf@^1.7.3: - version "1.7.3" - resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" - integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== - dependencies: - minimalistic-assert "^1.0.0" - -wcwidth@^1.0.0, wcwidth@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" - integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== - dependencies: - defaults "^1.0.3" - -web-namespaces@^1.0.0, web-namespaces@^1.1.2: - version "1.1.4" - resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.4.tgz#bc98a3de60dadd7faefc403d1076d529f5e030ec" - integrity sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw== - -web-streams-polyfill@^3.0.3: - version "3.2.1" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" - integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - -webidl-conversions@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" - integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== - -webidl-conversions@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" - integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== - -webpack-bundle-analyzer@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.5.0.tgz#1b0eea2947e73528754a6f9af3e91b2b6e0f79d5" - integrity sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ== - dependencies: - acorn "^8.0.4" - acorn-walk "^8.0.0" - chalk "^4.1.0" - commander "^7.2.0" - gzip-size "^6.0.0" - lodash "^4.17.20" - opener "^1.5.2" - sirv "^1.0.7" - ws "^7.3.1" - -webpack-dev-middleware@^5.3.1: - version "5.3.3" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f" - integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== - dependencies: - colorette "^2.0.10" - memfs "^3.4.3" - mime-types "^2.1.31" - range-parser "^1.2.1" - schema-utils "^4.0.0" - -webpack-dev-server@^4.7.4: - version "4.9.3" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.9.3.tgz#2360a5d6d532acb5410a668417ad549ee3b8a3c9" - integrity sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw== - dependencies: - "@types/bonjour" "^3.5.9" - "@types/connect-history-api-fallback" "^1.3.5" - "@types/express" "^4.17.13" - "@types/serve-index" "^1.9.1" - "@types/serve-static" "^1.13.10" - "@types/sockjs" "^0.3.33" - "@types/ws" "^8.5.1" - ansi-html-community "^0.0.8" - bonjour-service "^1.0.11" - chokidar "^3.5.3" - colorette "^2.0.10" - compression "^1.7.4" - connect-history-api-fallback "^2.0.0" - default-gateway "^6.0.3" - express "^4.17.3" - graceful-fs "^4.2.6" - html-entities "^2.3.2" - http-proxy-middleware "^2.0.3" - ipaddr.js "^2.0.1" - open "^8.0.9" - p-retry "^4.5.0" - rimraf "^3.0.2" - schema-utils "^4.0.0" - selfsigned "^2.0.1" - serve-index "^1.9.1" - sockjs "^0.3.24" - spdy "^4.0.2" - webpack-dev-middleware "^5.3.1" - ws "^8.4.2" - -webpack-merge@^5.8.0: - version "5.8.0" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61" - integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q== - dependencies: - clone-deep "^4.0.1" - wildcard "^2.0.0" - -webpack-sources@^3.2.2, webpack-sources@^3.2.3: - version "3.2.3" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" - integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== - -webpack@^5.70.0: - version "5.74.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.74.0.tgz#02a5dac19a17e0bb47093f2be67c695102a55980" - integrity sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA== - dependencies: - "@types/eslint-scope" "^3.7.3" - "@types/estree" "^0.0.51" - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/wasm-edit" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - acorn "^8.7.1" - acorn-import-assertions "^1.7.6" - browserslist "^4.14.5" - chrome-trace-event "^1.0.2" - enhanced-resolve "^5.10.0" - es-module-lexer "^0.9.0" - eslint-scope "5.1.1" - events "^3.2.0" - glob-to-regexp "^0.4.1" - graceful-fs "^4.2.9" - json-parse-even-better-errors "^2.3.1" - loader-runner "^4.2.0" - mime-types "^2.1.27" - neo-async "^2.6.2" - schema-utils "^3.1.0" - tapable "^2.1.1" - terser-webpack-plugin "^5.1.3" - watchpack "^2.4.0" - webpack-sources "^3.2.3" - -webpackbar@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/webpackbar/-/webpackbar-5.0.2.tgz#d3dd466211c73852741dfc842b7556dcbc2b0570" - integrity sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ== - dependencies: - chalk "^4.1.0" - consola "^2.15.3" - pretty-time "^1.1.0" - std-env "^3.0.1" - -websocket-driver@>=0.5.1, websocket-driver@^0.7.4: - version "0.7.4" - resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" - integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== - dependencies: - http-parser-js ">=0.5.1" - safe-buffer ">=5.1.0" - websocket-extensions ">=0.1.1" - -websocket-extensions@>=0.1.1: - version "0.1.4" - resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" - integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== - -whatwg-url-without-unicode@8.0.0-3: - version "8.0.0-3" - resolved "https://registry.yarnpkg.com/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz#ab6df4bf6caaa6c85a59f6e82c026151d4bb376b" - integrity sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig== - dependencies: - buffer "^5.4.3" - punycode "^2.1.1" - webidl-conversions "^5.0.0" - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - -whatwg-url@^8.4.0: - version "8.7.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" - integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== - dependencies: - lodash "^4.7.0" - tr46 "^2.1.0" - webidl-conversions "^6.1.0" - -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - 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" - -which-typed-array@^1.1.2: - version "1.1.8" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f" - integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - es-abstract "^1.20.0" - for-each "^0.3.3" - has-tostringtag "^1.0.0" - is-typed-array "^1.1.9" - -which@2.0.2, which@^2.0.1, which@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -which@^1.2.9, which@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -wide-align@^1.1.0, wide-align@^1.1.2: - version "1.1.5" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" - integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== - dependencies: - string-width "^1.0.2 || 2 || 3 || 4" - -widest-line@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" - integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== - dependencies: - string-width "^4.0.0" - -widest-line@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-4.0.1.tgz#a0fc673aaba1ea6f0a0d35b3c2795c9a9cc2ebf2" - integrity sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig== - dependencies: - string-width "^5.0.1" - -wildcard@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec" - integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== - -winston-transport@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.5.0.tgz#6e7b0dd04d393171ed5e4e4905db265f7ab384fa" - integrity sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q== - dependencies: - logform "^2.3.2" - readable-stream "^3.6.0" - triple-beam "^1.3.0" - -winston@^3.8.1: - version "3.8.1" - resolved "https://registry.yarnpkg.com/winston/-/winston-3.8.1.tgz#76f15b3478cde170b780234e0c4cf805c5a7fb57" - integrity sha512-r+6YAiCR4uI3N8eQNOg8k3P3PqwAm20cLKlzVD9E66Ch39+LZC+VH1UKf9JemQj2B3QoUHfKD7Poewn0Pr3Y1w== - dependencies: - "@dabh/diagnostics" "^2.0.2" - async "^3.2.3" - is-stream "^2.0.0" - logform "^2.4.0" - one-time "^1.0.0" - readable-stream "^3.4.0" - safe-stable-stringify "^2.3.1" - stack-trace "0.0.x" - triple-beam "^1.3.0" - winston-transport "^4.5.0" - -word-wrap@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wordwrap@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== - -workerpool@6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" - integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A== - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.0.1.tgz#2101e861777fec527d0ea90c57c6b03aac56a5b3" - integrity sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g== - dependencies: - ansi-styles "^6.1.0" - string-width "^5.0.1" - strip-ansi "^7.0.1" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== - -write-file-atomic@^2.4.2: - version "2.4.3" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" - integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== - dependencies: - graceful-fs "^4.1.11" - imurmurhash "^0.1.4" - signal-exit "^3.0.2" - -write-file-atomic@^3.0.0, write-file-atomic@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" - 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" - -write-json-file@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-3.2.0.tgz#65bbdc9ecd8a1458e15952770ccbadfcff5fe62a" - integrity sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ== - dependencies: - detect-indent "^5.0.0" - graceful-fs "^4.1.15" - make-dir "^2.1.0" - pify "^4.0.1" - sort-keys "^2.0.0" - write-file-atomic "^2.4.2" - -write-json-file@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-4.3.0.tgz#908493d6fd23225344af324016e4ca8f702dd12d" - integrity sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ== - dependencies: - detect-indent "^6.0.0" - graceful-fs "^4.1.15" - is-plain-obj "^2.0.0" - make-dir "^3.0.0" - sort-keys "^4.0.0" - write-file-atomic "^3.0.0" - -write-pkg@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-4.0.0.tgz#675cc04ef6c11faacbbc7771b24c0abbf2a20039" - integrity sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA== - dependencies: - sort-keys "^2.0.0" - type-fest "^0.4.1" - write-json-file "^3.2.0" - -ws@^7.0.0, ws@^7.3.1, ws@^7.4.5: - version "7.5.9" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" - integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== - -ws@^8.4.2, ws@^8.5.0: - version "8.8.1" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" - integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== - -xdg-basedir@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" - integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== - -xml-js@^1.6.11: - version "1.6.11" - resolved "https://registry.yarnpkg.com/xml-js/-/xml-js-1.6.11.tgz#927d2f6947f7f1c19a316dd8eea3614e8b18f8e9" - integrity sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g== - dependencies: - sax "^1.2.4" - -xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^3.0.0, yallist@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2: - version "1.10.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" - integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== - -yargs-parser@20.2.4: - version "20.2.4" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" - integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== - -yargs-parser@^20.2.2, yargs-parser@^20.2.3: - version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== - -yargs-parser@^21.0.0: - version "21.0.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35" - integrity sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg== - -yargs-unparser@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" - integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== - dependencies: - camelcase "^6.0.0" - decamelize "^4.0.0" - flat "^5.0.2" - is-plain-obj "^2.1.0" - -yargs@16.2.0, yargs@^16.2.0: - version "16.2.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" - integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.0" - y18n "^5.0.5" - yargs-parser "^20.2.2" - -yargs@^17.0.1, yargs@^17.5.1: - version "17.5.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" - integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.0.0" - -yarn@^1.22.17: - version "1.22.19" - resolved "https://registry.yarnpkg.com/yarn/-/yarn-1.22.19.tgz#4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447" - integrity sha512-/0V5q0WbslqnwP91tirOvldvYISzaqhClxzyUKXYxs07yUILIs5jx/k6CFe8bvKSkds5w+eiOqta39Wk3WxdcQ== - -yn@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" - integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== - -yn@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a" - integrity sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ== - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== - -zwitch@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz#d11d7381ffed16b742f6af7b3f223d5cd9fe9920" - integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==